@charset "utf-8";
/* CSS Document */


*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body,td,th {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #fff;
}

body {
	background:url(_img/_body_bg_2.jpg);
	background-color:#333;
	background-repeat: repeat-y;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	text-align:left;
}

nav a {
	position: relative;
	display: inline-block;
	margin: 15px 10px;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 14px;
}

nav a:hover,
nav a:focus {
	outline: none;
	color:#09F;
}

/* menu fx */
.cl-effect-15 a {
	color: rgba(51,204,255,0.7);
	font-weight: 700;
	text-shadow: none;
}

.cl-effect-15 a::before {
	color: #fff;
	content: attr(data-hover);
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.cl-effect-15 a:hover::before,
.cl-effect-15 a:focus::before {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
}

/* end menu fx */

/*white bg links*/
a:link {
	color: #09F;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #09F;
}
a:hover {
	text-decoration: none;
	color: #999;
}
a:active {
	text-decoration: none;
	color: #09F;
}

/*grey bg links*/
.grey_bg a:link {
	color: #FFF;
	text-decoration: none;
}
.grey_bg a:visited {
	text-decoration: none;
	color: #FFF;
}
.grey_bg a:hover {
	text-decoration: none;
	color: #09F;
}
.grey_bg a:active {
	text-decoration: none;
	color: #FFF;
}

.top_grey {
	z-index:2;
	background-color:#444;
	position: fixed;
	width: 100%;
	height: 50px;
	top: 0px;
	left: 0px;	
	box-shadow: 0px 5px 10px #222;
}

.logos {
	z-index: 1;
	display: inline-block;
	position: inherit;
	left: 64%;
	top: 7px;
}

.lang {
	z-index: 1;
	display: inline-block;
	position: inherit;
	left: 57%;
	top: 17px;
}

.lang img {
	border: 2px solid #eee;
	opacity:0.7;
	transition: all 0.2s ease-in;
}

.lang img:hover {
	border: 2px solid #eee;
	opacity:1;
}

.wrapper {
	position:absolute;
	left:50%;
	margin-left:-450px;
}
	
.header {
	z-index:1;
	opacity:1;
	background-repeat:no-repeat;
	position: absolute;
	width: 900px;
	height: 250px;
	top: 50px;
	box-shadow: 0px 5px 20px #222;
	transition:all 0.3s ease-in;
}

.header:hover {
	opacity:0.8;
}

.menus {
	z-index:3;
	background-color:#444;
	position: absolute;
	width: 100%;
	height: 50px;
	top: 300px;
	box-shadow: 0px -5px 10px #222; 
}

.links_div {
	z-index: 1;
	display: block;
	position: inherit;
	left: 34%;
	top: 0px;
}

.content {
	z-index: 1;
	padding: 20px;
	display: inline-block;
	display: table;
	background-color: rgba(255,255,255,0.9);
	color: #000;
	position: absolute;
	width: 900px;
	min-height: 585px;
	height: auto;
	top: 349px;
	overflow: auto;
	box-shadow: 0px 5px 20px #222;
	left: 2px;
}
	
.footer {
	z-index:4;
	display: block;
	position: fixed;
	background-color:#444;
	color: #FFF;
	padding-top:3px;
	width: 100%;
	height: 45px;
	bottom: 0px;
	left: 0px;
	text-align:center;
	box-shadow: 0px -5px 10px #222;
}


/* -- logo fx -- */
.logo {
	z-index:10;
	display: block;
	position: absolute;
	left: -165px;
	top: 25px;
	border: 3px solid #fff;
	opacity:1;
	box-shadow: 2px 3px 20px #000;
	-ms-transform: rotate(-5deg); /* IE 9 */
    -webkit-transform: rotate(-5deg); /* Safari */
    transform: rotate(-5deg); /* */	
	-moz-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.logo:hover {
	opacity:0.9;
	transform: rotate(-9deg);
}

/* -- end logo fx -- */


.img {
	margin:5px;
	box-shadow: 2px 3px 20px #000;
	padding:5px;
	border:3px #fff;
	opacity:0.6;
	z-index:1;
	-ms-transition:all 0.2s ease-in;
	-webkit-transition:all 0.2s ease-in;
	-moz-transition:all 0.2s ease-in;
	transition:all 0.2s ease-in;
	-ms-transform: rotate(0deg);  /* IE 9 */
    -webkit-transform: rotate(0deg);  /*Safari */
	-moz-transform: rotate(0deg);  /**/
    transform: rotate(0deg);  /**/
}

.img:hover {
	-ms-transform: rotate(-8deg);  /* IE 9 */
    -webkit-transform: rotate(-8deg);  /*Safari */
	-moz-transform: rotate(-8deg);  /**/
    transform: rotate(-8deg);  /**/
	opacity:1;
	border:3px #666;
	
}

.form input {width:290px; height:20px; color:#000000; font-size:14px;}
.form textarea {width:290px; height:90px; color:#000000; font-size:16px;}

.aria24_333Bold {
color:#333;
font-family:Arial;
font-size:24px;
}

.aria16BlkItalic {
color:#000;
font-family:Arial;
font-size:16px;
font-style:italic;
}


/*UL*/

ul.enlarge{
list-style-type:none; /*remove the bullet point*/
margin-left:-40px;
float:right;
}
ul.enlarge li{
display:inline-block; /*places the images in a line*/
position: relative;
z-index:4; /*resets the stack order of the list items - later we'll increase this*/
margin:1px 5px 0px 0px;
}
ul.enlarge img{
background-color:#fff;
padding: 6px;
-webkit-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
-moz-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
box-shadow: 0 0 6px rgba(132, 132, 132, .75);
-webkit-border-radius: 4px; 
-moz-border-radius: 4px; 
border-radius: 4px; 
}
ul.enlarge span{
position:absolute;
left: -9999px;
background-color:#fff;
padding: 10px;
font-family: 'Droid Sans', sans-serif;
font-size:32px;
text-align: center; 
color: #666; 
-webkit-box-shadow: 0 0 20px rgba(0,0,0, .75));
-moz-box-shadow: 0 0 20px rgba(0,0,0, .75);
box-shadow: 0 0 20px rgba(0,0,0, .75);
-webkit-border-radius: 8px; 
-moz-border-radius: 8px; 
border-radius:8px;
}
ul.enlarge li:hover{
z-index:5;
cursor:pointer;
}
ul.enlarge span img{
padding:2px;
background:#ccc;
}
ul.enlarge li:hover span{ 
top: -300px; /*the distance from the bottom of the thumbnail to the top of the popup image*/
left: -20px; /*distance from the left of the thumbnail to the left of the popup image*/
}
ul.enlarge li:hover:nth-child(2) span{
left: -100px; 
}
ul.enlarge li:hover:nth-child(3) span{
left: -200px; 
}
/**IE Hacks - see http://css3pie.com/ for more info on how to use CS3Pie and to download the latest version**/
ul.enlarge img, ul.enlarge span{
behavior: url(pie/PIE.htc); 
}
