

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}






body,html,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,p,blockquote,fieldset,form,input,select{

	margin:0; padding:0;
}

H1, .h1,.title
{ font-family : helvetica,arial,sans-serif;
  font-size : 17px;
  font-weight : bold; 
    color : #005CA2; }

H2, .h2
{ font-family : helvetica,arial,sans-serif;
  font-size : 14px;
  font-weight : bold; 
  color: #028EDC;  
  }
  
H3, .h3
{ font-family : Verdana, Arial, Helvetica, sans-serif; 
  font-size : 10px;
  font-weight : bold; }

H4, .h4
{ font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size : 10px;
  font-weight : bold; }


table,tr,td {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}

a img,:link img,:visited img {

	border:none;

}

a:link{
	color: #00528e;
	text-decoration: none;
}
a:visited{
	/*color: #00528e;*/
	text-decoration: none;
}
a:active{
	color: #00528e;
	text-decoration: none;
}
a:hover{
	color: #F15E23;
	text-decoration: none;
}
p{ 
line-height:120%;
padding-right:1%;

}

ul, ol {

	list-style-type: none;	

}

#wrapper {
        width: 779px;
        text-align: left;
        margin: 0 auto;
        font-size: 11px;
        padding: 0px 0px 0px 0px;
         font-family: Arial, Helvetica, sans-serif;
        /*border-width: 0px 1px 1px 1px;
		
		border-style: solid solid solid solid;
		border-color: rgb(125, 146, 161) rgb(125, 146, 161) rgb(125, 146, 161) rgb(125, 146, 161);
		background-color: rgb(255, 255, 255);
		*/
		/*-moz-border-radius: 6px 6px 6px 6px;*/
}

#menublue{
	background-color: #282554;
}

#orange{
	background-color: #F15E23;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#ffffff;
	font-weight:bold;
}

.orange{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#F15E23;
	font-weight:bold;
}

input.search {

	font-family: Arial, Helvetica, sans-serif;

	font-size: 9pt;
	
	height:20px;
	
	color: #282554;

	border-top-width: 1px;

	border-right-width: 1px;

	border-bottom-width: 1px;

	border-left-width: 1px;

	border-top-style: solid;

	border-right-style: solid;

	border-bottom-style: solid;

	border-left-style: solid;

	border-top-color: #282554;

	border-right-color: #282554;

	border-bottom-color: #282554;

	border-left-color: #282554;

}

hr {

	border: none 0;

	border-top: 1px solid #282554;

	width: 100%;

	height: 1px;

}

hr.hr1 {

	border: none 0;
	border-top: 1px solid silver;
	width: 100%;
	height: 1px;

}


.example {
					background: #282554;
					line-height:12px;
					font-family: Verdana, Arial, Helvetica, sans-serif;
					
					font-size:12px;
					
				}
				
				/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */
				
				/* remove all list stylings */
				.menu, .menu ul {
					margin: 0;
					padding: 0;
					border: 0;
					list-style-type: none;
					display: block;
				}
				
				.menu li {
					margin: 0;
					padding: 0;
					border: 0;
					display: block;
					float: left;	/* move all main list items into one row, by floating them */
					position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
					z-index: 5;		/* thus we need to apply explicit z-index here... */
					border-right:1px solid #999;
					
				}
				
				.menu li:hover {
					z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
					white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
											see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
				}
				
				.menu li li {
					float: none;/* items of the nested menus are kept on separate lines */
				}
				
				.menu ul {
					visibility: hidden;	/* initially hide all submenus. */
					position: absolute;
					z-index: 10;
					left: 0;	/* while hidden, always keep them at the top left corner, */
					top: 0;		/* 		to avoid scrollbars as much as possible */
				}
				
				.menu li:hover>ul {
					visibility: visible;	/* display submenu them on hover */
					top: 100%;	/* 1st level go below their parent item */
				}
				
				.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
					top: 0;
					left: 100%;
				}
				
				/* -- float.clear --
					force containment of floated LIs inside of UL */
				.menu:after, .menu ul:after {
					content: ".";
					height: 0;
					display: block;
					visibility: hidden;
					overflow: hidden;
					clear: both;
				}
				.menu, .menu ul {	/* IE7 float clear: */
					min-height: 0;
				}
				/* -- float.clear.END --  */
				
				/* -- sticky.submenu --
					it should not disappear when your mouse moves a bit outside the submenu
					YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
					if you do it, make sure you 110% know what you do */
				.menu ul {
					background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
					padding: 10px 30px 30px 30px;
					margin: -10px 0 0 -30px;
					/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
												you can also use to adjust the safe area to your requirement */
				}
				.menu ul ul {
					padding: 30px 30px 30px 10px;
					margin: -30px 0 0 -10px;
				}
				/* -- sticky.submenu.END -- */
				
				
				
				
				
				
				/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */
				
				.menu, .menu ul li {
					color: #eee;
					background: #282554;
				}
				
				.menu ul {
					width: 11em;
				}
				
				.menu a {
					text-decoration: none;
					color: #eee;
					padding: .4em 1em;
					display: block;
					position: relative;
				}
				
				.menu a:hover, .menu li:hover>a {
					color: #F26521;
				}
				
				.menu li li {	/* create borders around each item */
					border: 1px solid #ccc;
				}
				.menu ul>li + li {	/* and remove the top border on all but first item in the list */
					border-top: 0;
				}
				
				.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
					top: 5px;
					left: 90%;
				}
				
				/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
					placed here to clarify the terminology I use when referencing submenus in posts */
				.menu>li:first-child>a, .menu li + li + li li:first-child>a {
					/*color: #F26521;*/
				}

				
