/*
	Basic
*/
/* reset */
* {
	text-decoration: none;
	font-size: 1em;
	vertical-align: baseline;
	outline: none;
	margin: 0;
	padding: 0;
	}

/* deprecated html */
applet, basefont, center, dir, frame, frameset, isindex, menu, nobr, noframes, strike, s, u {
	display: none;
	}
a, img, a img, object, embed {
	outline: 0;
	border: 0;
	}


/* document */
html, body {
	height: 100%;
	}
body {
	color: #000;
	font: 14px/1.4 Arial, sans-serif;
	background: #fff;
	}

/* links */
a {
	color: #676767;
	text-decoration: underline;
	}
a:hover {
	color: #676767;
	text-decoration: none;
	}
a:visited {
	color: #676767;
	}

/* images */
img {
	border: none;
	margin: 0;
	vertical-align: top;
	}
img.border1 {
	border: 3px solid #dadada;
	}
	#content p img {
		margin: 0 10px 10px 0;
		}


/*
	Base semantics
*/

p, h1, h2, h3, h4, h5, h6, blockquote, pre, hr, address, ul, ol, dl, table {
	margin-bottom: 10px;
	}

/* blocks */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	}
h1 {
	font-size: 16px;
	}
h2 {
	font-size: 14px;
	}
h3 {
	}
h4 {
	} 
h5 {
	font-size: 1em;
	}
h6 {
	font-size: 1em;
	font-weight: normal;
	margin: 0;
	}
pre {
	background: #f5f1e8;
	padding: 15px;
	}
hr {
	margin: 10px 0;
	border: none;
	border-bottom: 1px solid #000;
	height: 0;
}

/* quotes */
blockquote, cite, q {
	background: #f5f1e8;
	color: #777;
	}
blockquote {
	padding: 15px 15px 5px 7px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-right: 100px;
	}
	blockquote p {
		margin-bottom: 10px;
		}
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;
	}
big {
	font-size: 1.2em;
	line-height: inherit;
	}
small {
	font-size: .9em;
	line-height: inherit;
	}
acronym, abbr, dfn {
	border-bottom: 1px dotted #414141;
	cursor: help;
	}
acronym, abbr {
	text-transform: uppercase;
	}
ins {
	color: #666;
	font-style: italic;
	}
del {
	text-decoration: line-through;
	color: #666;
	}
bdo, kbd {
	color: #666;
	font-family: "Courier New", Courier, monospace;
	}




/*
	Forms
*/
form {
	color: #834a22;
	font-size: 12px;
	}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
	outline: 1px solid #f5f1e8;
	}
input, textarea, select {
	color: #834a22;
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: top;
	margin-right: 5px;
	margin-bottom: 5px;
	}
input[type=text], input[type=password] {
	border: 1px solid #b3b3b3;
	padding: 1px 5px;
	width: 120px;
	}
input[type=checkbox], input[type=radio] {
	position: relative;
	top: 2px;
	padding: 0;
	//top: -3px;
	//margin: 0 -3px;
	}
input[type=submit], input[type=reset], input[type=button] {
	display: none;
	}
input[type=file] {
	}
textarea {
	width: 300px;
	height: 110px;
	padding: 1px 5px;
	resize: none;
	border: 1px solid #b3b3b3;
	}
select {
	padding: 1px 0 1px 5px;
	border: 1px solid #b3b3b3;
	}
button {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: lowercase;
	cursor: pointer;
	padding: 0 10px;
	background: #6eb840;
	border: none;
	margin-right: 5px;
	height: 19px;
	line-height: 1;
	}
	button:hover {
		background: #7bce48;
		}
legend {
	display: none;
	}
	form dt {
		width: 140px;
		padding: 1px 0;
		font-weight: normal;
		line-height: 17px;
		float: left;
		clear: left;
		margin-bottom: 15px;
		}
	form dd {
		margin-left: 150px;
		margin-bottom: 10px;
		}
	form ins {
		color: #ff000b;
		border: 1px solid #ff000b;
		padding: 0 5px;
		line-height: 17px;
		display: inline-block;
		vertical-align: top;
		margin-bottom: 5px;
		}
	form dt em {
		color: #ff000b;
		margin: 0 2px;
		cursor: help;
		}




/*
	Lists
*/
ul {
	list-style-position: outside;
	list-style-type: none;
	}
	ul li {
		padding-left: 15px;
		background: url(/img/_/ico.bullet.png) no-repeat 0 .6em;
		margin-bottom: 5px;
		}
		li ul {
			margin-top: 5px;
			margin-bottom: 5px;
			}

ol {
	margin-left: 25px;
	list-style-position: outside;
	list-style-type: decimal;
	}
	ol li {
		padding-left: 0;
		background: none;
		margin-bottom: 5px;
		}
		li ol {
			list-style-type: lower-alpha;
			margin-top: 5px;
			margin-bottom: 5px;
			}

