/*
 * Base structure
 */
 html,
body {
  height: 100%;
  background-color: #333;  
  margin:0;
  padding:0;
}
body {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

#wholecontent{
	min-height:100%;
	position:relative;
}

.maincont {	
}

#indexbg{
  position: fixed; 
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%;
  z-index:0;
}

#indexbg img{
	position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  height: 50%;
  width: auto;
  opacity:0.2;
}

#indexfore {
	position:relative;
	margin-top:15%;
}

#indexbtn{
	position:relative;
	z-index:999;
}

/*
* Cover page
*/
.pagebody{
	z-index:3;
	padding:10px;
	padding-bottom: 50px;
}

.cover-container{
	height:100%;
	text-align: center;
}

.cover-btn{
	vertical-align:bottom;
}

.navbar-inverse .navbar-nav > li > a.active {
  color: #FAFAFA;
  text-shadow: 0 0 0.2em #A9A9F5,0 0 0.2em #A9A9F5;
}


/*Header*/
#header{
	z-index : 3;
	padding:10px;	
	text-align: center;
}

/* Social Footer */
.footer-container{		
	position:absolute;
	bottom:0;
	background-color:#222;
	width:100%;
	height:50px;
}

#footer{
	position:relative;
}

.right-footer {
	font-size:8px;
	margin-right:25px;		
	position:absolute;
	right:0;
	top:21px;
}

.left-footer {
	vertical-align:center;
	text-align: center;	
}

footer a {
  color: #70726F;
  padding: 2px;
  transition: all .5s ease;
}

footer a:hover {
  color: white;
}

.social:hover {
     -webkit-transform: scale(0.9);
     -moz-transform: scale(0.9);
     -o-transform: scale(0.9);
 }
 
 .social {
     -webkit-transform: scale(0.7);
     /* Browser Variations: */
     
     -moz-transform: scale(0.7);
     -o-transform: scale(0.7);
     -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
     -o-transition-duration: 0.5s;
 }
 
 

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}

/* DATES (use HTML below)
<div class="date">
  <span class="day">30</span>
  <span class="month">Jun</span>
  <span class="year">2009</span>
</div>
*/
.date {
  position: relative;
  width: 70px;
  font-family: Georgia, serif;
  color: #999;
  margin: auto auto;
  z-index:1;
 }
 
.day, .month, .year {
  position: absolute;
  }
 
.day { 
  font-size: 30px;
  top: 10px;
  }
 
.month { 
  top: 0;
  left: 0;  
  font-size: 18px;
  }
 
.year { 
  top: 7px;
  right: 0;
  font-size: 20px;
  rotation: -90deg !important;
  /* ** Hacks ** */
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);  
  }