/* CSS Document */
body {
    font-family: "Trebuchet MS", Verdana, sans-serif;
    font-size: 16px;
    background-color: dimgrey;
    color: #696969;
    padding: 3px;
}

#main {
    padding: 5px;
    padding-left:  15px;
    padding-right: 15px;
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
}
#left {
	float:left;
	width: 60%;
}
#right {
	float:right;
	width:40%;
}
section {
	margin:20px 10px 5px 25px;
	width:100%;
}

h1 {
    font-family: Georgia, serif;
    border-bottom: 3px solid #cc9900;
    color: #996600;
    font-size: 30px;
}
/* menu */
ul#menu {
    padding: 0;
    margin-bottom: 10px;
}

ul#menu li {
    display: inline;
    margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
}

ul#menu li a {
    background-color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    color: #696969;
    border-radius: 5px 5px 0 0;
}

ul#menu li a:hover {
    color: #fff;
    background-color: #000;
}


/* table */
table {
    width:100%;
}

table, th , td {
    border: 1px solid grey;
    border-collapse: collapse;
    padding: 5px;
}

th {
    text-align: left;
}

table tr:nth-child(odd) {
    background-color: #f1f1f1;
}
table tr:nth-child(even) {
    background-color: #ffffff;
}

@media screen and (max-width: 480px) {
#right {
	float:left;
	clear:left;
	width:90%;
}
table {
    width:95%;
}
table, th , td {
    border: 1px solid grey;
    border-collapse: collapse;
    padding: 2px;
}
}