/*
	Basic
*/

/* document */
html, body { height: 100%; }
body {
	color: #333333;
	font: 12px/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	min-width: 1120px;
	}

/* links */
a {
	color: #3399ff;
	text-decoration: underline;
	cursor: pointer;
	outline: none;
	}
	a:hover {
		color: #3399ff;
		text-decoration: none;
		}
	a:visited {
		color: #6993cc;
		}
a.button {
	display: inline-block;
	width: 40px;
	height: 30px;
	background: #7b7b7b url(img/bg.link.png) no-repeat left top;
	}
	a.button:hover {
		background-position: left bottom;
		}

/* images */
img {
	border: none;
	margin: 0;
	vertical-align: top;
	}
	#page p img {
		margin: 0 10px 10px 0;
		}




/*
	Base semantics
*/
p, h1, h2, h3, h4, h5, h6, pre, address, table, ol, ul, dl {
	margin-bottom: 1em;
	}

/* blocks */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	}
h1 {
	color: #0051a3;
	font-size: 24px;
	font-family: Arial, Helvetica, sans-serif;
	}
h2 {
	color: #0051A3;
	}
h3 {
	}
h4 {
	}
h5 {
	}
h6 {
	}

pre {
	font-family: Arial, sans-serif;
	white-space: normal;
	}
hr, .hr {
	margin: 1em 0;
	border: none;
	border-bottom: 2px solid #949494;
	height: 0;
	}

/* quotes */
blockquote, cite, q {
	color: #0051a3;
	font-style: italic;
	margin: 0;
	}
blockquote {
	color: #fff;
	font-size: 1em;
	font-style: normal;
	padding: 15px 30px;
	margin-right: 100px;
	background: #6db6f8;
	margin-bottom: 1em;
	}
	blockquote p {
		margin-bottom: 1em;
		}
cite, q {
	padding: 2px 4px;
	}

/* inlines */
strong {
	font-weight: bold;
	}
em {
	font-style: italic;
	}
sub {
	font-size: .8em;
	vertical-align: bottom;
	}
sup {
	font-size: .8em;
	vertical-align: top;
	}
	sup a {
		margin-left: 2px;
		text-decoration: none;
		}
big {
	font-size: 1.2em;
	line-height: inherit;
	}
small {
	font-size: .9em;
	line-height: inherit;
	}

acronym, abbr, dfn {
	border-bottom: 1px dotted #0051a3;
	cursor: help;
	}

acronym, abbr {
	text-transform: uppercase;
	}

ins {
	color: #0051a3;
	}
del, strike {
	text-decoration: line-through;
	color: #0051a3;
	}
bdo, kbd {
	color: #0051a3;
	font-family: "Courier New", Courier, monospace;
	}




/*
	Forms
*/
form {
	font-size: 12px;
	}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
	outline: 1px solid #6db6f8;
	}

input {
	vertical-align: middle;
	}
input, textarea, select, button {
	color: #9a9a9a;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 8px;
	}

	input[type=checkbox], input[type=radio] {
		position: relative;
		top: 2px;
		// top: -1px;
		//margin: 0 -3px;
		}
	input[type=text], input[type=password] {
		border: 1px solid #ededed;
		background: #fff;
		padding: 2px 2px;
		vertical-align: top;
		}
	input[type=file] {
		//padding: 3px 5px;
		}

textarea {
	border: 1px solid #ededed;
	resize: none;
	width: 260px;
	height: 90px;
	padding: 2px 2px;
	background: #fff;
	}
select {
	vertical-align: middle;
	background: #fff;
	border: 1px solid #ededed;
	padding: 2px 2px;
	}
option {
	}
optgroup {
	}
button {
	color: #fff;
	font-weight: normal;
	text-transform: lowercase;
	border: none;
	padding: 0 10px;
	//padding: 0;
	height: 20px;
	line-height: 20px;
	vertical-align: top;
	background: #0051a3;
	cursor: pointer;
	margin-right: 5px;
	}
	button:hover {
		background: #61aff8;
		}

label {
	color: #333333;
	cursor: default;
	}
fieldset {
	}
legend {
	}
	form dt {
		width: 140px;
		padding: 1px 0;
		font-weight: normal;
		float: left;
		clear: left;
		margin-bottom: 15px;
		}
	form dd {
		margin-left: 150px;
		margin-bottom: 10px;
		}
	form ins {
		color: #ff000b;
		padding: 1px 5px;
		//padding: 0 5px 1px 5px;
		//position: relative;
		//top: 1px;
		display: inline-block;
		vertical-align: top;
		margin-bottom: 5px;
		text-decoration: none;
		font-size: .8em;
		}
	form dt em {
		color: #e76565;
		margin: 0 2px;
		cursor: help;
		}




/*
	Lists
*/
ul {
	}

	ul > li {
		list-style-position: outside;
		list-style-type: none;
		padding-left: 20px;
		background: url(/design/img/ico.bullet.png) no-repeat 0 .4em;
		margin-bottom: 1em;
		}

	li ul {
		margin-top: 1em;
		margin-bottom: 1em;
		}

