/* https://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Default Styles 
--------------------------------------------------------------------*/

nav {
	background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#ccc));
	background-image: linear-gradient(#fff, #f2f2f2);
	border-radius: 6px;
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0);
	padding: 0 0px;
	position: relative;
}

.menu li {
	float: left;
	position: relative;
}

.menu li a {
	color: rgba(42,52,141,1);
	display: block;
	font-size: 14px;
	line-height: 18px;
	padding: 4px 11px;
	margin: 1px 0px;
	vertical-align: middle;
	text-decoration: none;
}

/*.menu li a:hover {
	background: -webkit-gradient(linear, center top, center bottom, from(#ededed), to(#fff));
	background-image: linear-gradient(#ededed, #fff);
	border-radius: 12px;
	box-shadow: inset 0px 0px 1px 1px rgba(0,0,0,0.1);
	color: #222;
}*/
/* Dropdown styles */

.menu ul {
	position: absolute;
	left: -9999px;
	list-style: none;
	opacity: 0;
	transition: opacity 0.1s ease;
	font-style: normal;
	font-size: 16px;
	z-index:50000000;
}

.menu ul li {
	float: none;
}

.menu ul a {
	white-space: nowrap;
}

/* Displays the dropdown on hover and moves back into position */
.menu li:hover ul {
	background: rgba(42,52,141,0.6);
	border-radius: 0 0 6px 6px;
	box-shadow: inset 0px 2px 4px rgba(0,0,0,0.4);
	left: 5px;
	opacity: 1;
}

/* Persistant Hover State */
/*.menu li:hover a {
	background: -webkit-gradient(linear, center top, center bottom, from(#ccc), to(#ededed));
	background-image: linear-gradient(#ccc, #ededed);
	border-radius: 12px;
	box-shadow: inset 0px 0px 1px 1px rgba(0,0,0,0.1);
	color: #fff;
}
*/
.menu li:hover ul a {
	background: none;
	border-radius: 0;
	box-shadow: none;
}

.menu li:hover ul li a:hover {
	background: -webkit-gradient(linear, center top, center bottom, from(rgba(42,52,141,0.1)), to(rgba(42,52,141,0.5)));
	background-image: linear-gradient(rgba(42,52,141,0.1), rgba(42,52,141,0.5));
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.3);
	color:#fff;
}

.menu li ul li a {
	color:#fff;
}
/* Styling of the search field */
.search-box input{
	width:96px;
	height:20px;
	margin-left:9px;
	margin-top:0px;
	border:none;
	padding-left:25px;
	padding-right:25px;
	color:#2A348D;
	vertical-align: middle;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	/* We use the CSS3 multiple backgrounds for the input field: The magnifier image and the gradient background */    
    background-image: url(../img/magnifier.png), -webkit-gradient(linear, left bottom, left top, color-stop(0,#8f8f8f), color-stop(0.5, #d3d3d3), color-stop(0.51, #bebebe), color-stop(1, #d1d1d1));
	background-image: url(../img/magnifier.png), -moz-linear-gradient(center bottom,#8f8f8f 10%, #d3d3d3 50%, #bebebe 51%, #d1d1d1 100%);
	background-repeat: no-repeat;
	background-position:0px 1px;
	background-color:#CCC; /* Fallback */
	-moz-box-shadow: inset 0 2px 1px 1px #5e5e5e;
	-webkit-box-shadow: inset 0 2px 1px 1px #5e5e5e;
	box-shadow: inset 0 2px 1px 1px #5e5e5e;
}

/* ----------------- GLOBAL ----------------- */

.one { color: #2C2C81; }
.two { color: #BC9706;}

/* ----------------- HEADER ----------------- */

#header h1 { font-family: 'MyriadProi'; letter-spacing: 12px; font-weight: normal; font-size: 4em;margin-bottom: -5px;}
#header hr { color: #2C2C81; height:2px;}
#header h2 { font-family: 'MyriadProi'; font-weight: normal; font-size: 1.2em; margin-top: 0px; margin-bottom: 0px;}
#header h3 { font-family: 'MyriadProi'; letter-spacing: 2px; font-weight: normal; font-size: 1.7em;}

p, ul, ol {
	margin-top: 0;
	line-height: 180%;
}

ul, ol {
}

a {
	text-decoration: none;
	color: #F6B300;
}

a:hover {
}

/* Header */

#header-wrapper {
}

#header {
	clear: both;
	width: 1000px;
	margin: 0px auto;
}

/* Page */

#wrapper
{
	overflow: hidden;
	padding-bottom: 40px;
}

#page {
	overflow: hidden;
	width: 1000px;
	margin: 0px auto;
}