/* CSS Document */

 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #333333;
	background-image: url(imgs/chq-bg-dark-blue3a.gif);
	background-repeat: repeat;
}
a img { border: none; }
a:link {
	color: #FF0000;
	text-decoration: none;
}
a:visited {
	color: #FF0000;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: underline;
}

.twoColElsLtHdr #container {
	width: 900px;  
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header {
	background: #DDDDDD url(imgs/enesco_header_bg.gif) no-repeat;  /* 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: 95px;
	text-indent: -9999px;
} 
.twoColElsLtHdr #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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 220px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0 15px;
}
.navWrap {
	padding-left: 20px;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* 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.
*/
.twoColElsLtHdr #mainContent {
	margin: 0 25px 0 240px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	font-size: 12px;
	padding-top: 10px;
} 
.twoColElsLtHdr #container #mainContent h1 {
	font-size: 18px;
	color: #333333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding-bottom: 5px;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent h2 {
	font-size: 15px;
	color: #333333;
}
.twoColElsLtHdr #footer {
	padding: 10px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
	margin: 0px 20px;
	line-height: 18px;
} 
.twoColElsLtHdr #container #footer a {
	text-decoration: none;
	color: #FF0000;
}
.twoColElsLtHdr #container #footer a:link {
	color: #FF0000;
	text-decoration: none;
}
.twoColElsLtHdr #container #footer a:visited {
	color: #FF0000;
	text-decoration: none;
}
.twoColElsLtHdr #container #footer a:hover {
	color: #FF0000;
	text-decoration: underline;
}
.twoColElsLtHdr #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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* 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;
}
 /* this set of rules style the main navigation links in navColumn */
.mainNav {
	list-style-type: none;
	line-height: 24px;
	width: 195px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
.secondLevel {
	list-style-type: disc;
	line-height: 24px;
	margin-left: -10px;
	padding-left: -10px;
}
.indentUL {
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-left: 0px;
	padding-left: 0px;
}
.indentUL a {
	color: #333333;
	text-decoration: none;
}
.indentUL a:link {
	color: #333333;
	text-decoration: none;
}
.indentUL a:visited {
	color: #333333;
	text-decoration: none;
}
.indentUL a:hover {
	color: #FF0000;
	text-decoration: underline;
}
.thirdLevel {
	color: #333333;
	list-style-type: none;
	line-height: 24px;
	margin-left: 5px;
	padding-left: 5px;
}

.imageStrip {
	border: 1px solid #333333;
}
.twoColElsLtHdr #container #mainContent #contentWrapper {
	background-color: #F2F2F2;
	margin-bottom: 10px;
}
.twoColElsLtHdr #container #mainContent #contentWrapper .brandSplash {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 10px;
	float: left;
	padding: 12px;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent #contentWrapper .brandSplashBlank {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 10px;
	float: left;
	text-align: center;
	background-image: url(imgs/brand-snapshot-blank.gif);
	background-repeat: no-repeat;
	background-position: 12px 12px;
	height: 274px;
	width: 210px;
}
.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */
.twoColElsLtHdr #container #mainContent #contentWrapper .brandSplashBlank .textWrap {
	text-align: center;
	padding: 50px 30px 20px;
	font-size: 11px;
	color: #666666;
}
.twoColElsLtHdr #container #mainContent h3 {
	color: #333333;
	font-size: 13px;
	font-weight: bold;
}
.floatPicRight {
	padding: 3px;
	float: right;
	margin-left: 5px;
	border: thin solid #999999;
}
.slideshowWrap {
	float: right;
	margin-left: 5px;
	font-size: 11px;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	color: #333333;
	margin-bottom: 10px;
	font-weight: normal;
}
.slideshowWrap p {
	margin-top: 7px;
}
.picFrame {
	padding: 3px;
	border: 1px solid #999999;
}
.linksSplash {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 10px;
	float: left;
	text-align: center;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
}
.twoColElsLtHdr #container #mainContent #catWrapEnesco {
	margin-bottom: 10px;
	border: 10px solid #D0F1B5;
	background-color: #FFFFFF;
}
.twoColElsLtHdr #container #mainContent #catWrapLilliput {
	margin-bottom: 10px;
	border: 10px solid #CBCEF8;
	background-color: #FFFFFF;
	overflow: auto;
}
.twoColElsLtHdr #container #mainContent #catWrapBFA {
	margin-bottom: 10px;
	border: 10px solid #D1E3F8;
	background-color: #FFFFFF;
	overflow: auto;
}
.twoColElsLtHdr #container #mainContent #catWrapCA {
	margin-bottom: 10px;
	border: 10px solid #DDD3B3;
	background-color: #FFFFFF;
	overflow: auto;
}
.twoColElsLtHdr #container #mainContent #catWrapBBE {
	margin-bottom: 10px;
	border: 10px solid #FFCCFF;
	background-color: #FFFFFF;
	overflow: auto;
}
.catThmWrap {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 10px;
	float: left;
	text-align: center;
	padding-left: 23px;
	height: 170px;
}
/* The following rules are for the map on the Contact Us page */
.locationMap {
	background-image: url(about-us/enesco-location-map-sml.png);
	width: 450px;
	height: 350px;
	background-repeat: no-repeat;
}
.mapWrap {
	font-size: 9px;
	float: right;
	text-align: right;
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
	margin-left: 5px;
}
/* Where to Buy Lists-specific rules */

#wtbLists {
	padding-bottom: 10px;
	
}

#wtbLists h4 {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 12px;
	color: #333366;
	background-color: #CCDFF2;
	padding: 2px 2px 2px 4px;
}
#wtbLists p {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Lucida Grande";
	font-size: 12px;
	color: #333333;
	line-height: 16px;
	margin-top: -8px;
	padding-left: 4px;
}
#wtbLists a:link {
	color: #FF0000;
	text-decoration: none;
}
#wtbLists a:visited {
	color: #FF0000;
	text-decoration: none;
}
#wtbLists a:hover {
	color: #FF0000;
	text-decoration: underline;
}
/* place css fixes for all versions of IE in this conditional comment */
* html .twoColElsLtHdr #sidebar1 { padding-top: 30px; }
* html .twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }

/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

/* The following rule is the wrapper for the home page (AF) slideshow */
#slideshowWrapper {
	padding: 20px 25px 0px 20px;
}
