@charset "utf-8";
body  {
	font: 90%/1.3em  Arial, Verdana, Helvetica, sans-serif;
	background: #3d3e43 url(../images/background.jpg) bottom fixed repeat-x;
	margin:0 auto; /* 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: #707070;
}
a{text-decoration:none; color:#c30066;}
a:hover{ color: #EC0076;}
table{ border-collapse:collapse; table-layout:fixed;}
td{ vertical-align:top;}
#container { 
	width: 875px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/content_bg.png);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: url(../images/title_bg.jpg) right; 
	width:875px;
	height:101px;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#headerLeft {
	float: left; /* since this element is floated, a width must be given */
	width: 195px;
	height: 101px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #c8c9cd url(../images/top_left.jpg) no-repeat; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:0;
	margin:0;
}
#header img {

	margin:0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding:45px 0 0 295px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/*......................................................................NAV*/
#nav { 
	width:194px;
	margin:0;
	padding:0;
} 
#nav ul{
	padding:0;
	margin:0;
	list-style-type: none;
	text-align: left;
}

#nav li {
	margin:0;	
	}

#nav li a{
	display:block;
	text-decoration: none;
	border-bottom:1px solid #fff;
	color:#fff9f9;	
	padding:15px 0 15px 15px;
	margin:0;
	font:bold 14px Arial, Helvetica, sans-serif;
}

#nav li a:hover{
	color:#CC0066;
	background:#fff;
}

#nav a.right { border:none; }
/*......................................................................columns*/
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 195px;
	 /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #c8c9cd; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:0 0 40px 0;
	margin:0;
}
#mainContent { 
	margin: 0 0 0 195px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	height:40px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#c30066; 
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#F8F8F8;
	font-size:80%;
}
#footer a{font-weight:bold; color:#F8F8F8;}
#footer a:hover{font-weight:bold; color: #FF99FF;}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin:0.7em 0 0 8px;
}
.fltrt img{ 
	border: 1px solid #000;
}
.fltrt p{ 
	font-size:75%;
	font-style:italic;
	padding:0.4em 0;

}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.border {border:1px solid #000000;}
/*......................................................................exhibition columns*/
.exhibition img{
	border: 1px solid #000;
	}
.exhibition table td{
	text-align:left;
	vertical-align:top;
	padding: 5px 0;
	}
.exhibition table td h2{
	font-size:110%;
	font-weight:bold;
	padding:0.1em 5%;
	margin:0;
	}
.exhibition table td p{
	text-align:left;
	padding:0.1em 5%;
	margin:0;
	font-size:82%;
	line-height:1.2em;
	}
.more a{
	color:#c30066;
	background:url(../images/arrow_more.png) no-repeat left 3px;
	padding-left:16px;
	font-weight:bold;
	}
.more a:hover{color:#EC0076}
/*......................................................................CV menu*/
.cv ul{
	padding:0;
	margin:0;
	list-style-type: none;
	text-align: left;
}

.cv li {
	margin:0;	
	list-style-type: none;
	}

.cv li a{
	background:url(../images/arrow_more.png) no-repeat left 3px;
	text-decoration: none;
	color:#c30066;	
	padding:0 0 15px 15px;
	margin:0;
	font:bold 12px Arial, Helvetica, sans-serif;
}

.cv li a:hover{
	color:#EC0076;
}
/*......................................................................text styles*/

h1{
	font-size:190%;
	color: #9D9D9D;
	padding:0;
	display:block;
	line-height:1.3em;
	margin:0.7em 0;
	font-weight: normal;
	border-bottom:1px solid #9D9D9D;
	}
h2{
	font-size:140%;
	color: #575757;
	padding:0;
	line-height:1.3em;
	margin:0.7em 0;
	font-weight: normal;
	}
h3{
	font-size:110%;
	color: #575757;
	padding:0;
	line-height:1.3em;
	margin:0.7em 0 0.5em 0;
	font-weight: normal;
	}
p{
	margin:0;
	padding:0.5em 5%;
	line-height:1.4em;
	}
blockquote{
	font-style:italic;
	padding:0.7em 5%;
	}
.small{
	font-size:85%;
	}
hr {
	margin:0;
	border-top: 1px dotted #9D9D9D;/*the border*/
	width: 98%;
	height: 1px;
	border-right: 0 none;
	border-bottom: 0 none;
	border-left: 0 none;
}
