/* Start of CMSMS style sheet 'BCA Page Template' */
/*****************
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, Arial, Helvetica, sans-serif;
   font-size: 12px;
   line-height: 16px;
   color:#333
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 12px;
   color:#333
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
a:link {
	color: #CC0000;
	font-weight: bold;
	text-decoration: none;
}
a:link,visited,hover,active {
	font-weight: bolder;
	text-decoration: none;
}
a:visited {
	color: #cc0000;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #909;
	font-weight: bold;
	text-decoration: none;
}
a:active {
	color: #909;
	font-weight: bold;
	text-decoration: none;
}

/*****************
basic layout 
*****************/
body {
   background-color: #666;
   color: #333;
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   width: 780px; /* IE wont understand these, so we will use javascript magick */
   background-color: #fff;;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/


div#header {
   width: 780px;
height: 150px;
}

div#logo {
height: 120px;
background: #ccc url(uploads/images/NavElements/TopBar.gif) no-repeat;
}

div#search {
padding-top:3px;
padding-bottom: 3px;
height: 24px;
background-color: #ccc;
}

div#menuwrapper {
   /*   overflow: hidden;  */
   background-color: #cc0000;
   width: 780px;
   margin-left: 0;
   margin-right: 0;
   z-index: 500;
   text-align: left;
}
div.breadcrumbs {
   padding: 12px 0 12px 40px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 100%;             /* 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" */
   color: #cc0000;
   font-weight: bold;
}
div.breadcrumbs span.lastitem { 
   color:#909; 
 }
 div#content {
   margin: 12px auto 12px 0; /* some air above and under menu and content */
}

div#main {
   margin-left: 160px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 20px; /* and some air on the right */
}



div#sidebar {
   float: left;
   width: 130px;    /* sidebar width, if you change this please also change #main margins */
   margin: 12px 0 0 10px;
   padding: 0;
}

div#sidebar p.sidebarnav {
font-size: 12px;
line-height: 14px; 
font-weight: bold; 
color: #cc0000; 
background-color: #cccccc; 
height: auto; 
margin: 0 0 6px 0; 
padding: 6px; 
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000;
   background-color: #ccc; /* same bg color as in header */
   margin: 0 0 0 0;
   width: 780px;
}

div#footer p {
   font-size: 11px;
   text-align: right;
   line-height: 13px;
   padding: 9px;
   margin:0
}

div#footer p a {
   color: #cc0000; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   border-bottom: 1px dotted #cc0000;
   margin: 6px 0 6px 0;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 { 
font-family: Verdana, Arial, Helvetica, sans-serif; 
font-size: 24px; 
font-weight: bold;
line-height:24px;
color: #fff; 
background-color: #c00;
padding-top: 5px;
padding-right: 6px;
padding-bottom: 6px;
padding-left:6px;
margin-top: 12px;
margin-bottom: 12px;
text-align: left;
}
div#content h3 {
font-size: 18px;
line-height: 20px; 
font-weight: bold; 
color: #cc0000; 
background-color: #cccccc; 
height: auto; 
margin: 15px 0 12px; 
padding: 6px 6px 6px 10px; 
}
div#content h4 {
   color: #cc0000; 
   font-size: 16px;
   line-height: 20px;
   margin: 0 0 12px 0;
}
div#content h5 {
   font-size: 14px;
   line-height: 16px;
   color:#cc0000
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin: 0 0 12px 0;  /* some air around p elements */
   line-height:16px;
   padding-right: 10px;
   color: #333;
}
blockquote {
   margin: 0 20px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

div#content ul {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CC0000;
	text-indent: 0px;
        line-height: 1em;
        margin: 1em 0 1em 2em;
}

div#content ol {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CC0000;
	text-indent: 0px;
        line-height: 1em;
        margin: 1em 0 1em 2em;
}

 div#content ul li {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CC0000;
	list-style-position: outside;
	list-style-type: square;
        line-height: 1.4em;
        padding: 3px 0 3px 0;
}
 div#content ol li {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CC0000;
	list-style-position: outside;
	list-style-type: decimal;
        line-height: 1.4em;
        padding: 3px 0 3px 0;
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
  line-height: 20px;
}
div#main ul li,
div#main ol li {
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 1em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

.footnotes {
font-size: 10px;
line-height: 12px;
border-bottom: 3px;
}

.footnote {
font-size: 10px;
line-height: 12px;
border-bottom: 3px;
}

.sidebarnav {
font-size: 12px;
line-height: 14px; 
font-weight: bold; 
color: #cc0000; 
background-color: #cccccc; 
height: auto; 
padding: 6px 0 6px 0; 
margin-left: -9px;
}

/* Sample FormBuilder CSS base */
	
form {
margin-top:0;
width:550px;
}
	
form, td, th, li { font-size: 100%}
	
form div {margin-bottom:0}
	
fieldset div {
		margin-bottom:0.5em;
		margin-left:1em;
	}
	fieldset div div {
		margin-top:0.5em;
		margin-left:1em
	}
	fieldset {
		margin-bottom:1em;
		border:1px solid #cc0000;
		padding:0.5em;
                background:#ccc;
width: 590px;
	}
	fieldset label {
		width:auto;
font-size: 12px;
	}
fieldset input {
border: 1px solid #cc0000;
margin: 0 3px 0 0;
}
	legend {
		color:#FFF;
		background:#cc0000;
		font-size:14px;
font-weight: bold;
		margin-bottom:0.5em;
		padding:4px 8px 4px 8px;
		width:auto;
		border:1px solid #cc0000;
        }
	textarea {
		margin: 0.5em 0;
		width:98%;
		height: 6em
	}
label {
margin-right:6px;
}

.radiobutton {
line-height: 12px;
}

	/* Apply this class to text/select input fields with shorter labels
		to help alignment */
	.short-label label {float:left; width:10em}
	.short-label fieldset div input, 
	.short-label fieldset div select {width:16em}

	/* Pretty up your Captcha image output */
	.captcha {
                margin:0.5em 0;
		width:200px;
		text-align:left;
	}
	.captcha img {border:1px solid #cc0000; margin-bottom:0.5em}
	.captcha input {width:196px; margin-top:0.5em}

	/* Just a bit more room for the Submit button */
	.submit {margin-top:0.5em}

#subhead {
font color: #CC0000;
font-weight: bold;
}

.fltrt {
float: right;
margin-left: 8px;
width: auto;
}	
/* End of 'BCA Page Template' */

