/* =Web Fonts
-------------------------------------------------------------*/
@font-face {
	font-family: 'Lucida Grande';
	src: url('../fonts/lucida_grande-webfont.eot');
	src: local('Lucida Grande'), url('../fonts/lucida_grande-webfont.woff') format('woff'), url('../fonts/lucida_grande-webfont.ttf') format('truetype'), url('../fonts/lucida_grande-webfont.svg#webfontkaEd6gtb') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* =General & Layout
-------------------------------------------------------------*/

html * {
	color: inherit;
}

html {
	background: #4E4E4E;
	color: #222;
}

body {
	background: url(../images/background-html.png) repeat center 230px;
	font-family: 'Lucida Grande', Tahoma, Arial, 'sans serif';
	font-size: 13px;
	margin: 0px 0px 0px;
	padding: 0px;
}

#wrap {
	background: url(../images/background-body.png) repeat-x center 45px;
}

#main {
	margin-top: 10px;
}

/* =Defaults (h1...h6, a, etc.)
-------------------------------------------------------------*/

a {
	-webkit-transition: color 130ms linear;
	-webkit-transition-property: color, background-color;
	color: #003054;
	text-decoration: none;
}
a:hover {
	color: #0094ff;
	outline: none;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: bold;
	margin: 0px 0px 10px;
	color: #003054;
}
h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 19px; color: #0a6194; }
h4 { font-size: 16px; color: #0a6194; }
h5 { font-size: 13px; }
h6 { font-size: 11px; }
.strip-heading {
	background: #0a6296;
	color: white;
	font-weight: normal;
	margin: 17px 0px;
	padding: 3px 15px;
	text-shadow: rgba(0,0,0,.6) 1px 1px 3px;
}

p, pre {
	margin: 10px 0px;
}

hr {
	border: 0px;
	border-top: 1px solid #0b6297;
	border-bottom: 1px solid #003054;
	margin: 0px;
}
ul, ol {
	padding: 0px 0px 0px 30px;
	margin: 16px 0px;
}
ul {
	list-style: none;
	padding-left: 0px;
}
	ul li {
		background: url(../images/list-bullet.png) no-repeat left 3px;
		margin: 6px 0px;
		padding-left: 20px;
	}
ul ul {
	margin: 0px;
}
ol li {
	background: none;
	margin: 0px;
	padding: 0px;
}
ol ol {
	margin: 0px;
	list-style: lower-latin;
}
ol ol ol {
	list-style: lower-roman;
}
dd {padding: 0px; margin: 0px 0px 0px 30px;}

blockquote {
	border-left: 2px solid #dedede;
	margin: 5px;
	padding: 0px 10px;
}

a img {
	border: 0px;
}
img.aligncenter, img.alignleft, img.alignright {
	background: #eee;
	border: none;
	padding: 0;
}
img.alignleft, img.alignright {
	margin: 5px 10px;
}

/* =Tables
-------------------------------------------------------------*/

table {
	border: 1px solid #e6e6e6;
	border-collapse: collapse;
	margin: 10px 0px;;
}
caption {
	border-bottom: 2px solid #0A6194;
	font-weight: bold;
	padding: 5px;
}
th {
	padding: 5px;
	background: #eee;
}
td {
	border: 1px solid #dedede;
	padding: 5px;
}

/* =Forms & Form Structures
-------------------------------------------------------------*/

form {
	margin: 0px;
	padding: 0px;
}

textarea {
	background: white url(../images/background-textbox.png) repeat-x;
	border: 1px solid #dedede;
	font-family: inherit;
	line-height: 16px;
	padding: 5px;
	height: 160px;
	width: 400px;
}

input[type=text],
input[type=password],
input.text,
input.password {
	background: white url(../images/background-textbox.png) repeat-x;
	border: 1px solid #dedede;
	font-family: inherit;
	line-height: 16px;
	padding: 3px 5px;
	width: 190px;
}
input[type=text]:focus,
input[type=password]:focus,
input.text:focus,
input.password:focus,
textarea:focus  {
	border-color: #0094ff;
	outline: none;
}
input[type=button], input[type=submit], button, .button {
	color: #003054;
	cursor: default;
	display: inline-block;
	font-weight: bold;
	border: 1px solid #ccc;
	border-right: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	background: white url(../images/background-button.png) repeat-x left bottom; /*-webkit-gradient(linear, 0 60%, 0 100%, from(white), to(#eee));*/
	padding: 3px 10px;
	outline: none;
	-webkit-transition: color 130ms linear;
}
input[type=button]:hover, input[type=submit]:hover, button:hover, .button:hover {
	color: #0094ff;
}
input[type=button]:active, input[type=submit]:active, button:active, .button:active {
	border: 1px solid #bbb;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #f8f8f8 url(../images/background-button-active.png) repeat-x left top;
}

select {
	background: white url(../images/background-textbox.png) repeat-x;
	border: 1px solid #dedede;
	line-height: 16px;
	outline: none;
	padding: 3px 5px;
	width: 190px;
}

fieldset {
	border: 1px solid #dedede;
	margin: 10px 0px;
	padding: 5px 12px 10px;
}
	legend {
		color: #0094ff;
		margin-left: 8px;
	}

label {
		padding: 6px 10px 6px 0px;
}

.field {
	margin: 16px 0px;
	overflow: hidden;
}
	.field label {
		display: inline; /* IE6 Float Bug */
		float: left;
		width: 111px;
		text-align: right;
	}

.error {
	color: #900;
}
.center {text-align: center;}