.boldblue_title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #282554;
	font-size:12px;
	font-weight: bold;
	border: none;
}


.boldblue {
	font-size:11px;
	color: #10378E;
	font-weight: bold;
	border: none;
}
a:link.boldblue {
	color: #10378E;
	text-decoration:none;
}
a:visited.boldblue {
	color: #10378E;
	text-decoration:none;
}
a:active.boldblue {
	color: #10378E;
	text-decoration:none;
}

a:hover.boldblue {
	color:#F15E23;
	text-decoration:none;
}


input.button_change, input.button_delete,input.button_add {
	background: url(../images/blank_button.gif);
	width: 76px;
	height: 19px;
	border:none;
	font-weight: bold;
	font-size: 9px;
	color: #10378E;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	cursor: pointer;
}

input.buttonlong {
	background: url(../images/blank_buttonlong.jpg);
	width: 140px;
	height: 19px;
	border:none;
	font-weight: bold;
	font-size: 9px;
	color: #10378E;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	cursor: pointer;
}

input.buttonextralong {
	background: url(../images/blank_buttonextralong.jpg);
	width: 225px;
	height: 19px;
	border:none;
	font-weight: bold;
	font-size: 9px;
	color: #10378E;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	cursor: pointer;
}

.grid_box{ 
	border:1px solid #B1B6BA;
	border-top:0px; 
	border-right:0px 
	
}

.grid_box_full{ 
	border:1px solid #B1B6BA;	
}

.list {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	list-style-image:  url(../images/bullet.jpg); 
	font-weight: 600;
	list-style-position: outside;
	margin-left: 20px;
	padding: 0px;
	text-decoration:none;
}
.list li {
	padding-bottom: 5px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	text-indent: 0px;
}
.list a:link {
	display: block;
	text-decoration:none;
	color: #10378E;
}
.list a:visited {
	display: block;
	text-decoration:none;
	color: #10378E;
}
.list a:active {
	display: block;
	text-decoration:none;
	color: #10378E;
}
.list a:hover {
	display: block;
	text-decoration:none;
	color: #F15E23;
}

.list_blue {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #282554;
	list-style-image:  url(../images/bullet.jpg); 
	list-style-position: outside;
	margin-left: 30px;
	padding: 0px;
	text-decoration:none;
}
.list_blue li {
	padding-bottom: 5px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	text-indent: 0px;
}
.list_blue a:link {
	display: block;
	text-decoration:none;
	color: #10378E;
}
.list_blue a:visited {
	display: block;
	text-decoration:none;
	color: #10378E;
}
.list_blue a:active {
	display: block;
	text-decoration:none;
	color: #10378E;
}
.list_blue a:hover {
	display: block;
	text-decoration:none;
	color: #F15E23;
}

.list_square {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #282554;
	list-style-image:  url(../images/bullet_rect.jpg); 
	list-style-position: outside;
	margin-left: 30px;
	padding: 0px;
	text-decoration:none;
}
.style1 {
	color: #282554;
	font-weight: 700;
	font-style: normal;
	background-color:#F3F5F7;
	font-family: Arial, sans-serif;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
	border-style: none;
	border-color: inherit;
	border-width: medium;
	padding: 0px;
}
.style5 {
	text-align: center;
}
.style7 {
	color: #FFFFFF;
	text-decoration: underline;
	font-weight: bold;
}
.style8 {
	font-size: medium;
	color: #FF0000;
	font-weight: bold;
}
.style9 {
	color: #282554;
	font-weight: 700;
	font-style: normal;
	background-color:#F3F5F7;
	font-family: Arial, sans-serif;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
	border-style: none;
	border-color: inherit;
	border-width: medium;
	padding: 0px;
}
.style10 {
	color: #282554;
	font-weight: 400;
	font-style: normal;
	text-decoration: none;
	font-family: Arial, sans-serif;
	text-align: left;
	vertical-align: bottom;
	white-space: nowrap;
	border-style: none;
	border-color: inherit;
	border-width: medium;
	padding: 0px;
}