/* Start of CMSMS style sheet 'ImpactStyle' */
/*****************
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: Helvetica, Arial, sans-serif;
   font-size: 13px;
   line-height: 24px;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 13px;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
IE6 PNG FIX, DUDE!!!
*/
img, div, a, input {
behavior: url(iepngfix.htc);
}


/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
   font-weight:bold;
   color: #056fb9; 
}

a:visited {
  color: #056fb9;
}


a:hover {
   color: #056fb9;
   border-bottom:1px dotted #056fb9;
}

/*****************
basic layout 
*****************/
body {
   background-color: #c40200;
   color: #686868;
   margin:0px;
}


div#search {
   float: right;
   width: 27em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}


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; 
 }


div#main {
}


div#footer {
   height:64px;
   clear:both;
   border-top:1px solid #bedaed;
   border-bottom:1px solid #bedaed;
   background-image:url(images/footer.jpg);
   background-repeat:no-repeat;
   background-position:center;
}


/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* 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 */
h1 {
   color: #666;
   font-size: 33px;
   text-align: left;
   line-height: 30px;
   font-weight:bold;
   text-transform:uppercase;
   margin:0px;
   padding:0px;
   letter-spacing:3px;
}
h2 {
   color: #d60000;
   font-size: 24px;
   text-align: left;
   line-height: 30px;
   font-weight:normal;
   margin:0px;
   padding:0px;
   margin-bottom:16px;
}
h3 {
   color: #3192d1;
   font-size: 24px;
   text-align: left;
   line-height: 1.5em;
   font-weight:normal;
   margin-bottom:0px;
   padding:0px;
}
h4 {
   color: #999;
   font-size: 18px;
   text-align: left;
   line-height: 26px;
   font-weight:normal;
   margin-bottom:4px;
   padding:0px;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   margin: 8px 0 0 0;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
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;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

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 */
}

/* END TEXT */

/* LISTS */
#maincontent ul,
#maincontent ol,
#maincontent dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 6px 0 16px 0;
}
#maincontent ul li,
#maincontent ol li {
   margin: 0 0 0.25em 22px;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

/* SLIMBOX */

#lbOverlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	cursor: pointer;
}

#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	background-color: #111;
}

.lbLoading {
	background: #111 url(images/loading.gif) no-repeat center;
}

#lbImage {
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid #000;
	background-repeat: no-repeat;
}

#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
}

#lbPrevLink:hover {
        border:0px;
}

#lbNextLink {
	right: 0;
}

#lbNextLink:hover {
        border:0px;
}

#lbBottom {
	font-family: Arial, Helvetica, sans-serif;
	color: #999;
	line-height: 1.4em;
	text-align: left;
	border-top-style: none;
        background-color:#111;
        padding:6px;
}

#lbCloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	background: transparent url(images/close.gif) no-repeat center;
	margin: 5px 0;
	outline: none;
        border:0px;
}

#lbCaption, #lbNumber {
	margin-right: 71px;
        font-size: 11px;
}

/* SLIMBOX END */

select {
padding:0px;
margin:0px;
min-width:60px;
}
#footah a {
color:white;
}
#footah a:hover {
color:white;
border-bottom: 1px dotted white;
}
.simplefield {
background-color:#e6e6e6;
border:1px solid #645f5f;
color:#4f4f4f;
font-size:12px;
padding:1px;
width:130px;
vertical-align:middle;

}
.gobutton {
background:transparent url(images/go.gif) no-repeat center;
border:0px;
padding:0px;
margin:0px;
width:36px;
height:19px;
font-size:9px;
line-height:1px;
vertical-align:middle;
}

#legal, #legal p {
font-size:11px;
color:#aaa;
line-height:16px;
}

#legal ul,
#legal ol,
#legal dl {
   margin: 6px 0 16px 0;
}
#legal ul li,
#legal ol li {
   margin: 0 0 0.25em 22px;
}

/* End of 'ImpactStyle' */

