/* CSS Document */

/*General Layout*/
body{
  margin: 0;
  padding: 30px 10px 30px 10px;
	background-color: #000;
	color: #FFF;
}

li{
  list-style: none;
}

.menu{

  padding: 0;
  margin: 10px;
}

.menu a{
  height: 2em;
  line-height: 2em;
  float: left;
  width: 9em;
  display: block;
  border: 1px solid #333;
  text-decoration: none;
  text-align: center;
}

a:link {
	color: #CCCCCC;
}
a:visited {
	color: #999999;
}
a:hover {
	color: #999999;
}
a:active {
	color: #FFFFCC;
}


/*Position of the divs*/
#global {
	width: 90%;
	overflow: hidden; /* -> 2 */
	min-width: 700px;
	max-width: 1000px; /* -> 3 */
	margin-left: auto;
	margin-right: auto; /* -> 4 */
}
#top{
	padding: 20px;
	min-height: 40px;
	text-align: center;
}
#top .title{
  float: left;
  width: 33%;
}
#left{
  width: 180px;
  clear:both;
	float: left; /* -> 5 */
}
#main{
  margin-left: 220px; /* -> 7 */
	padding: 10px 20px 10px 40px;
	text-align:center;
}
#main .light{
  height: 100%;
  width: 50%;
  float: left;
  background-color: #300;
}
#main .dark{
  height: 100%;
  width: 50%;
  float: left;
}
#main .switch{
}
#main .text{
  
}
#main .date{
  text-align: right;
  font-size: 75%;
}

#footer{
  clear:both;
  vertical-align: middle;
}

/*Particular Layout*/
#top a{
  color: #FFF;
  text-decoration:none;
  text-transform:lowercase;
  letter-spacing:2px;
  font-size:10px;
}

.split{
  width: 33%;
  float: left;
}

.line{
  clear:both;
}