body{
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:1.2em;
	padding:0;
	margin:0;
	color:#819c4d;

}
body#demo-video{
margin:10px;

}
#wrapper{
	width:100%;
	background-color:#e7eaee;
	

}
#container{
	width:800px;
	margin:0 auto;
	background-image: url(../images/content-bg.jpg);
	background-repeat: repeat-y;
	
	border-right-width: thick;

	border-left-width: thick;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	
	border-right-color: #cc0066;
	
	border-left-color: #cc0066;
	overflow: auto;
	min-height: 100%;
	overflow-x: hidden;
}
#header{
	width:800px;
	height:200px;
}

#content{
	padding:0 40px;
	min-height: 500px;
}
#content li{
	list-style-type: none;
	margin-top:0;
	font-size:0.8em;
}
#content ul{

	margin-top:0;

}
#content img{
	float:left;
	margin-right:20px;
	margin-bottom:40px;
	border: medium solid #819c4d;
}

img.painting{
	width:100%;
	margin:0 auto;
}
#content div.painting-details{
	margin-left:20px;
	padding-bottom: 10px;
}
#content div.painting-details img{
	border:none;
}
#content div.painting-details form{
	margin:0;
	padding:0;
	display:inline;
}
#content div.painting{
	
}
div.content-item{
	float:right;
	width:543px;
}
p{
	padding:0;
	margin:0;
}
#footer{
	margin-top:25px;
	height:50px;
	font-size:0.7em;
	color:#FF6666;
	padding-left:40px;
	float: left;

}
h1{
	clear:both;
	color:#cc0066;
	font-size:1.6em;
	margin-bottom:5px;
	margin-top:20px;
	
}
h2{
	font-size:1em;
	margin-bottom:0px;
	margin-top:5px;

}


hr{
display:none;
clear:both;
}
hr.clear-left{

clear:left;
}
.content-item li a{
	color:#819c4d;
	
}
a:link {color:#FF6666}      /* unvisited link */
a:visited {color:#FF6666}  /* visited link */
a:hover {
color:#FF6666;
text-decoration:none;
}  /* mouse over link */
a:active {color:#FF6666}  /* selected link */


/*FancyZoom - cd launch video*/

#zoom { z-index: 9999;}
#zoom_content{padding:10px;}
#zoom td, #zoom th{padding:0 !important;}




#nav{
    list-style:none;
    font-weight:bold;
    margin-bottom:10px;
	
    /* Clear floats */
    float:left;
    width:100%;
    /* Bring the nav above everything else--uncomment if needed.
    position:relative;
    z-index:5;
    */
}
#nav li{
    float:left;
    margin-right:10px;
    position:relative;
}
#nav a{
    display:block;
    padding:5px;
    color:#fff;
    background:#cc0066;
    text-decoration:none;
}
#nav a:hover{
    color:#fff;
    background:#6b0c36;
    text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
    background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position:absolute;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
    padding-top:1px;/* Introducing a padding between the li and the a give the illusion spaced items */
    float:none;
}
#nav ul a{
    white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
    left:-20px;/* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background:#6b0c36;
    text-decoration:underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background:#cc0066;
}