/* CSS Document */
html
{
	width:100%;
	height:100%;
	overflow: hidden;
}
body
{
	width:100%;
	height:100%;
	min-width:400px;
	margin:0;
	padding:0;
}


.font-arial {
  font-family: Arial, Helvetica, sans-serif;
}
.font-lucida {
  font-family: "Lucida Sans Unicode", "Lucida Grande", Lucida, sans-serif;
}
.font-tahoma {
  font-family: Tahoma, sans-serif;
}
.font-trebuchet {
  font-family: Trebuchet, "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.font-verdana {
  font-family: Verdana, sans-serif;
}
.font-georgia {
  font-family: Georgia, Times, serif;
}
.font-times {
  font-family: "Times New Roman", Times, serif;
}
.font-courier {
  font-family: "Courier New", Courier, monospace;
}

#outer_wrapper
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}



#awesome
{
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
}

/*Image groups with captions*/
.imageGroup
{
	width:100%;
	height: 100%;
	margin: 0 auto;
	position:absolute;
	/*
	important: specify which side the image is to stay aligned to on the individual elements 
	(text-align:right:right or text-align:right:left)
	*/
	text-align:right;	/*default:align to the right*/
}

.imageGroup img.bigAssPicture
{		
	position: absolute;
	/*important: specify which side the image is to stay locked to on the individual elements (right:0 or left:0)*/
	right: 0;	/*default:lock to the right*/
	width: 110%;
	height: auto;
}

/*Caption and Title - each are different*/
/*intro*/
.title
{
	position:absolute;
	top:12%;
	left:38%;
	width:24%;

	height:auto;
}

.title img
{
	width:100%;
	min-width: 200px;
	height:auto;
}

.caption
{
	/*
	position:absolute;
	top:45%;
	left:40%;
	
	width:20%;
	height:auto;
	*/
	font-style:italic;
	font-size:18px;
	//color:white;
	//text-shadow: 0 0 5px #222;
	margin-bottom:5px;
}

#login
{
	min-width: 240px;
	padding: 20px;
	background: #FFF;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 8px;
	box-shadow: 2px 2px 12px #444;
}

#login label
{
	position:absolute;
	padding: 8px 10px;
	font-size: 14px;
	color:#ccc;
}
#login_pwd
{
	display:inline;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-moz-box-shadow: 0 0 0 #222, inset 0 3px 3px #eee;
	-webkit-box-shadow: 0 0 0 #222, inset 0 3px 3px #EEE;
	box-shadow: 0 0 0 #222, inset 0 3px 3px #EEE;
	font-size: 14px;
	border: 1px solid #bfbfbf; 
	padding: 5px;
}

#login-button
{
	display:inline;
	font-size: 14px;
	padding: 6px 10px;
}

.msg-bad
{
	color: #bf3e3e;
	padding: 5px;
}
.msg-good
{
	color: #56ac26;
	padding: 5px;
	
}


#footer
{
	text-indent: 0;
	position: relative;
	top: -60px;
	z-index:101;
	text-align: center;
	color:#FFF;
	
	opacity: 0.72;
	filter: alpha(opacity = 72);
	
	transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
}
#footer:hover
{
	opacity: 0.90;
	filter: alpha(opacity = 90);
	
	transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
}
#footer a
{
	padding:10px;
	color:#97cce7;
}
