

html { 
  background:#FFF;
  height: 100%;
  margin: 0;
  padding: 0;
}

ol,ul {
	list-style:none;
}



body {
   display: -webkit-box;   /* OLD: Safari,  iOS, Android browser, older WebKit browsers.  */
   display: -moz-box;      /* OLD: Firefox (buggy) */ 
   display: -ms-flexbox;   /* MID: IE 10 */
   display: -webkit-flex;  /* NEW, Chrome 21+ */
   display: flex;          /* NEW: Opera 12.1, Firefox 22+ */

   -webkit-box-align: center; -moz-box-align: center; /* OLD… */
   -ms-flex-align: center; /* You know the drill now… */
   -webkit-align-items: center;
   align-items: center;

   -webkit-box-pack: center; -moz-box-pack: center; 
   -ms-flex-pack: center; 
   -webkit-justify-content: center;
   justify-content: center;

   margin: 0;
   padding: 0;
   height: 100%;
   width: 100% /* needed for Firefox */
   
   
   
} 

#banner {
		display: -webkit-box; 
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		
		-webkit-box-align: center; -moz-box-align: center;
		-ms-flex-align: center;
		-webkit-justify-content: center;
		justify-content: center;
		
		-webkit-box-pack: center; -moz-box-pack: center;
		-ms-flex-pack: center;
		-webkit-align-items: center;
		align-items: center;
		z-index: 10;
		background-color: :#ffffff;
		padding: 0 0rem;
		width: 100%;
		}

#banner img {
	width: 60%;
}

.shadow {
    -webkit-filter: drop-shadow( 0px 0px 10px #FFF );
            filter: drop-shadow( 0px 0px 10px #FFF ); /* Same syntax as box-shadow */
            
}


#cross {
  background: url(../images/background-cross.png) repeat left top fixed; 
  width:      100%;
  height:     100%; 
  opacity : 0.5;
  z-index:    0;
  top:        0; 
  left:       0; 
  position:   fixed; 
	
}

.topBar {
	width:100%;
	height:20px;
	background:#272C35;
	position: fixed;
	top:0;
	left:0;
	font-family: 'Mako', sans-serif;
	font-size: 0.5em;
	line-height: 1.1;
	text-align: right;
	color: #FFF;
}

.bottomBar {
	width:100%;
	height:20px;
	background:#272C35;
	position: fixed;
	bottom:0;
	left:0;
	font-family: 'Mako', sans-serif;
	font-size: 0.5em;
	line-height: 1.1;
	text-align: right;
	color: #FFF;
}

.topBar span.right, .bottomBar span.right  {
	float: right;
	padding-right: 10px;
}

.topBar span.right a, .bottomBar span.right a {
	color: #FFF;
}


/* Media Queries */
@media screen and (max-width: 320px) {

	body{
	width: 320px;
	}
	
	
	.shadow {
    -webkit-filter: drop-shadow( 0px 0px 5px #6c0015 );
            filter: drop-shadow( 0px 0px 5px #6c0015 ); /* Same syntax as box-shadow */
			}

	#banner img {
		width: 100%;
	}
	
	#topBar, #bottomBar {
		background:#FFF;
		}
	
	}

