/* basic normalisation */
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
html, button, input, select, textarea { font-family: sans-serif; color: #333; }
body { margin: 0; font-size: 1em; line-height: 1.4; }
h1, h2, h3, h4, h5, h6, p { margin:0; padding:0; list-style:none; }
img { border:0; }
table { border-collapse: collapse; border-spacing: 0; }
td, th { vertical-align: top; }
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

.access { position:absolute; top:0; left:0; width:0; height:0; overflow:hidden; }
.hide { display:none; }
.l { float:left; }
.r { float:right; }
.abs { position:absolute; }
.rel { position:relative; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
/* clearfix */
.clear:after { content: " "; display: block; height: 0; font-size: 0; clear: both; visibility: hidden; }
/* for IE6 use : */
.clear { zoom: 1; }
/* html5 reset */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

/* end normalisation */

/* apply a natural box layout model to all elements. IE8+. http://paulirish.com/2012/box-sizing-border-box-ftw/ */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }


/* start site styles */
body { 
	font-family: Verdana,Helvetica,Sans-Serif;
	font-size: 11px;
	color:#fff;
	background: url(../images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/bg.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/bg.jpg', sizingMethod='scale')";
	overflow-y:scroll;
}
a { font-family: Verdana,Helvetica,Sans-Serif; text-decoration:none; color:#fff; font-weight:normal; }
h1, h2, p { margin-bottom:12px; }

h1 { 
	font-family: Arial,Helvetica,Sans-Serif;
	font-size:20px;
	font-weight:normal;
	line-height:24px;
	letter-spacing:2px;
	text-indent: -0.5em;
	margin-left:0.5em;
}

.quote { font-family: Arial,Helvetica,Sans-Serif; margin:-18px 0 15px; text-align:right; font-size:10px; }

h2 {
	font-family: Arial,Helvetica,Sans-Serif;
	font-size:12px;
	font-weight:bold;
}

#wrapper {
	margin-top:100px;
	width:800px;
}


#content {	
	background:#fff;
	min-height:470px;
	margin-left:180px;
	padding:15px;
	line-height:1.7em;
	letter-spacing:0.08em;

}
.content_inner {
	border:2px dashed #fff;
	padding:45px;
	min-height:470px;
}

#content.page1 {
	background:#6fb353;
}

#content.page2 {
	background:#ecb731;
}

#content.page3 {
	background:#295ba7;
}

#content.page4 {
	background:#ca0088;
}


#nav {
	/*margin:15px 0 80px 0;
	padding-right:110px;*/
	margin-top:30px;
	text-align:center;
	text-transform:uppercase;
	float:left;
	width:180px;
}
#nav ul, #nav li { margin:0; padding:0; list-style:none; }
#nav ul li { margin-top:15px;  }

#nav li a {
	font-weight:bold;
	font-size:13px;
	color:#666;
	display:block;
	background:#fff;
	padding:5px;
}

li#nav1 a { 
	color:#6fb353; 
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;				
}
li#nav1 a:hover, li#nav1 a.active {
	background:#6fb353;
	color:#fff;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;			
}

li#nav2 a { 
	color:#ecb731;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;				
}
li#nav2 a:hover, li#nav2 a.active {
	background:#ecb731;
	color:#fff;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;			
}

li#nav3 a { 
	color:#295ba7;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;				
}
li#nav3 a:hover, li#nav3 a.active {
	background:#295ba7;
	color:#fff;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;			
}

li#nav4 a { 
	color:#ca0088;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;				
}
li#nav4 a:hover, li#nav4 a.active {
	background:#ca0088;
	color:#fff;
	-webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;			
}

.langnav { padding-top:10px; text-align:center; }

.pageimg {
	margin-left:30px;
}

.contactimg {
	margin-left:30px;
	width:180px;
	font-size:10px;
	line-height:1.2em;
	letter-spacing:0;
}

/* css fade in, if supported */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-o-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.cssanimations #wrapper {
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	-o-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	-o-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	-o-animation-duration:0.5s;
	animation-duration:0.5s;
}