@charset "utf-8";
body {
	font: 100%/1.4 "Century Gothic", Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-position: center top;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	border: none;
	padding: 0;
}
h2 {
	color: #000;
	font-size: 1.5em;
	font-weight: bold;
	display: inline;
}
h3 {
	color: #333;
	font-size: 0.9em;
	font-weight: bold;
	display: inline;
}
h4 {
	color: #333;
	font-size: 0.9em;
	border: none;
	font-weight: normal;
	display: inline;
}
h5 {
	font-size: x-small;	
}

a img {
	border: none;
}

a:link {
	text-decoration: none;
	color: #e3e3e3;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    opacity:0.8;
}

a:visited {
	text-decoration: none;
	color: #e3e3e3;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	opacity:1;
}

p {
	font-size: small;
	margin-bottom : 5px;
	color: #e3e3e3;
	text-align: center;
}

.header {
	width: 100%;
	margin-bottom: 20px;
}

.logo {
	cursor: pointer;
	width: 40px;
	height: 40px;
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-top: 40%;
	margin-right: auto;
	margin-left: auto;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    opacity:0.6;
}

.logo:hover {
	opacity:1;
}

  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);



.container {
	clear: both;
	width: 240px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.navigation {
	height: 25px;
	border-radius: 3px;
	display: none;
}


/* NAV */

#nav {
	font-family: "Century Gothic", Arial;
	text-transform: lowercase;
	font-size: normal;
}
#nav ul {
	list-style: none;
	padding:0;
	margin:0;
}
#nav ul > li {
	float: left;
	padding: 0;
	position: relative;
}

#nav li a:link, #nav li a:visited{
	display: block;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-decoration: none;
	color: #333;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    opacity:0.5;
}
#nav li a.current, #nav li a.current:hover {
	color: #333;
    opacity:1;
	cursor: default;
}
#nav li a:hover, #nav li a:active{
	color: #333;
    opacity:1;
	border-bottom: none;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

