/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
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: 12px;
}

/*
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.menuitem,
a.menuitem:link, 
a.menuitem:active,
a.menuitem:visited {
   text-decoration: none;
   background-color: White; 
   color: #002665;
   display : block;
   padding : 4px;
   font-weight : normal; 
}

/* remove underline on hover and change color */
a.menuitem:hover {
   text-decoration: none;
   background-color: #b4c6e5;
   color: White;
   display : block;
   font-weight : normal; 
 
}

a.menuactive {
   text-decoration: none;
   background-color: #b4c6e5;
   color: White;
   display : block;
   padding : 4px;
   font-weight : normal;}


img.left {
 margin-right : 10px;
 margin-bottom : 5px;
}
img.right {
 margin-left : 10px;
 margin-bottom : 5px;
}
/* End of 'Layout: Left sidebar + 1 column' */

