@charset "utf-8";
body {
	background: #666666;
	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: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
}
.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
}
.twoColFixLtHdr #header h1 {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 100px; /* 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: #EBEBEB;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.twoColFixLtHdr #sidebar1 p {
	font-size: 14px;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent {
	font-size: 12px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 130px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.twoColFixLtHdr #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 */
	font-size: 12px;
}
.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-left: 8px;
}
.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;
}
#navlist {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
#navlist li {
	padding-left: 25px;
	background-image: url(/images/circular_icons/arrow_right.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	font-size: 18px;
	margin-bottom: 10px;
}

input, textarea
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 5px;
}

.inputfield {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight: normal;
	margin: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 35px;
}
#username {
	background-image: url(../images/mycms_username.gif);
	background-repeat: repeat-x;
	background-position: center center;
	height: 17px;
	width: 149px;
}
#password {
	background-image: url(../images/mycms_password.gif);
	background-repeat: repeat-x;
	background-position: center center;
	height: 17px;
	width: 149px;
}
#login_status {
	position: absolute;
	height: 15px;
	width: 350px;
	left: 30px;
	top: -45px;
	right: 0px;
	bottom: 0px;
	text-align: left;
	background-color: #FFC1C1;
	padding: 10px;
	color: #FF0000;
	font-weight: bold;
	background-image: url(../images/circular_icons/cancel.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	text-indent: 20px;
}
#errmsg_ok {
	font-size: 12px;
	color: #000099;
	background-color: #99CC66;
	padding: 10px;
	text-align: left;
	width: 300px;
	margin-bottom: 10px;
	float: left;
}
#errmsg_fail {
	font-size: 12px;
	color: #000099;
	background-color: #FF9D9D;
	padding: 10px;
	text-align: left;
	width: 300px;
	margin-bottom: 10px;
	float: left;
}
.text_16px {
	font-size: 16px;
}
.text_14px {
	font-size: 14px;
}
.text_12px {
	font-size: 12px;
}
.text_11px {
	font-size: 11px;
}
.text_10px {
	font-size: 10px;
}
.text_black {
	color: #000000;
}
.text_grey {
	color: #666666;
}
.text_white {
	color: #FFFFFF;
}
a {
	color: #FF3300;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
#footnote {
	background-color: #FFCC66;
	padding: 10px;
	width: 580px;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	text-align: left;
}
.inputfieldborder {
	border: 1px solid #CCCCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 5px;
}

#navlisthor
{
	padding: 3px 0;
	margin-left: 0;
	font: bold 12px Verdana, sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BCD0E8;
}

#navlisthor li
{
list-style: none;
margin: 0;
display: inline;
}

#navlisthor li a
{
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #BCD0E8;
border-bottom: none;
background: #E3E9F1;
text-decoration: none;
}

#navlisthor li a:link { color: #448; }
#navlisthor li a:visited { color: #448; }

#navlisthor li a:hover
{
	color: #000;
	border-color: #779FD0;
	background-color: #BBD3DF;
}

#navlisthor li a#navlisthor_current
{
background: white;
border-bottom: 1px solid white;
}

.shownumber
{
	font-size: 46px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 40px;
}

.bottomline
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}

