@charset "utf-8";
/* CSS Document */

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-image: url(Images/bckgr.jpg);
	background-repeat: repeat-x;
	background-color: #FFF;
	font-size: 100.01%;
}
img {
	padding-top: 4px;
	padding-bottom: 4px;
}

/*MAIN CONTAINER*/
#container {
	width: 980px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-right-width: 3px;
	border-left-width: 3px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #E8E8EA;
	border-left-color: #E8E8EA;
	background-color: #FFF;
} 

/*Header*/
#header {
	padding: 0;
	background-image: url(Images/header_300_170.jpg);
	background-repeat: no-repeat;
	height: 190px;
	background-color: #FFF;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/*footer*/
#footer {
	padding: 0;
	background-color: #999;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFF;
	text-align: center;
	z-index: 2;
}

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* Menu Left column */
#menu {
	float: left; /* since this element is floated, a width must be given */
	width: 300px;
	min-height: 350px;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 20px;
	background-image: url(Images/menu_bckgr_site.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

/*  MENU 1, level 1, normal state (NO), level 1, active state (ACT) */
#menu DIV.menu1-level1-no, #menu DIV.menu1-level1-act {
	font-size: 16px;
	padding-left: 30px;
	font-weight: bold;
	line-height: 22px;
	margin-top: 5px;
	margin-bottom: 7px;
	text-transform: lowercase;
	font-family: Tahoma, Geneva, sans-serif;
	background-image: url(Images/bul_gr.gif);
	background-repeat: no-repeat;
	background-position: 18px;
}

#menu DIV.menu1-level1-act {
	background-image: url(Images/bul_red.gif);
	background-repeat: no-repeat;
	background-position: 18px;
}

#menu DIV.menu1-level1-no A {
	color: #666;
	text-decoration: none;
}

#menu DIV.menu1-level1-no A:hover {
	color: #9c1724;
	text-decoration: none;
}

/*  MENU 1, level 1, active state (ACT)-LINK */
#menu DIV.menu1-level1-act A {
	color: #9c1724;
	text-decoration: none;
}

/*  MENU 1, level 2, normal state (NO), level 2, active state (ACT */
#menu DIV.menu1-level2-no, #menu DIV.menu1-level2-act {
	font-size: 12px;
	line-height: 14px;
	padding-left:80px;
	padding-bottom: 5px;
	font-family: Tahoma, Geneva, sans-serif;
	background-image: url(Images/bul_gr_sm.gif);
	background-repeat: no-repeat;
	background-position: 68px 5px;
}

#menu DIV.menu1-level2-act {
    background-image: url(Images/bul_red_sm.gif);
	background-repeat: no-repeat;
	background-position: 68px 5px;	
}

#menu DIV.menu1-level2-no A {
	color: #666;
	text-decoration: none;
	font-weight: bold;
}

#menu DIV.menu1-level2-no A:hover {
	color: #903;
	text-decoration: none;
}

/*  MENU 1, level 2, active state (ACT) */

#menu DIV.menu1-level2-act A {
	color: #903;
	text-decoration: none;
	font-weight: bold;
}

/*Main Content*/

#mainContent {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #666;
	text-align: justify;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 320px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}

#mainContent h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	color: #903;
	line-height: 30px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	text-indent: 20px;
}

#mainContent h2 {
	margin: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #005250;
	text-align: center;
	line-height: 24px;
	font-weight: bold;
	padding: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#mainContent ul {
	text-indent: 10px;
	font-style: italic;
	list-style-type: square;
}

#mainContent A {
	font-style: italic;
	color: #666;
}

#mainContent A:hover {
	color: #333;
}

/*Navigation Top*/
#topMenu {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	float: right;
	margin-top: 15px;
}

#topMenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	clear: both;
}

#topMenu li {
	list-style-type: none;
	display: inline;	
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #999;
}

#topMenu a {
	padding-right: 4px;
	padding-left: 4px;
	text-decoration: none;
	text-transform: lowercase;
	color: #666;
}

#topMenu a:hover {
	color: #CCC;
}


#topMenu li.currentPage, #topMenu li.currentPage A  {
	color: #484848;
}

#topMenu li.last, #topMenu li.last A {
	border-style: none;
	padding-right: 3px;
}

/*Lang Menu*/

#langmenu {
	float: right;
	clear: right;
	text-align: right;
	margin-top: 132px;
}



#langmenu IMG, IMG a {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 2px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#langmenu a:hover {
	text-decoration: none;
	color: #CCC;
}

/*Line*/

#Line {
	background-image: url(Images/strip.jpg);
	background-repeat: no-repeat;
	height: 4px;
}

/*Subpages Classes*/

.smallGray {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #5F5F5F;	
}

/*Mailform Classes*/

label{
	font-weight: bold;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	width: 150px;
	color: #666;
}

SELECT {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: #000000;
  background-color: #EDEFF1;
  border: 0px solid #CCCCCC;
}

TEXTAREA {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	border: 1px solid #666666;
	color: #666;
	font-weight : normal;
}

INPUT {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	border: 1px solid #666666;
}

input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
}

input[type="submit"]{ /*width of text boxes. IE6 does not understand this attribute*/
	width: 130px;
	color: #FFF;
	background-color: #666;
}

BUTTON {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	background-color: #055654;
	border: 1px solid #EDEFF1;
}

.csc-mailform {
	width: 450px;
	border: 1px solid #CCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	padding-left: 36px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.csc-mailform-field {
  margin-bottom: 6px;
  line-height: 18px;
}
