/* Start of CMSMS style sheet 'brodsoft_basic' */
/*****************
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:97%;
   /*line-height: 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: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #eee;
   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 */
   max-width: 700px; /*IE wont understand these, so we will use javascript magick */
   min-width: 40em;
   background-color: #eef;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 40px; /* adjust according your image size */
}

div#header h1 a {
/* you can set your own image here */
   background: #CCEEEE url(uploads/images/brodsoft.jpg) no-repeat;
   display: block; 
   height: 40px;             /* adjust according your image size */
   text-indent: -999em;  /*-999em hides the text */
   margin: 5px 0px 0px 0px;
}

div.breadcrumbs {
   float:right;
   padding: 0.5em 0 0.5em 0.5em;  /*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 solid #dde;
   border-left: 1px solid #dde;
}

div #content{
clear: both;
padding: 16px 8px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #666;
   background-color: #ECECEC; /* same bg color as in header */
   font-size: 80%;
   margin-top:5px;
   padding:5px;
   text-align: center; /* centered text */
}

div#footer p {
}

div#footer p a {
   color: #666; /* needed becouse footer link would be same color as background otherwise */
}

div#footer span{
vertical-align:75%;
margin-left:1em;
margin-right:1em;
}
/* End of 'brodsoft_basic' */

