/* Start of CMSMS style sheet 'APS - HomeLayout' */
/*****************
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: #105000; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #105000;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   color: #801010;
}

/*****************
basic layout 
*****************/
body {
  background-color : #212121;
  margin-top : 0px;
  margin-left: 0px;
  margin-right : 0px;
  margin-bottom: 0px;
}

.header {
  background-image : url(images/cms/bg-header.gif);
  height:80px;
}

#flowerpict {
  background-image : url(images/cms/random/aps-bg2.jpg);
  background-repeat: no-repeat;  
  width:510px;
}

.base {
  background-image : url(images/cms/bg-header.gif);
}

#cell1 {
  background-image: url(images/cms/but1-on.gif);
  background-repeat: no-repeat;
}
#cell2 {
  background-image: url(images/cms/but2-on.gif);
  background-repeat: no-repeat;
}
#cell3 {
  background-image: url(images/cms/but3-on.gif);
  background-repeat: no-repeat;
}
#cell4 {
  background-image: url(images/cms/but4-on.gif);
  background-repeat: no-repeat;
}

#but1 {
  background-image: url(images/cms/but1-off.gif);
  background-repeat: no-repeat;
}
#but1:hover {
  background-image: url(images/cms/but1-on.gif);
  background-repeat: no-repeat;
}
#but2 {
  background-image: url(images/cms/but2-off.gif);
  background-repeat: no-repeat;
}
#but2:hover {
  background-image: url(images/cms/but2-on.gif);
  background-repeat: no-repeat;
}
#but3 {
  background-image: url(images/cms/but3-off.gif);
  background-repeat: no-repeat;
}
#but3:hover {
  background-image: url(images/cms/but3-on.gif);
  background-repeat: no-repeat;
}
#but4 {
  background-image: url(images/cms/but4-off.gif);
  background-repeat: no-repeat;
}
#but4:hover {
  background-image: url(images/cms/but4-on.gif);
  background-repeat: no-repeat;
}


div#cover-text {
  background-color : #eeeeee;
  width: 680px;
  text-align : left;
  font-family : Verdana, Arial, Helvetica, sans-serif;
  color : #000000;
  font-size : 12px;
  line-height: 16px;
  padding : 15px;
}


h1 {
  font-family : Verdana, Arial, Helvetica, sans-serif;
  color : #000000;
  font-size : 16px;
  margin-bottom : 5px;
}

div#footer {
  clear:both;       /* keep footer below content and menu */
  font-family : Verdana, Arial, Helvetica, sans-serif;
  color : #cccccc;
}

div#footer p {
   font-size: 1.0em;
   padding: 0.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#developer {
  background-color : #212121;
  width : 510px;
  text-align : center;
  font-family : Verdana, Arial, Helvetica, sans-serif;
  color : #808080;
  font-size : 11px;
  padding : 5px;
}
/* End of 'APS - HomeLayout' */