a.btn_edit 
{
	font: bold 12px Verdana, sans-serif;
	color: #448;
	margin-left: 3px;
	border: 1px solid #9CB1CD;
	text-decoration: none;
	float: right;
	padding-top: 3px;
	padding-right: 0.5em;
	padding-bottom: 3px;
	padding-left: 2.3em;
	background-color: #E3E9F1;
	background-image: url(../images/circular_icons/edit.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}

a.btn_edit:hover
{
	border: 1px solid #779FD0;
	text-decoration: none;
	background-color: #BBD3DF;
}

a.btn_edit_left
{
	font: bold 12px Verdana, sans-serif;
	color: #448;
	margin-left: 3px;
	border: 1px solid #9CB1CD;
	text-decoration: none;
	float: left;
	padding-top: 3px;
	padding-right: 0.5em;
	padding-bottom: 3px;
	padding-left: 2.3em;
	background-color: #E3E9F1;
	background-image: url(../images/circular_icons/edit.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}

a.btn_edit_left:hover
{
	border: 1px solid #779FD0;
	text-decoration: none;
	background-color: #BBD3DF;
}

a.btn_remove_left
{
	font: bold 12px Verdana, sans-serif;
	color: #448;
	margin-left: 3px;
	border: 1px solid #9CB1CD;
	text-decoration: none;
	float: left;
	padding-top: 3px;
	padding-right: 0.5em;
	padding-bottom: 3px;
	padding-left: 2.3em;
	background-color: #E3E9F1;
	background-image: url(../images/circular_icons/delete.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}

a.btn_remove_left:hover
{
	border: 1px solid #779FD0;
	text-decoration: none;
	background-color: #BBD3DF;
}

a.btn_add_right
{
	font: bold 12px Verdana, sans-serif;
	color: #448;
	margin-left: 3px;
	border: 1px solid #9CB1CD;
	text-decoration: none;
	float: right;
	padding-top: 3px;
	padding-right: 0.5em;
	padding-bottom: 3px;
	padding-left: 2.3em;
	background-color: #E3E9F1;
	background-image: url(../images/circular_icons/add.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
	margin-bottom: 5px;
}

a.btn_add_right:hover
{
	border: 1px solid #779FD0;
	text-decoration: none;
	background-color: #BBD3DF;
}

a.btn_goto_left
{
	font: bold 12px Verdana, sans-serif;
	color: #448;
	margin-left: 3px;
	border: 1px solid #9CB1CD;
	text-decoration: none;
	float: left;
	padding-top: 3px;
	padding-right: 0.5em;
	padding-bottom: 3px;
	padding-left: 2.3em;
	background-color: #E3E9F1;
	background-image: url(../images/circular_icons/arrow_right.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
	margin-bottom: 5px;
}

a.btn_goto_left:hover
{
	border: 1px solid #779FD0;
	text-decoration: none;
	background-color: #BBD3DF;
}

.hiddenform
{
	padding: 5px;
	display: block;
	border: 1px solid #9CB1CD;
	clear: left;
	float: left;
	width: 500px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.listcontainer
{
	background-color: #E3E9F1;
	padding: 0px;
	margin-bottom: 1px;
}

.blocky_list
{
	padding: 10px;
	float: left;
	width: 590px;
	text-align: left;
}

.blocky_list_border
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BCD0E8;
}

.fake_artcover
{
	height: 38px;
	width: 88px;
	background-color: #EBE9ED;
	text-align: center;
	padding: 5px;
	font-size: 14px;
	font-weight: bold;
	color: #666666;
	border: 1px solid #CCCCCC;
}

.fake_poster
{
	height: 550px;
	width: 400px;
	background-color: #EBE9ED;
	text-align: center;
	padding: 5px;
	font-size: 14px;
	font-weight: bold;
	color: #666666;
	border: 1px solid #CCCCCC;
}

.fake_thumbnail
{
	height: 100px;
	width: 100px;
	background-color: #EBE9ED;
	text-align: center;
	padding: 5px;
	font-size: 14px;
	font-weight: bold;
	color: #666666;
	border: 1px solid #CCCCCC;
}

/*
star rating
*/
.rating_bar {
	width: 55px;
	background-image: url(/images/star_x_grey.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
}

.rating_bar div {
  height: 12px;
  background: url(/images/star_x_orange.gif) 0 0 repeat-x;
}

#list-comment-prod {
	width: 487px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 20px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
#list-comment-prod li {
	list-style: none;
	margin: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EEEDE6;
	padding: 5px;
	display: block;
	float: left;
	clear: left;
	width: 480px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
}

#list-comment-prod li.listheader {
	list-style: none;
	margin: 10px 0 0 0;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #EEEDE6;
	padding: 5px;
	display: block;
	float: left;
	clear: left;
	width: 480px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
	
}

#list-comment-prod li.singleheader {
	list-style: none;
	margin: 10px 0 0 0;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #BCD0E8;
	padding: 5px;
	display: block;
	float: left;
	clear: left;
	width: 480px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
	background-color: #E3E9F1;
}

#list-comment-prod .reviewoption
{
	font-size: 11px;
	margin: 0px;
	line-height: 10px;
	padding: 5px;
}

#list-comment-prod .list-content 
{
	float: left;
	width: 420px;
}

#list-poster {
	width: 487px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 20px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
#list-poster li {
	list-style: none;
	margin: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EEEDE6;
	padding: 5px;
	display: block;
	float: left;
	clear: left;
	width: 480px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
}

#list-poster li.listheader {
	list-style: none;
	margin: 10px 0 0 0;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #EEEDE6;
	padding: 5px;
	display: block;
	float: left;
	clear: left;
	width: 480px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
	
}

#list-poster li.singleheader {
	list-style: none;
	margin: 10px 0 0 0;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #BCD0E8;
	padding: 5px;
	display: block;
	float: left;
	clear: left;
	width: 480px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
	background-color: #E3E9F1;
}

#list-poster .reviewoption
{
	font-size: 11px;
	margin: 0px;
	line-height: 10px;
	padding: 5px;
}

#list-poster .list-content 
{
	float: left;
	width: 380px;
}

.list-content2 {
	float: left;
	width: 400px;
}

.list-content3 {
	float: left;
	width: 270px;
}

.list-content4 {
	float: left;
	width: 357px;
}

span.list-contenttext {
	padding: 5px 0 5px 0;
	padding: 5px 0 5px 0;
	display: block;
}

