/**
* CSS
* 
* @version 0.01
* @author Alex Borysenko
* Based on the work of Vaska
*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 11px;
	font-family: Arial, sans-serif;
	background-image: url(images/bg_pattern.gif);
}

/* Link Styling */

#menu li a:link { text-decoration: none; color:#77787b;}
#menu li a:active { text-decoration: none; color:#77787b;}
#menu li a:visited { text-decoration: none; color:#77787b;}
#menu li a:hover { color:#fff; background-color:#f37526;}

#content a:link { text-decoration: none; color:#77787b;}
#content a:active { text-decoration: none; color:#77787b;}
#content a:visited { text-decoration: none; color:#77787b;}
#content a:hover { color:#fff; background-color:#f37526;}

a:link { text-decoration: none; color:#000000; }
a:active { text-decoration: none; color:#000000;}
a:visited { text-decoration: none; color:#000000;}
a:hover { color:#ffffff; background-color:#f37526;}

a img { border: none; }

/* Nav Layout */

#menu {
    width: 185px;
    overflow: auto;
    top: 0px;
	left: 20px;
    position: fixed;
	background-color: #fff;
	border-bottom:1px solid #77787b;
	border-left:1px solid #77787b;
	border-right:1px solid #77787b;;
}

#menu ul {
	list-style: none;
	margin: 0 0 12px 0;
}

/* Exhibit Layout */

#content {
    margin: 110px 0 0 215px;
    top: 0;
	width: 740px;
	background:#FFF;
}

.container {
    padding: 10px 10px 10px 10px;
}

#img-container {
	clear:both;
	padding:15px 0 0 0;
}

.image {
	margin:0 0 10px 0;
}

.caption {
	margin: 10px 0 0 0;
}


/* Type Styles */

p {
    margin: 0 0 9px 0;
	line-height: 14px;
}

.description {
	width:420px;
	margin-right:10px;
	float:left;	
}

.credits {
	padding-left:10px;
	width:auto;
	float:left;
}

#content ul {
	list-style: none;
	margin:0;
	padding-left:10px;width:280px; float:left;
}
#content li {
	margin-bottom:6px;
}

#content ul span {
	font-weight:bold; display:inline;
}

#about {
	width:420px;
}

/* Footer Layout */

#footer {
	margin: 10px 0 20px 215px;
	display:block;
}