ol {
	margin-left: 30px;
	}

	ol > li {
		list-style-position: outside;
		list-style-type: decimal;
		padding-left: 0;
		background: none;
		margin-bottom: 1em;
		}
	
	li ol {
		margin-top: 1em;
		margin-bottom: 1em;
		}
	
	li > ol > li {
		list-style-type: lower-alpha;
		}

dl {
	}

dt {
	font-weight: bold;
	margin-bottom: 0.3em;
	}

dd {
	text-indent: 0;
	margin-bottom: 1em;
	}




/*
	Tables
*/
table {
	border-collapse: collapse;
	border: 1px solid #333333;
	text-align: center;
	}
th {
	padding: 1em 2em;
	border: 1px solid #333333;

	color: #333333;
	font-weight: bold;
	vertical-align: middle;
	}
td {
	padding: 6px 12px;
	border: 1px solid #333333;

	color: #333333;
	vertical-align: top;
	}

thead, tfoot {
	display: none;
	}

tbody {
	}

col {
	}

colgroup {
	}

caption {
	display: none;
	}




/*
	Typography
*/
/* decorations */
.t-upper { text-transform: uppercase; }
.t-lower { text-transform: lowercase; }
.t-normal { font-weight: normal !important; font-style: normal !important;}
.t-b { font-weight: bold; }
.t-i { font-style: italic; }

/* aligns */
.t-tal, td.t-tal { text-align: left !important; }
.t-tac, td.t-tac { text-align: center !important; }
.t-tar, td.t-tar { text-align: right !important; }

.t-vat, td.t-vat { vertical-align: top; }
.t-vam, td.t-vam { vertical-align: middle; }
.t-vab, td.t-vab { vertical-align: bottom; }
.t-vas, td.t-vas { vertical-align: baseline; }

/* color */
.c-blue, a.c-blue, .c-blue a, .c-blue a:hover, a.c-blue:hover { color: #0051A3; }




/*
	Grids
*/
.x {
	position: relative;
	margin: 0 auto;
	width: 1020px;
	}
	.x-left {
		overflow: hidden;
		padding-left: 30px;
		}
	.x-right {
		float: right;
		width: 400px;
		padding-left: 30px;
		}

.x-fll { float: left; }
.x-flr { float: right; }

.x-cll { clear: left; }
.x-clr { clear: right; }
.x-clb { clear: both; }

.x-none {
	display: none;
	}
.x-overflow {
	overflow: hidden;
	}

.x-clear {
	background: none; 
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.x-col-2, .x-col-3, .x-col-4, .x-col-5 {
	display: inline;
	float: left;
}
.x-col-2 { width: 49%; }
.x-col-3 { width: 33%; }
.x-col-4 { width: 24%; }
.x-col-5 { width: 19%; }




/* margins */
.x-m-0 { margin: 0em !important; }
.x-m-h0 { margin-left: 0em; margin-right: 0em !important; }
.x-m-v0 { margin-top: 0em; margin-bottom: 0em !important; }
.x-m-t0 { margin-top: 0em !important; }
.x-m-r0 { margin-right: 0em !important; }
.x-m-b0 { margin-bottom: 0em !important; }
.x-m-l0 { margin-left: 0em !important; }

.x-m-1 { margin: 1em !important; }
.x-m-h1 { margin-left: 1em; margin-right: 1em !important; }
.x-m-v1 { margin-top: 1em; margin-bottom: 1em !important; }
.x-m-t1 { margin-top: 1em !important; }
.x-m-r1 { margin-right: 1em !important; }
.x-m-b1 { margin-bottom: 1em !important; }
.x-m-l1 { margin-left: 1em !important; }

.x-m-2 { margin: 2em !important; }
.x-m-h2 { margin-left: 2em; margin-right: 2em !important; }
.x-m-v2 { margin-top: 2em; margin-bottom: 2em !important; }
.x-m-t2 { margin-top: 2em !important; }
.x-m-r2 { margin-right: 2em !important; }
.x-m-b2 { margin-bottom: 2em !important; }
.x-m-l2 { margin-left: 2em !important; }

.x-m-3 { margin: 3em !important; }
.x-m-h3 { margin-left: 3em; margin-right: 3em !important; }
.x-m-v3 { margin-top: 3em; margin-bottom: 3em !important; }
.x-m-t3 { margin-top: 3em !important; }
.x-m-r3 { margin-right: 3em !important; }
.x-m-b3 { margin-bottom: 3em !important; }
.x-m-l3 { margin-left: 3em !important; }

.x-m-4 { margin: 4em !important; }
.x-m-h4 { margin-left: 4em; margin-right: 4em !important; }
.x-m-v4 { margin-top: 4em; margin-bottom: 4em !important; }
.x-m-t4 { margin-top: 4em !important; }
.x-m-r4 { margin-right: 4em !important; }
.x-m-b4 { margin-bottom: 4em !important; }
.x-m-l4 { margin-left: 4em !important; }

.x-m-5 { margin: 5em !important; }
.x-m-h5 { margin-left: 5em; margin-right: 5em !important; }
.x-m-v5 { margin-top: 5em; margin-bottom: 5em !important; }
.x-m-t5 { margin-top: 5em !important; }
.x-m-r5 { margin-right: 5em !important; }
.x-m-b5 { margin-bottom: 5em !important; }
.x-m-l5 { margin-left: 5em !important; }
