@charset "utf-8";
/* CSS Document */
/*
body{
margin:0px;
padding:0px;
background-color:#131211;

}
*/
body {
	margin:0px;
	padding:0px;
	background-color:#131211;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	color:#7f7d78;
	font-size:14px;
	line-height:19px;
}
/*STYLES TO BE APPLIED TO DIVS, FROM BASE.CSS*/
.hide{ display: none; }

.left{ float: left; }
.right{ float: right; }

.clear{
	height: 1px;
	overflow: hidden;
	line-height: 1px;
	font-size: 1px;
	clear: both;
}


#header {
	padding-top:20px;
}
/*indentation for no displaying
*/
#logo h1, #logo small {
	margin:0px;
	display:block;/*merges divs into a single block*/
	text-indent:-9999px;
}
#logo {
	background-image:url(images/logo.png);
	background-repeat:no-repeat;
	width:194px;
	height:83px;
}
ul#menu {
	margin:0px; padding:0px;
	position:absolute;
	right:0px;
}
ul#menu li {
	display:inline;
	margin-left:12px;
}

ul#menu li a {
text-decoration:none;
color:#003366;/*#716d6a;*/
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
font-weight:bold;
text-transform:uppercase;

}
ul#menu li a:active, ul#menu li a:hover{
color:#FFFFCC/*#211e1e;*/
}


ul#photogallery  {
/*margin-left:5px;
*/
}

ul#photogallery li {
display:inline;

}
ul#photogallery li a {
margin-left:5px;
}
/*photogallery image borders style*/

.borderit img{
border: 1px solid #ccc;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
-moz-opacity: 0.6;

}

.borderit:hover img{
border: 1px solid navy;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-opacity: 1;

}

.borderit:hover{
color: red; /* irrelevant definition to overcome IE bug */
}


/*end photogallery styles*/



#main{
background: #c4c0be url(images/background_light_slice.jpg) repeat-x;
}
#main .container {
background-image: url(images/background_light.jpg);
background-repeat:no-repeat;
min-height:1000px;/* can be more*/
}



#footer{
background-image:url(images/background_footer.jpg);
	background-repeat:repeat-x;
	color:white;
	padding:40px;

}
.container{
width:950px;
margin:0 auto;
/*border:1px solid red;*/
position:relative;/*we can now use absolute positioning inside and set right:0px for the menu and it will be aligned to the right.*/

}
/* Fix up IE6 PNG Support */
img, #logo { behavior: url(scripts/iepngfix.htc); }
/*
BLOCK STYLES*/
/*this is for the image banner 
*/
.block{
	border: 1px solid #a3a09e;
	background-color:#ffffff;
	margin-bottom:20px;
	
	}
	
.block_inside {
	display:block; /*merges the current div into the including one div*/
	border:1px solid #ffffff;
	background: #ffffff url(images/background_block_slice.jpg) repeat-x;
	padding:20px;
	/*We have overflow:auto because we are going to have two floated elements inside. Then inside we have an .image_block class which gives our image a double border (one on the <div> and one on the <img> itself) and which is floated left with our main .text_block also floated left to form a mini columned layout.
*/
overflow:auto;
}

.block_inside_10px {
	display:block; /*merges the current div into the including one div*/
	border:1px solid #ffffff;
	background: #ffffff url(images/background_block_slice.jpg) repeat-x;
	padding:10px;
	/*We have overflow:auto because we are going to have two floated elements inside. Then inside we have an .image_block class which gives our image a double border (one on the <div> and one on the <img> itself) and which is floated left with our main .text_block also floated left to form a mini columned layout.
*/
overflow:auto;
}
.image_block {
	border:1px solid #b5b5b5;
	background-color:#d2d2d2;
	padding:5px;
	float:left;
}
.image_block img {
	border:1px solid #b5b5b5;
}
.text_block {
	float:left;
	width:255px; /* 270*/
	margin-left:10px;
	/*text-align:justify;*/
}	



/* 
	Text-Styles   
*/

h2 {
	margin:0px 0px 20px 0px;
	font-size:30px;
	font-family:Helvetica, Arial, Sans-serif;
	color:#000000;
	line-height:24px;
}
small {
	color:#595856;
	font-weight:bold;
	font-size:11px;
	display:block;
	margin-bottom:15px;
}
.content_hidden_text{

}
a {
	color:#007de2;
	text-decoration:none;
}
a:hover { text-decoration:underline; }
p { margin: 0px 0px 15px 0px; }

a.button {
	background:#32312f url(images/button_bg.jpg) repeat-x;
	padding:5px 10px 5px 10px;
	color: #ffffff;
	text-decoration: none;
	border:1px solid #32312f;
	text-transform:uppercase;
	font-size:9px;
	line-height:25px;	
}
a.button:hover {
	background:#007de2 url(images/button_bg_o.jpg) repeat-x;
	border-color:#007de2;
}

