@charset "utf-8";
/* CSS Document */


/* style */

/* The Magic Float Center Code */

@media only screen and (min-width:1001px) {
.float_center {
  float: right;
  position: relative;
  left: -50%; /* or right 50% */
  text-align: left;
}
.float_center > .child {
  position: relative;
  left: 50%;
}
}

@media only screen and (max-width:1000px) {

.float_center {
	float: left;
}
}
	
/* style */

.clear {
  clear:both;
}

#container {
  width: 1000px;
  margin: 10px auto;
  /*padding: 20px; */
}
ul {
  list-style-type: none;
  margin:0;
  padding:10px 0px;
}
ul li {
  float: left;
  list-style-type: none;
  margin: 0 6px;
}
ul a {
	display: block;
	text-decoration: none;
	font-family: rationale;
	font-style: normal;
	font-weight: 400;
	color: #000000;
}

p {
  margin: 0;
}
.child li a:hover {
	color: #00FF00;
	padding-top: 20px;
}
.child li a {
	padding-top: 20px;
}
