/* @override http://localhost:8888/style.css */

/*****Generic Classes*****/  
html {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
body {
	width: 100%;
	color: #fff;
	background-color: #005c78;
	position: relative;
	height: 100%;
	padding: 0;
	margin: 0;
	font: italic 11px "Times New Roman", Georgia, Times, serif;
	list-style: none;
}
div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,  
pre, form, fieldset, table, th, td, tbody, img {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	font-weight: normal;
}

/*****Basic Layout*****/

#wrapper {
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
	margin-right: auto;
	margin-left: auto;
}

#content {
	display: table;
	position: relative;
	padding: 20px;
	text-align: center;
	border: 9px solid #fff;
	width: 80%;
	height: 80%;
	margin: 7% auto auto;
}

#content a.middle {
	background: url(/images/line.png) no-repeat center center;
	min-height: 10em;
	font-size: 6em;
    display: table-cell;
    vertical-align: middle;
	line-height: 60px;
	text-decoration: none;
	color: #fff;
}

img {
	width: 100%;
	height: auto;
	background-repeat: no-repeat;
}


/* iPhone 5 portrait */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : portrait) { 

#content {
	margin-top: 60px;
}

}

/* iPhone 5 Landscape*/
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) { 

#content {
	margin-top: 40px;
}

}

/* iPad Portrait*/

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) { 


}

/* iPad Landscape*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) { 


}