@charset "UTF-8";
/* CSS for LayaLuna by Waila Skinner, W Creative */

body  {
	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: 12px;
	background-image: url(images/bg_02.jpg);
	background-repeat: repeat-x;
	background-color: #0A0813;
}
a:link, a:visited {
	color: #244487;
	text-decoration: underline;
}
a:hover {
	color: #1E0F1D;
	text-decoration: none;
}
#sidebar1 ul {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin: 0px;
	color: #330033;
	font-weight: bold;
	list-style-type: square;
}
#sidebar1 li {
	padding: 3px 0px;
	list-style-position: outside;
	margin-left: 5px;
}
 #anotherbg {
	background-image: url(images/layaluna-bg02.jpg);
	background-repeat: no-repeat;
	
}
#wrapper {
	padding: 0px;
	width: 945px;
	margin-right: 55px;
	margin-bottom: 55px;
	margin-left: 52px;
	padding-top: 52px;/*	margin-top: 52px;*/
}
#container {
	width: 940px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background: #eaeaea;
} 


.pricetag {
	float: right;
}
 #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. */
	height: 130px;
} 
 #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 */
	font-size: 14px;
}
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px;
	border: 8px solid #CCCCCC;
	margin: 25px;
	color: #333333;
	font-size: 12px;
	line-height: 18px;
	background-color: #FFFFFF;
}
#sidebar1 h1 {
	font-size: 16px;
	font-weight: normal;
	color: #660099;
}
#sidebar1 h2 {
	font-size: 14px;
	font-weight: bold;
	color: #330033;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#mainContent h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #0066CC;
}
 #mainContent {
	margin: 0; /* 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: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #eaeaea;
	float: left;
	width: 600px;
	padding-top: 20px;
	font-family: Arial, Helvetica, sans-serif;
} 
#mainContent p {
	line-height: 18px;
}
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	font-weight: normal;
	margin: 0;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 8px;
	margin-left: 3px;
	text-transform: uppercase;
}
#mainContent h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 36px;
	font-weight: bold;
	margin: 0px;
}
#books {
}
#mainContent #books li {
	display: inline;
	float: left;
	width: 120px;
	margin: 2px;
	padding: 2px;
	text-align: center;
	white-space: nowrap;
	height: 175px;
}
#mainContent  #books  ol {
	font-size: 10px;
	text-transform: uppercase;
	color: #666666;
	display: inline;
	margin: 0px;
	padding: 0px;
}
#mainContent h3 {
	font-size: 22px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	margin-bottom: 15px;
}
#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: center;
	color: #666666;
} 
#form1 #textfield {
	height: 26px;
	margin: 0px;
	padding: 0px;
	text-align: center;
	vertical-align: middle;
	display: inline;
}
#form1 #imageField {
	margin-top: 2px;
}
.buynowtext {
	font-size: 18px;
	font-weight: bold;
	float: left;
	margin-top: 20px;
}
.right {
	margin: 0px;
	padding: 0px;
	float: right;
}
#buynowbox img {
	float: right;
	margin-top: 15px;
}
#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 */
}
.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;
	font-size: 1px;
	line-height: 0px;
}
#buynowbox {
	padding: 2px;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #A6A6A6;
	border-right-color: #D5D5D5;
	border-bottom-color: #A6A6A6;
	border-left-color: #D5D5D5;
	height: 75px;
	width: 575px;
}
#buynowbox  input {
	text-align: right;
	float: right;
	margin-top: 10px;
}
.topopage {
	font-size: 10px;
	font-weight: bold;
	text-transform: capitalize;
	color: #333399;
	text-align: center;
	margin: 5px;
	padding: 5px;
	border: 1px solid #C3BCD4;
}
.centered {
	text-align: center;
}
#mainContent .booklist {
	font-family: tahoma, verdana, arial;
	font-size: 11px;
	line-height: 18px;
	color: #333333;
	margin-left: 10px;
	border-left-width: 15px;
	border-left-style: solid;
	border-left-color: #DDDEDB;
	padding-right: 15px;
	padding: 0;
	padding-left: 15px;
}
.purple {
	color: #663399;
}
#comingsoon {
	padding: 10px;
	border: 4px solid #C3BCD4;
	background-color: #FFFFFF;
	color: #333333;
	line-height: 18px;
}
#mainContent .dark {
	color: #333366;
	margin: 0px;
	padding: 0px;
}

/* BEGIN style6 */
 #navlist ul
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}
#header #navcontainer {
	padding-top: 40px;
	width: 450px;
	float: right;
	margin-right: 25px;
}
#logo {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 125px;
	width: 300px;
}

#navlist li
{
	display: inline;
	list-style-type: none;
	height: 26px;
	float: left;
}

#navlist a {
	height: 26px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}

#navlist a:link, #navlist a:visited
{
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	font-size: 14px;
	width: 80px;
	height: 26px;
}

#navlist a:hover
{
	color: #fff;
	text-decoration: none;
	width: 80px;
	height: 26px;
	background-color: #1C1327;
}

.cc_form_basic_MainTable{
	border:0px;
	width: 100%;
}
.cc_form_basic_DisplayTitle{
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #330033;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.cc_form_basic_DisplayMain{
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #C3BCD4;
}
.cc_form_basic_Button{
    font-family: "Trebuchet MS", Arial, sans-serif;}
	
[if IE 5]>
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 230px; }

<![endif][if IE]>

/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 30px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

<![endif]
