body {
	margin:0;
	padding:0;
	line-height: 1.5em;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #E4ECEE;
	background-image: url(images/WBG_background2.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14pt;
	color:  #183048;	
	margin-top: 2px;
	margin-bottom: 2px;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12pt;
	color: #DF8B35;
	margin-top: 2px;
	margin-bottom: 2px;
}

h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 11pt;
	color: #000000;
	margin-top: 2px;
	margin-bottom: 2px;
}

.style1 {font-size: 12px;
		color: #000000;
		}
.style2 {font-size: 12px;
		color: #D2000B;}
.style3 {font-size: 12px;
		color: #009CD7;}
.style4 {font-size: 12px;
		color: #D2000B;}
.style5 {font-size: 10px;
		color: #666666;
		line-height:normal;
		}






#outershell{ 

width: 950px; /*Width of main container*/
margin: 0 auto; /*Center container on page*/

 }
 


#innershell{
	position:relative;
	margin-top: 0px;
	width: 950px;
	border: 0px solid #CCCCCC;
	background-image: url(images/inner_back.gif);
	background-repeat: no-repeat;
	background-position: right bottom;		
	background-color: #ffffff;
    margin-bottom: 20px;
}

#topsection{
	
    background-repeat: no-repeat;
	background-position: left top;

}

#pageheader {
	height: 90px;
	color: #b35a00;
	font-family: "Lucida Sans";
	font-size: 25px;
	letter-spacing: 5px;
}
#banner {  }

#pagetitle{
	margin-top:10px;
	width:910px;
	height: 55px;
    padding-left: 22px;
    min-height: 50px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #DF8B35;
	letter-spacing: 0.3cm;
	text-transform: uppercase;
	line-height: 16px;

}

#posts {height: 250px;
		padding:60px;
		 min-height:250px;   }
 


 html>body #posts {
	height: auto;} /* for not-IE */

a:link {

	color: #b35a00;
	text-decoration: none;
	}

a:visited {

	color: #003366;
	text-decoration: none; }
	
a:hover {

	color: #003366;
	text-decoration: none; }
	
a:visited:hover {

	color: #003366;
	text-decoration: none; }
	
#copyright {
	clear: left;
	width: 930px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color:  #999999;
	background-repeat: no-repeat;
}

.copyright p {  
	line-height: 1em;
	color:  #999999;
    margin-top: 10px; margin-bottom: 5px;

}

.copyright a:link {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	color:  #999999;
	text-decoration: none;
	}

.copyright a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color:  #999999;
	text-decoration: none;	}

.copyright a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	text-decoration: none;		
}	

.copyright a:hover:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size:  10px;
	color: #000000;
	text-decoration: none;		
}	
 

img { border-style:none;
border: 0px none #951007}

a img { 
border: 0px solid #910D01}



ul {

	list-style-type: square;
	list-style-position: outside;
}

input { 
 background-color: #ffffff; 
 border: 1px solid #183048;  
}

.sidemenu {
    font-family: Tahoma;
	font-size: 13px;
letter-spacing:  4px;
}

ul.makeMenu, ul.makeMenu ul {

  width: 180px;                 /* sets the size of the menu blocks */
  border: 1px solid #ffffff;      /* puts a black border around the menu blocks */
  background-color: #ffffff;        /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  
  padding-left: 2px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}
ul.makeMenu li {
	list-style-type: none;
	margin: 0px;
	position: relative;
	color: #D2000B;	

}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 2px;                    /* position slightly lower than the parent menu item */
  left: 170px;                  /* this must not be more than the width of the parent block, or the mouse will
                                have to move off the element to move between blocks, and the menu will close */
  padding-left:2px;
 border: 1px solid #183048;      /*  puts a black border around the menu blocks */
  background-color: #E7E7E7;        /* makes the menu blocks background colour - a bg-color MUST be included for IE to work properly! */

}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #DF8B35;    /* gives the active menu items a yellow background */
margin-left:-2px;  
padding-left:4px;
 /* border: 1px solid #183048;       puts a black border around the active menu items */

  color: #ffffff;                 /* makes the active menu item text black */ 
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a { color: #183048; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #ffffff; }
ul.makeMenu li:hover > a { color: #ffffff; } /* supports links in branch headings - should not be display: block; */
