body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: url(images/bg.png);
	margin: 0;
	padding: 0;
	text-align: left;
	color: #000000;
}

body img {
	border: none;
}

a {
	color: #003399;
}

a:visited {
	color: #0066FF;
}

a:hover {
	color: #006000;
}


fieldset {
	border: none;
}

H1 {
	font-size: 20px;
	font-weight: bold;
}

H2 {
	font-size: 16px;
	font-weight: bold;
}

H3 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #006666;
}


/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.thrColHybHdr #container { 
	width: 990px;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
}  
.thrColHybHdr #header {
	height: 120px;
	background-image: url(images/header_bg.jpg);
} 
.thrColHybHdr #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 */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
*/
.thrColHybHdr #sidebar1 {
	float: left; 
	width: 120px; /* since this element is floated, a width must be given */
	padding: 0 10px 0 20px;
}

.thrColHybHdr #sidebar2 {
	float: right;
	width: 210px;
	padding: 15px 15px 0 0; /* top and bottom padding create visual space within this div */
}

.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColHybHdr #mainContent {
 	margin: 0 237px 0 162px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0 12px 0 12px; /* padding here creates white space "inside the box." */
	_margin: 0 160px 0 180px;
	_padding: 0;
	min-height: 1000px;
}

.thrColHybHdr #mainContent_two_column {
 	margin: 0 0 0 160px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0 25px 0 25px; /* padding here creates white space "inside the box." */
}
.thrColHybHdr #footer { 
	padding: 0;
	text-align: center;
	margin-top: 40px;
	background-color: #C5DFBD;
} 
.thrColHybHdr #footer p {
	margin: 0;
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #666666;
}

/* Miscellaneous classes for reuse */
.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;
	overflow: hidden;
}

.clearleft {
	clear:left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.clearright {
	clear:right;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#logo {
	position: absolute;
	width: 748px;
	height: 120px;
	top: 0px;
	left: 0px;
}

#topVerse {
	position: absolute;
	width: 239px;
	height: 120px;
	left: 751px;
	top: 0;
	background-image: url(images/top_verse.png);
}

#topVerse a {
	color: #330000;
	text-decoration: none;
	display: block;
	width: 239px;
	height: 95px;
	padding-top: 15px;
}

#topVerse a span {
	display: block;
	width: 210px;
	margin: 0 15px 15px 15px;
	font-size: 13px;
	font-weight: bold;
}

#contact_btn {
	position: absolute;
	top: 82px;
	left: 550px;
}

#aboutus_btn {
	position: absolute;
	top: 82px;
	left: 475px;
}

#ajaxmenu {
	margin: 0 0 0 20px;
}

#search {
	margin-bottom: 0px;
	height: auto;
	width: 210px;
	text-align: center;
}

#ajaxSearch_input {
	width: auto;
	display: inline;
	height: 18px;
	border: 1px solid #ddd;
	border-left-color: #c3c3c3;
	border-top-color: #7c7c7c;
	margin: 0 0 0 0;
	padding: 2px 0 0 3px;
	vertical-align: top;
}

#divDia {
	height: 20px;
	border: #F8F888 1px solid;
	padding: 3px 0 0 3px;
        background: #F8F8B8;
}

#divDia1 {
	height: 20px;
	border: #D9EAD9 1px solid;
	padding: 3px 0 0 3px;
        background: #ECF4EC;
}

#divDev a {
	color: #006600;
	text-decoration: none;
}

#divParabola {
	height: 86px;
	border: #F8F888 1px solid;
	padding: 3px 0 0 3px;
        background: #F8F8B8;
}

.mordomofiel {
	border: #006000 3px solid;
	padding: 3px 3px 3px 3px;
	background: #F8F8B8;
}

#ajaxSearch_submit {
	display: inline;
	height: 23px;
	line-height: 18px;
}

.ajaxSearch_highlight {
	font-weight: bold;
	color: #CC3300;
}

.ajaxSearch_highlight1 {
	font-weight: bold;
	color: #CC3300;
}

.ajaxSearch_extract p {
	margin-top: 0px;
}

.cover {
	float: left;
	width: 140px;
}

.subtitle {
	font-size: 9px;
	font-weight: bold;
}

.small_text {
	font-size: 8px;
}

.alert {
	color: #FF0000;
}

.subdued {
	color: #666666;
}

.left_image {
	margin: 10px 15px 10px 0;
}

.right_image {
	margin: 10px 0 10px 15px;
}

.author_name {
	margin: -10px 0 10px 0;
	font-weight: bold;
	color: #999999;
}

.verse {
	font-style: italic;
	_font-style: normal;
	_font-weight: bold;
}


.magazine_cover {
	min-height: 175px;
	display: block;
}

.magazine_cover img {
	margin: 0 10px 0 0;
}

.magazine_cover H2 {
	font-size: 14px;
	margin: 0;
	padding: 0;
}

