/* Start of CMSMS style sheet '2xtm Layout: Global' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #71C9E4; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #71C9E4;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: transparent;
   color: #000000;
}

/*****************
basic layout 
*****************/
body {
   background-color: #000000;
   margin:1em; /* gives some air for the pagewrapper */
}

#footer {
   position: absolute;       /* keep footer below content and menu */
   bottom: 10px;
   left: 100px;
   color: #71C9E4;
   background-color: #000000; /* same bg color as in header */
   font-size: 85%;
}

#footer a:hover {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

#datetime {
position: absolute;
top: 8px;
right: 80px;
color: #71C9E4;
}
/* End of '2xtm Layout: Global' */

