/* Start of CMSMS style sheet 'WOSC : ! 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: arial,verdana,tahoma;
   font-size: 75.01%;
   line-height: 1.3em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;

}

/*
if img is inside "a" it would have 
borders, we don't want that
*/

.noborder {
    border: none;
}

table {
max-width: 730px;
}

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 */
   color: white; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: white;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #F9DB2F;
}


a.green:hover {
   color:red;
}
a.itlink {
  color: #008341;
margin: 5px 5px -9px 22px;
} 
a.itlink:hover {
  color: red;    
margin: 5px 5px -9px 22px;
} 

/*****************
basic layout 
*****************/
body {
   background-color: black;
  /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
width:966px;
   max-width: 95em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   color: white;
}


/*** 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: 150px;    /* adjust according your image size */  
   background: url(uploads/WOSC/pics/header2.gif) center repeat-y;
   padding: 0px 0px 0px 16px;
}
div#header img {
        border: 0;
}

div#header h1 a {
/* you can set your own image here */
   background: url(uploads/WOSC/pics/header.gif) center;
   display: block;
   height: 150px;           /*  adjust according your image size */
 /*   text-indent: -999em;  this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
} 

div#headerspace {
   float: right;
   height: 24px;    /* adjust according your image size */  
   padding: 3.5em 2em 0em 0em;
}
div#headerspace img {
        border: 0;
}

div#headerspace2 {
   float: right;
   height: 24px;    /* adjust according your image size */  
   padding: 46px 16px 0px 0px;
}
div#headerspace2 img {
        border: 0;
}

/* position for the search box */
div#search {
   float: right;
   width: 20em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 1em 0.2em 0em;
   margin: 0em 1em;
   color: #ff3300
}

div.breadcrumbs {
   float: right;
   font-size: .875em;
   margin-right: 2.5%;
   margin-top: 5px;
}

div#content {
   background: url(uploads/WOSC/pics/bgmiddle4.gif) center repeat-y;
 /*   margin: 0em auto -1.8em 0em;   some air above and under menu and content */
   color: white;
   margin-bottom: 0em;
}
div#content img {
        border: 1;
        border-width: 1px;
        border-color: white;
}


div#main {
   margin-left: 22%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 3%; /* and some air on the right */
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 15%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug  Trebuchet,Verdana,times   */
   font: bold 1.0em arial,times new roman,times;
   margin-left: 1.95%;

/* same bg color as in header */
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
text-decoration: none;
   padding: 0px 0px 0px 0px;
   text-decoration: none;
   padding: 0em 0em 0em 0em;
 /*    background-color: #008341;  same bg color as in header */
}


div#footerpic {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   text-decoration: none;
   padding: 0em 0em 0em 0em;
   background: url(uploads/WOSC/pics/bgbottom4.gif) center no-repeat;
}

div#footertxt {
       /*;  some air for footer */
   text-align: center;  
   text-decoration: none;
   line-height: 1em;
   padding: 0em;
}

div#foot p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
   font-size: 75.01%;
   line-height: 1.3em;
}

/*   height: 5px;    border-bottom: 2px dotted #008341;  as we hid all hr for accessibility we create new hr with extra div element */
div.hr {

   padding: 1em;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 8%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

div#blacktext {
   color: #000;
}
div#blacktext a{
   color: #000;
}
div#blacktext a:hover{
   color: red;
}



/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
   color: white; 
}
div#content h2 {
	color: white; 
	font-size: 2em; 
/* some air around the text 
	padding-left: 0.5em;
	padding-bottom: 1px;
 set borders around header 
	border-bottom: 1px solid black; 
	border-left: 1.1em solid black; 
        line-height: 1.5em;
 and some air under the border 
        margin: 0 0 0.5em 0; */
}

div#content h3 {
   color: white; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: white; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: white; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: white; 
   font-size: 1.4em; /* font size for h1 */
   line-height: 1.4em;
   margin: 0;
   color: white; 
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em; 
   margin: 0 0 1.0em 0;   /*  some air around p elements */
   padding: 0;
}

blockquote {
   border-left: 10px;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/*  font-family: "Courier New", Courier, monospace;  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: Trebuchet,Verdana,times;
 font-size: 1em;
}

pre {
/*  black border for pre blocks   */
   border: 1px solid #000;   
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;  
   font-size: 90%;
}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* WOSC ONLY TEXT */

div#content arial20 {
   color: white; 
   font-family: arial;
   font-size: 1.666666em;
   line-height: 1.75em;
}

div#content arial24 {
   color: white; 
   font-family: arial;
   font-size: 2em;
   line-height: 2.1em;
}

td.off {
background: black;
color:white;
}
td.on {
background: #D6D6D6;
color: #008341;
} 



/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* Rounded Corners */

div#alert{ margin: 0px 12px 0px 4px;background: red}

b.rtop, b.rbottom{display:block;background: #008341}
b.rtop b, b.rbottom b{display:block;height: 1px;
    overflow: hidden; background: red}
b.r1{margin: 0 5px}
b.r2{margin: 0 3px}
b.r3{margin: 0 2px}
b.rtop b.r4, b.rbottom b.r4{margin: 0 1px;height: 2px}

div#notice{background: #EFE265; margin: 0px 12px 0px 4px; color: black;}

b.rtopn, b.rbottomn{display:block;background: #008341;}
b.rtopn b, b.rbottomn b{display:block;height: 1px;
    overflow: hidden; background: #EFE265}
b.rtopn b.r4, b.rbottomn b.r4{margin: 0 1px;height: 2px}

ul#information_technology,ul#information_technology li{list-style-type:none;margin:0;padding:0}
ul#information_technology{width: 234px;margin:10px auto 0;text-align:left}
ul#information_technology li {float:left;width: 220px; height:20px;
    padding: 30px 10px 20px 20px;margin:8px 8px 0 0}
li#it1{background: #FC0}
li#it2{background: #9F3}
li#it3{background: #F60}
li#it4{background: #39F}
li#it5{background: #F36}
li#it6{background: #FFF;color: #000}


.itbutton{
border:0;
-moz-border-radius:8px;
#-moz-box-shadow:1px 2px 3px rgba(0,0,0,0.5);
-webkit-border-radius:4px;
#-webkit-box-shadow:1px 2px 3px rgba(0,0,0,0.5);
#border-bottom:1px solid rgba(0,0,0,0.25);
background-color:#008341;
cursor:pointer;
z-index:0;
font-size: medium;
font-weight:bold;
text-decoration:none;
padding: 5px 9px 5px 9px;
position:relative;
text-shadow:0 -1px 1px rgba(0,0,0,0.25);
 filter: glow(color=#000000,strength=2);
}
.itbutton:hover{background-color:#006331;color:gold;}
.itbutton:active{top:1px;}

/* END Rounded Corners */

/* END LISTS */


/* End of 'WOSC : ! Left sidebar + 1 column ' */

