/*
    Additives:
        1. Height
        2. Width
        3. Border
        4. Margin
        5. Padding


   The six ways of controling mark up:
        1. by using the "id" (ex. #header)
        2. by using an element(ex. body)
        3. by using a context selector(inner-div technique, ex. #maininner>div)
        4. using a psuedo-calss (ex. #nav a:link)
        5. use an attribute selector (ex. #nav a[title~=home])
        6.
*/

root { 
    display: block;
}
#title {
	width:500px;
}
body {
	background-repeat:no-repeat;
    font-family: Arial, sans-sarif;
    color: #5C5C5C;
}
a, span {
	color:#dddddd;
	text-decoration:none;
}
#mainouter {
    width: 70%;
    position: relative;
    margin:auto
}
#header {
    background-color: #5E3C25;
	border-radius:10px;
	-webkit-box-shadow: 0px 0px 20px 5px;
	-moz-box-shadow: 0px 0px 20px 5px;
	box-shadow: 0px 0px 20px 5px;
	height:66px;
}
#header h1 {
	padding-top:13px;
    padding-left: 20px;
    width: 500px;
    text-decoration: none;
}
#tools {
    text-align: right;
    padding-right: 20px;
    display: inline;
    width: 320px;
	position:relative;
	float:right;
	margin-top:-72px;
}

#tools li {
    display: inline;
    padding:5px;
}

#nav {
    margin-top: 5px;
}
#nav ul {
    margin: 0;
    padding: 0;
}
#nav li {
    display: inline;
    padding: 0;
    margin: 0;
    text-align: center;
}
#nav a {
    display:inline-block;
    width: 70px;
    padding: 3px 0.5em 0 .5em;
    margin: 0 0 0 3px;
    background-color: #58A0D2;
	color:white;
    text-decoration: none;
    -moz-border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 0px;
}
#nav a:link {

}
#nav a:visited {
    outline: none;
}
#nav a:hover {

}
#nav a:focus {

}
#nav a:active {

}
.home #nav a[title~=What],
.out #nav a[title~=Outdoor],
.dining #nav a[title~=Dining],
.music #nav a[title~=Music],
.sports #nav a[title~=Sports],
.cal #nav a[title~=Calendar]{
    background-color: #34772F;
}
#content {
    background-color: #915D39;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 20px;
	border-radius:10px;
	color:white;
	-webkit-box-shadow: 0px 0px 20px 5px  #000;
	-moz-box-shadow: 0px 0px 20px 5px  #000;
	box-shadow: 0px 0px 20px 5px  #000;


}
#content a:hover {
	text-decoration:underline;
}
#content label {
    font-weight: bold;
    width: 6em;
    margin-right: 1em;
    float: left;
    text-align: right;
}
#content .sec {
    text-align: left;
}
#content #captcha {
    float: left;
    margin-right: 1em;
}
#content input[type=radio] {
    float: left;
}
.location td {
    padding-right: 20px;
}
.img {
    text-align: center;
}
#content td>h1 {
    padding-left: 20px;
}
#content td>img{
    padding-top: 20px;
    padding-left: 20px;
}
#content td>p {
    padding-left: 20px;
}
#schedule {
    padding-left: 20px;
    border: 2px solid white;
    border-collapse: collapse;
}
#schedule td {
    border: 1px solid white;
    padding: 4px;
}
#schedule th {
    border:  1px solid white;
    text-align: left;
    padding: 4px;
}
#location td {
    padding-right: 30px;
}

#footer {
	-webkit-box-shadow: 0px 0px 20px 5px #000;
	-moz-box-shadow: 0px 0px 20px 5px  #000;
	box-shadow: 0px 0px 20px 5px  #000;
    background-color: #5B412F;
		border-radius:10px;

}
#footer li {
    display: inline;
    margin: 0;
    padding: 0 0.5em;
    border-right: 1px;
}
span {
    color: red;
}
table {
    border: solid 1px;
}
td {
    border-style: solid;
    border-width: 1px;
    padding: 5px 5px 5px 5px;
}
.error li{
    color:red;
}
#comments span {
	color:white;
	font-size:12px;
	font-style:italic;
}
.comment {
	border-top: 5px solid #58A0D2;
	border-bottom: 1px solid white;
	margin:5px;
	color:#CCC;
}
.comment h4 {
	margin:0px;
	padding:0px;
}
