@charset "UTF-8";
/* CSS Document */

/* Navigation */

.nav {
	position: fixed;
	background : #1B75BB;
	top: 0px;
	width : 1237px;
	height : 33px;
	text-align: center;
	border: none;
	margin-left: auto ;
  	margin-right: auto ;
	z-index: 25;
}
.nav a {
	border-radius: 16px;
	color: #fff;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	font-size: 0.9em;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 4px;
	margin-left: 2px;
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 7px;
	padding-left: 10px;
}
.nav a:hover { background-color: rgba(44,80,117,.7); color: #fff; }
	
/* Rules Sensitive to Screen Size */
/* Pad Screen Rules */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.nav {
	width : 768px;
	height : 50px;
}
.nav a {
	font-size: 1em;
	margin-top: 8px;
}
}


/* Smartphone Screen Rules */
@media screen and (min-width: 320px) and (max-width: 767px) {	
.nav {
	position: absolute;
	width : 320px;
	height : 150px;
}
.nav a {
	font-size: 1.2em;
	margin-top: 8px;
}
}
