/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
html {overflow-y: scroll;}
html { overflow: -moz-scrollbars-vertical; }
html { overflow-x: auto; }

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  
/*background-image: url("/v2/images/bg.jpg");
background-repeat: repeat-x;*/
  background-color: #eeeeee;
  color: #666666;
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 10pt;
/*  line-height: 14px;*/
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
.solidborder {border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14pt;
  font-weight: bold;
  line-height: 15pt;
}
/* Commonly used to style section titles. */
h2 {
	font-family:Verdana, Helvetica, sans-serif;
  color: #000;
  font-size: 14pt;
  font-weight: bold;
  line-height: 14pt;
}

h3 {
	font-family:Verdana, Helvetica, sans-serif;
  color: #c00;
  font-size: 10pt;
  font-weight: bold;
  line-height: 12pt;
}

h4 {
	/*background-color: #c00;*/
	padding: 5px;
	color: #000;
}
/* -- MAIN STYLE CLASSES -- */

.intro {
	border: solid 0px #ccc;
	padding: 10px;
	/*Top Left Bottom Right*/
	margin: 0px 10px 0px 10px;
	width: auto;
}




.emphasis {
   font-style: italic;
}

#homeBox {
	width: auto;
	height: 555px;
	/*Top Left Bottom Right*/
	margin: 0px 10px 0px 10px;
	display: block;
	
}

.boxSM {
 	width:31%; 
	font-size: 9pt;
	border: solid 2px #ececec;
	padding: 5px 5px 5px 5px;
	}
	
#box1 {
		float: left;
		display: inline;
		height: 285px;
	}
	
#box2 {
		float: left;
		display: inline;
		margin: 0 0 0 10px;
		height: 285px;
	}
	
#box3 {
	float: left;
	display: inline;
	margin: 0 0 0 10px;
	height: 285px;
	}


#wrapper{
border:0px solid #000;
/*Top Left Bottom Right*/
margin: 0px 10px 0px 10px;
overflow:auto;/* to clear floats*/
}
#wrapper div{
height:104px;
}
#wrapper .left{
padding: 10px;
float:left;
border:1px solid #ccc;
width:30%; 
}
#wrapper .right{
padding: 10px;
float:right;
border:1px solid #ccc;
width:30%;
}
#wrapper .middle{
padding: 10px;
border:1px solid #ccc;
margin-right:34%;
margin-left:34%;
}

#wrapper h2 {
  font-family:Verdana, Helvetica, sans-serif;
  color: #c00;
  font-size: 10pt;
  font-weight: bold;
  line-height: 8pt;
}

#wrapper p {
  font-family:arial, Helvetica, sans-serif;
  color: #444;
  font-size: 9pt;
  line-height: 12pt;
}


#pagewrapper{
border:0px solid #000;
/*Top Left Bottom Right*/
margin: 0px 10px 0px 10px;
padding: 0px;
overflow:auto;/* to clear floats*/
}
#pagewrapper div{
height:auto;
}
#pagewrapper .pageleft{
	padding: 10px;
	float:left;
	border:0px solid #ccc;
	width:650px;
}
#pagewrapper .pageright{
padding: 10px;
float:right;
border:0px solid #ccc;
width:250px;
}

#pagewrapper .pageleftLinks{
padding-left: 10px;
padding-bottom: 10px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 0px;
border-left:1px solid #c00;
border-bottom:0px solid #ccc;
float:left;
width:210px;
/*background-color:#f3f2f2;*/
}

#pagewrapper .boxsidebar{
padding-left: 14px;
padding-bottom: 10px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 0px;
border-left:1px solid #c00;
border-bottom:0px solid #ccc;
float:left;
width:210px;
/*height:242px;*/
/*background-image: url(/v2/images/bg_notepad.jpg);*/
/*background-color:#f3f2f2;*/
}

.sidemenuheader {
	border-bottom:0px solid #ccc;
	MARGIN: 0px 1px;
	background-color: #eeeeee;
	COLOR: black;
	/*Top Left Bottom Right*/
	padding: 4px 1px 4px 2px;
	width: 200px;
	font-size: 10pt;
	font-weight: bold;
	}

.sidemenu  a {
	border-bottom:1px solid #ccc;
	MARGIN: 0px 1px;
	COLOR: black;
	background-color: #ffffff;
	text-decoration: none;
	display: block;
	padding: 8px 1px 2px 2px;
	width: 200px;
	}

.sidemenu a:hover {
	background-color: #ffffff;
	color: #c00;
	border-color:#c00;
	text-decoration: none;
	}
	
.sidemenu a:active {
	background-color: #ffffff;
	color: #c00;
	border-color:#c00;
	text-decoration: none;
	}

/* Sets the style for unvisited links. */
a,  a:link {
/*  color: #000;
  font-weight: normal;
  text-decoration: none;*/
}
/* Sets the style for visited links. */
a:visited {
/*  color: #000;
  font-weight: normal;
  text-decoration: none;*/
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #c00;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}




/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */


#outerbg {
	width: 1010px;
	text-align: center;
	background-image: url(images/bg_mainbg.gif);
	background-repeat: repeat-y;
	margin: 0 auto 0 auto;
	height: 100%;
}

#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  border: solid 1px #ccc;
  width: 990px;
  height: 100%;
  
}
#outerWrapper #header {
	height: 40px;
    /*Top Left Bottom Right*/
	margin: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 100%;
	width: auto;
}
#outerWrapper #footer {
  background-color: #ddd;
  border-top: solid 1px #ccc; /* Sets the top border properties for an element using shorthand notation */
  padding: 0px;/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size: 9pt;
  height: 50px;
  width: 100%;
  text-align: center;
}

/*TOP MENU*/

#outerWrapper #menubarcolor {
	width: auto;
	height: 20px;
	background: #fff;
	/*Top Left Bottom Right*/
	margin: 0px 20px 0px 20px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-bottom: solid 1px #ccc;
}

#main-menu {
/*	font-family: Arial, Helvetica, sans-serif;*/
	font-weight:normal;
	HEIGHT: 20px;
	FONT-SIZE: 13px;
	letter-spacing: 0px;
	CLEAR: left;
	FLOAT: left;
    /*Top Left Bottom Right*/
	margin: 0px 0px 0px 0px;
	background: #fff;
	PADDING-LEFT: 0px;
	
}

#main-menu li {
	DISPLAY: inline;
	FLOAT: left;
	BORDER-LEFT: #333333 0px solid;
}
#main-menu li A {
    /*Top Left Bottom Right*/
	padding: 0px 30px 0px 0px;
	FLOAT: left;
	COLOR: #000000;
	text-decoration: none;
}
#main-menu li A:hover {
	TEXT-DECORATION: none;
	COLOR: #cc0000;
}

.menutext {font-size: 11px; font-weight: normal; color: #000000;  text-decoration: none}
a.menutext:link {font-size: 11px; font-weight: normal; color: #000000; text-decoration: none}
a.menutext:active {font-size: 11px; font-weight: normal; color: #000000; text-decoration: none}
a.menutext:hover {font-size: 11px; font-weight: normal; color: #000000; text-decoration: underline}	
	