.magazine_cover H2 a {
	color: #000000;
	text-decoration: none;
}

.magazine_cover H3 {
	font-size: 14px;
	color: #339966;
	margin: 0;
}

.magazine_toc {
	clear: left;
	margin: 5px 0 25px 0;
	padding: 0 10px 0 0;
	color: #000000;
}

.magazine_toc li {
	border-top:1px solid #CCCCCC;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	list-style-type:none;
	margin:0pt;
	padding:4px 0pt;
	font-size: 11px;
}

.magazine_toc .cover_story {
	border-top: none; !important
}

.magazine_toc li.cover_story {
	font-weight: bold;
}

.ordering_instructions {
	float: right;
	outline: #003300 dotted thin;
	margin: 0 0 0 10px;
	padding: 10px;
	width: 170px;
	background-color: #E8E7C1;
}

.ordering_instructions H2{
	margin-top: 0;
	color: #CC3300;
}

/* Home */

.home_article_list {
	margin-bottom: 25px;
	margin-top:0;
}

.home_article_list h2 {
	margin-bottom: 0;
	margin-top: 0;
}

.home_article_list p {
	margin-top: 0;
}

.home_article_list h2 a {
	text-decoration: none;
}

.home_article_list img {
	float: left;
	margin: 0 15px 0 0;
}

ul.blog_entries {
	list-style: none;
	margin: 0;
	padding: 0;	
}

ul.blog_entries li {
	margin-bottom: 10px;
}

ul.blog_entries h3 {
	font-size: 13px;
	margin: 0;
}

ul.blog_entries h3 a {
	text-decoration: none;
}

.blog_date {
	color: #999999;
	font-weight: normal;
}

.blog_date a {
	color: #0099FF;
}

/* Online Magazines */
.online_magazine ul li {
	margin-left: 15px;
}

.online_magazine img {
	float: left;
	margin: 0 15px 15px 0;
}

.cover_list {
}

.cover_list div {
	float: left;
	width: 25%;
	text-align: center;
	margin: 0 0 15px 0;
	height: 160px;
}

.cover_list div a {
	text-decoration: none;
}

#tall_banner {
	margin-top: 30px;
}

/* Forms */

.dataForm {
	width: 530px;
	border: #006000 1px solid;
	padding: 15px;
}


form fieldset {
	padding: 0;
	margin: 0;
	width: 570px
}

form legend {
  padding: 0 2px;
  font-weight: bold;
}

form label {
  display: block;
  float: left;
  width: 130px;
  margin: 0 15px 5px 0;
  text-align: right;
  font-weight: normal;
}

form fieldset ol {
  margin: 0;
  padding: 0;
}

form fieldset li {
  list-style: none;
  padding: 5px;
  margin: 0;
}

form fieldset fieldset {
  border: none;
}

div#search form label {
  width: auto;
  margin: 0 0 0 10px;
}

.optionsLegend {
  display: block;
  float: left;
  width: 120px;
  margin: 0 15px 5px 0;
  text-align: right;
  font-weight: normal;
}

form fieldset fieldset label {
  display: block;
  float: left;
  margin: 0 15px 5px 0;
  text-align: left;
  width: auto;
}

form em {
  font-weight: bold;
  font-style: normal;
  color: #f00;
}

form input.invalidValue, form textarea.invalidValue {
	border: #CC3333 2px solid;
}

form input.requiredValue, form textarea.requiredValue {
	border: #CC3333 2px solid;
}

.errors {
	max-width: 600px;
	border: #CC3333 2px solid;
	background-color: #FFFFCC;
	color: #CC3333;
	padding: 10px;
	margin-bottom: 15px;
}

/* Store */
#productDetails {
	float: left;
	width: 590px;
}

#productDetails div {
	width: 400px;
	float: right;
}

#productDetails img {
	float: left;
	margin-right: 15px;
	max-width: 174px;
	_width: 174px;
}

#productDetails ul {
	position: relative;
	left: 15px;
	margin-left: 15px;
}

div#productInfo {
	width: 580px;
	float: left;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: dotted 1px #999999;
}

div#productInfo h1 {
	margin: 0;
	font-size: 18px;
}

div#productInfo h2 {
	margin-top: 5px;
}

div#productInfo div {
	float: right;
	width: 440px;
}

#productInfo img {
	float: left;
	width: 115px;
}

.priceTag {
	font-size: 14px;
	font-weight: bold;
}

.store_menu {
	display: block;
	list-style: none;
	list-style-type: none;
	margin: 5px 0 20px 0;
	padding: 5px;
	clear: right;
}

.store_menu li {
	float: left;
	margin-right: 15px;
	font-size: 14px;
	font-weight: bold;
}

.store_menu li a {
	color: #006666;
}

.store_menu li a:hover {
	color: #0099CC;
}

.book_list {
	width: 100%;
	text-align: center;

}

.book_list a {
	text-decoration: none;
}

.read_more {
	text-align: right;
}