/*******************ABSTRACT********************/

/**
 * list of all xhtml tags
 * simply comment unnecessary
 */
html, head, body, div, span,
/*DOCTYPE, title, link, meta, style,*/
p, h1, h2, h3, h4, h5, h6, strong, em, abbr, acronym, address, bdo, blockquote, cite, q, code, ins, del, dfn, kbd, pre, samp, var, br,
a, base,
img, area, map, object, param,
ul, ol, li, dl, dt, dd,
table, tr, td, th, tbody, thead, tfoot, col, colgroup, caption,
form, /*input, textarea, select, option, optgroup, button,*/ label, fieldset, legend,
b, i, tt, sub, sup, big, small, hr
{
	margin: 0;
	padding: 0;
}
input, textarea, select, option, optgroup, button {
	margin: 0;
}
*, body {
	scrollbar-3dlight-color: #003851;
	scrollbar-arrow-color: #003851;
	scrollbar-darkshadow-color: #003851;
	scrollbar-face-color: #F2FDFF;
	scrollbar-highlight-color: #003851;
	scrollbar-shadow-color: #003851;
	scrollbar-track-color: #DCEFF2;
}
/**
 * png as background in IE
 *
 *	* html ... {
 *		background: none;
 *		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=[image_name].png, sizingMethod=[crop|scale|image]);
 *	}
 *
 */
html {
	border: none;
}
body {
	background: #DCEFF2;
	color: black;
	font: 8pt Tahoma, Geneva, Kalimati, sans-serif;
	position: relative;
}
/**
 * :hover for any element in IE 
 */
* html body {
	behavior: url(css/csshover.htc);
}
img {
	border: none;
}
input,
select,
textarea {
    padding: 0;
	vertical-align: middle;
	font: 8pt Tahoma, Geneva, Kalimati, sans-serif;
	border: 1px solid #2C355F;
	background: #D8F1FF;
	color: #000080;
}
input.txt,
textarea.txt {
    width: 225px;
}
textarea.txt {
    height: 150px;
}
input.btn {
    font-size: 7pt;
    color: black;
    padding: 2px 10px 2px 10px;
    //padding: 2px 5px;
    background: #5b8092 url("../img/btn.gif") left top repeat-x;
    border: 1px outset #719DB5;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
input.btn.simple {
    font-size: 10px;
    color: #004080;
    padding: 0 5px;
    //padding: 0;
    background: #DCEFF2;
    border-color: #93B6BB;
    text-transform: lowercase;
}
table {
	border-collapse: collapse;
	empty-cells: show;
}
table td {
	vertical-align: top;
}
table.table {
    margin: 0 auto;
    background: #DDEDF1;
}
table.table td,
table.table th {
    vertical-align: middle;
    padding: 3px 9px;
    border: 1px solid #668296;
}
table.table th {
    white-space: nowrap;
    text-align: center;
    background: #bad3d8 url(../img/table_th.gif) left top repeat-x;
}
table.table .row1 td {
    background: #DDEDF1;
}
table.table .row2 td {
    background: #C6E3F0;
}
table.table .row3 td {
    background: #ACD4EB;
    font-weight: bold;
}
table.table td.row1 {
    background: #DDEDF1;
}
table.table td.row2 {
    background: #C6E3F0;
}
table.table td.row3 {
    background: #ACD4EB;
    font-weight: bold;
}
table.table.top td,
table.table.top th {
    vertical-align: top;
}
a {
    font-weight: bold;
	text-decoration: none;
}
a:link, a:visited, a:hover, a:active  {
	color: #004080;
}
a:hover {
    color: #003851;
}
/**
 * .png in IE 
 */
* html .png {
	behavior: url(css/png.htc);
}
/**
 * .png as background in IE (background-image need to be written in HTML, not CSS) 
 */
/*
* html .pngback {
	background-image: none !important;
	behavior: url(css/pngback.htc);
}
*/
.full {
	width: 100%;
}
.clear {
	clear: both;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.clear {
	height: 0;
}
.hidden {
    display: none;
}
.error {
    color: #F00 !important;
    font-weight: bold;
}
.disabled {
    color: #999;
}
.center {
    text-align: center;
}
ul.ul {
    padding: 0 0 0 12px;
    list-style-image: url(../img/bullet.gif);
    list-style-type: disc;
}
* html ul.ul {
    padding: 0 0 0 15px;
}
ol.ol {
    padding: 0 0 0 25px;
}
* html ol.ol {
    padding-left: 30px;
}
h1 {
    text-transform: uppercase;
    font: bold 11pt "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #003851;
    margin-bottom: 10px;
}
h2 {
    color: #003851;
    font-size: 10pt;
    font-style: italic;
    margin-bottom: 10px;
}
h3 {
    color: #003851;
    font-size: 9pt;
}
h4 {
	font: bold italic 11pt "Times New Roman", Times, FreeSerif, serif;
	color: #466B77;
}
h5 {
    color: #003851;
    font-size: 8pt;
}
.t, .b {
    background-repeat: repeat-x;
}
.l, .r {
    background-repeat: repeat-y;
}
.lt, .rt, .rb, .lb {
	background-repeat: no-repeat;
}
.lt, .l, .t {
	background-position: left top;
}
.rt {
	background-position: right top;
}
.rb, .r, .b {
	background-position: right bottom;
}
.lb {
	background-position: left bottom;
}

/*******************LAYOUT********************/

.wrapper {
    float: left;
    width: 100%;
}
.content {
    margin: 0 0 0 170px;
}
.leftBlock {
    float: left;
    width: 170px;
    margin: 0 0 0 -100%;
    position: relative;
}