ol li ul li {
	padding-left: 15px;
	background: url(/img/_/ico.bullet.png) no-repeat 0 .6em;
	margin-bottom: 5px;
	}
	ol li ul li ol li {
		padding-left: 0;
		background: none;
		margin-bottom: 5px;
		}
		ol li ul li ol li ul li {
			padding-left: 15px;
			background: url(/img/_/ico.bullet.png) no-repeat 0 .6em;
			margin-bottom: 5px;
			}
			ol li ul li ol li ul li ol li {
				padding-left: 0;
				background: none;
				margin-bottom: 5px;
				}

dl {
	}

dt {
	font-weight: bold;
	}

dd {
	margin-bottom: 10px;
	}




/*
	Tables
*/
table {
	border-collapse: collapse;
	border: 1px solid #c9c9c9;
	}
th {
	padding: 2px 12px;
	font-weight: bold;
	text-align: left;
	border: 1px solid #c9c9c9;
	background: #e6e6e6;
	}
td {
	padding: 6px 12px;
	vertical-align: top;
	border: 1px solid #c9c9c9;
	}




/*
	Typography
*/
/* decorations */
.t-upper { text-transform: uppercase; }
.t-lower { text-transform: lowercase; }
.t-normal { font-weight: normal; font-style: normal;}
.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; }

/* font-sizes */
.t-10 { font-size: 10px !important; }
.t-11 { font-size: 11px !important; }
.t-12 { font-size: 12px !important; }
.t-13 { font-size: 13px !important; }
.t-14 { font-size: 14px !important; }
.t-15 { font-size: 15px !important; }
.t-16 { font-size: 16px !important; }
.t-17 { font-size: 17px !important; }
.t-18 { font-size: 18px !important; }
.t-19 { font-size: 19px !important; }
.t-20 { font-size: 20px !important; }
.t-22 { font-size: 22px !important; }
.t-24 { font-size: 24px !important; }
.t-26 { font-size: 26px !important; }
.t-28 { font-size: 28px !important; }

/* color */
.c-black { color: #000000; }
.c-white { color: #ffffff; }




/*
	Grid Classes
*/
.x-fll { float: left; }
.x-flr { float: right; }

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

.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;
}

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

/* margins */
.m-0 { margin: 0px !important; }
.m-t-0 { margin-top: 0px !important; }
.m-r-0 { margin-right: 0px !important; }
.m-b-0 { margin-bottom: 0px !important; }
.m-l-0 { margin-left: 0px !important; }

.m-5 { margin: 5px !important; }
.m-t-5 { margin-top: 5px !important; }
.m-r-5 { margin-right: 5px !important; }
.m-b-5 { margin-bottom: 5px !important; }
.m-l-5 { margin-left: 5px !important; }

.m-10 { margin: 10px !important; }
.m-t-10 { margin-top: 10px !important; }
.m-r-10 { margin-right: 10px !important; }
.m-b-10 { margin-bottom: 10px !important; }
.m-l-10 { margin-left: 10px !important; }

.m-15 { margin: 15px !important; }
.m-t-15 { margin-top: 15px !important; }
.m-r-15 { margin-right: 15px !important; }
.m-b-15 { margin-bottom: 15px !important; }
.m-l-15 { margin-left: 15px !important; }

.m-20 { margin: 20px !important; }
.m-t-20 { margin-top: 20px !important; }
.m-r-20 { margin-right: 20px !important; }
.m-b-20 { margin-bottom: 20px !important; }
.m-l-20 { margin-left: 20px !important; }

.m-25 { margin: 25px !important; }
.m-t-25 { margin-top: 25px !important; }
.m-r-25 { margin-right: 25px !important; }
.m-b-25 { margin-bottom: 25px !important; }
.m-l-25 { margin-left: 25px !important; }

.m-30 { margin: 30px !important; }
.m-t-30 { margin-top: 30px !important; }
.m-r-30 { margin-right: 30px !important; }
.m-b-30 { margin-bottom: 30px !important; }
.m-l-30 { margin-left: 30px !important; }

.m-35 { margin: 35px !important; }
.m-t-35 { margin-top: 35px !important; }
.m-r-35 { margin-right: 35px !important; }
.m-b-35 { margin-bottom: 35px !important; }
.m-l-35 { margin-left: 35px !important; }

.m-40 { margin: 40px !important; }
.m-t-40 { margin-top: 40px !important; }
.m-r-40 { margin-right: 40px !important; }
.m-b-40 { margin-bottom: 40px !important; }
.m-l-40 { margin-left: 40px !important; }

.m-50 { margin: 50px !important; }
.m-t-50 { margin-top: 50px !important; }
.m-r-50 { margin-right: 50px !important; }
.m-b-50 { margin-bottom: 50px !important; }
.m-l-50 { margin-left: 50px !important; }




/*
	Sys classes
*/
.sys-hidden {
	display: none;
	}
