@charset "UTF-8";
body {
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Courier New", Courier, monospace;
	font-size: 1.0em;
}

a, a:visited {
	text-decoration: none;
	color: #000000;
}

#page {
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 100px;
	margin-right: auto;
	margin-left: auto;
}

#logo {
	font-weight: bold;
	font-size: 2.0em;
}

#title {
	margin: 30px 0;
	font-weight: bold;
	font-size: 1.0em;
}
img.floatLeft {
	margin: 0 20px 10px 0;
}

#contentText {
	margin-left: 275px;
}

#contentText.press {
	margin-left: 100px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

h3 {
	font-size: 1.8em;
}

#content img {
	border: solid 1px #AAAAAA;
}

#content a, #content a:visited {
	text-decoration: underline;
}

.exhibition td {
	padding-top: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E7E7E7;
}

.exhibitionDetails p {
	font-size: 0.8em;
	margin-top: 0;
}


#menu {
	font-weight: bold;
	font-size: 1.2em;
}

.home #menu {
	margin-top: 100px;
}

/*to make the menu show vertical*/
#menu ul
{
list-style: none;
padding: 0;
margin: 0;
}

#menu li
{
display: inline;
padding: 0;
margin: 0;
}

#menu li:before { content: "| "; }
#menu li:first-child:before { content: ""; }

/*IE workaround*/
/*All IE browsers*/
* html #menu li
{
border-left: 1px solid black;
padding: 0 0.4em 0 0.4em;
margin: 0 0.4em 0 -0.4em;
}

/*Win IE browsers - hide from Mac IE\*/
* html #menu ul { height: 1%; }

* html #menu li
{
display: block;
float: left;
}

/*End hide*/
/*Mac IE 5*/
* html #menu li:first-child { border-left: 0; }

