/* Start of CMSMS style sheet 'ALSMND :: layout' */
/*****************
basic layout 
*****************/
body {
   background-color: #EEF5F5;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;       /* this centers wrapper */
   background-color: #fff;;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 105px;    /* adjust according your image size */
background-color:#529694; 
margin-bottom:10px;
}

div#header h1{
font-family:Copperplate Gothic Bold, serif;
font-weight:normal;
font-size:2em;
line-height:1em;
padding-right:10px;
color:white;
display:block;
text-align:right;
padding-top:30px;
}


div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
}

ndiv#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
}


div#main {
   margin-left: 183px; 
   margin-right: 8px;
}

div#sidebar {
   float: left;      
   width: 175px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#topLink{
padding-top:15px;
padding-bottom:15px;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color:#529694; 
   font-size: 0.8em;
   padding: 1em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;

}

div#footer  a {
   color: #fff; 
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}



/* End of 'ALSMND :: layout' */

