@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: white;
	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;
}
.twoColFixLtHdr #container { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: white;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* header set-ups */ 
.twoColFixLtHdr #header { 
	height: 106px;
	padding: 0 10px 0 0px;  /* 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. */
} 
.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 */
}

/* sidebar nav set-ups */

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 215px; /* 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:white; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 10px 0;
	padding: 10px 10px 10px 0px;
	border-right: 2px solid #f8e086;
	font-size: 85%;
}
#sidebar1 a {
	text-decoration: none;
	color:#002C77;
	}
#sidebar1 a:hover {
	text-decoration: none;
	background-color: #9ba7ff;
	padding-right: 5px;
}
#sidebar1 ul {
	list-style-position: outside;
	margin: 10px 0;
	padding: 0;
	font-variant:small-caps;
	color: #002C77;
}
#sidebar1 ul ul {
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
	}
#sidebar1 li.menuItem {
	list-style: none;
	margin: 0;
	margin-bottom: 5px;
	padding: 0;
	padding-left: 17px;
	font-weight: bold;
}
#sidebar1 li.subMenuItem {
	list-style: none;
	margin: 0;
	margin-bottom: 3px;
	padding: 0;
	padding-left: 27px;
}

/* mainContent set-ups */

.twoColFixLtHdr #mainContent { 
	margin: 10px 5px 25px 250px; /* 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-image: url(../images/IF_CatCoverArt.jpg);
	border: 1px solid blue;*/
}
.twoColFixLtHdr #mainContent h1 {
	margin-left: 0;
	padding: 0;
	color: #002C77;
	font-variant: small-caps;
	letter-spacing:  .04; 
}
#mainContent h2 {
	margin: 0;
	padding:0;
	color: #002C77;
	font-variant: small-caps;
	letter-spacing: .04;	
}
#mainContent h3 {
	margin: 0;
	padding: 0;
	color: #002C77;
	font-variant: small-caps;
	letter-spacing: .04;
	background-color: #f8e086;
	}
#mainContent p {
	font-size: 90%;
	color: #002C77;
	
}
.box p  {
	background-color: #f8e086;
	color: #002C77;
	border-right:  2px solid #004b8e;
	border-bottom: 2px solid #004b8e;
	border-top: 2px solid #9ba7ff;
	border-left: 2px solid #9ba7ff;

	margin: 0;
	margin-top:  15px;
	padding:  10px;
	font-style: italic;
	font-weight:  lighter;
	font-size: 80%;
	text-align:  center;
}
#mainContent ul {
	margin: 3px 0 40px 10px;
}
#mainContent ul li {
	font-size:  90%;
	color: #002C77;
	margin: 0 0 5px 3px;
}
#mainContent ul.gallery {
	margin: 0;
	padding: 0;
	list-style:  none;
}
#mainContent ul.gallery li {
	margin: 5px;
	padding:  0;
	height: 160px;
	width: 150px;
	float: left;
	background-color: white;
	border: 1px solid #9ba7ff;
}
ul.gallery img {
	vertical-align: center;
}
#mainContent .topLevelContainer {
	margin: 5px 0 ;
	border:  1px solid red;
}
#mainContent .subContainer {
	margin: 5px 0 ;
	padding-bottom: 30px;
}
.vendorContainer {
	margin: 5px 0 20px 0px;
	padding-bottom:  20px;
}
.itemContainer {
	margin: 5px 0 ;
}

/* footer set-ups */ 

.twoColFixLtHdr #footer { 
	padding:0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:white; 
}

.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 */
	text-align: center;
	font-size: 80%;
}
#footer a {
	text-decoration: none;
	color: #666666;
	}
#footer a:hover {
	text-decoration: underline;
	color: #333333;
	}

/* copyright set-ups */
	
.twoColFixLtHdr #copyright {
	padding:0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:white; 
}
.twoColFixLtHdr #copyright p {
	margin: 0;
	padding: 3px;
	font-size: 60%;
	color: #666666;
}
.twoColFixLtHdr #copyright a {
	text-decoration: none;
	color: #666666;
	}
.twoColFixLtHdr #copyright a:hover {
	text-decoration: underline;
	color: #333333;
	}

/* home page set-ups */	
#homePg {
	height: 585px;
	width: 452px;
	margin: 10px 5px 20px 5px; /* 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-image: url(../images/IF_CatCoverArt.jpg);
	border: 1px solid blue;

}
#homePg1 {
	height: 585px;
	width: 452px;
	margin: 10px 5px 20px 5px; /* 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-image: url(../images/IF_CatCoverArt-copy.jpg);
}	
#homePg2 {
	height: 585px;
	width: 452px;
	margin: 10px 5px 20px 5px; /* 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-image: url(../images/IF_CatCoverArt2.jpg);*/
}
#homePg3 {
	height: 585px;
	width: 452px;
	margin: 10px 5px 20px 5px; /* 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-image: url(../images/IF_CatCoverArt-copy3.jpg);
}
#homePg4 {
	height: 585px;
	width: 452px;
	margin: 10px 5px 20px 5px; /* 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-image: url(../images/IF_CatCoverArt-copy4.jpg);*/
}	
#homePg5 {
	height: 585px;
	width: 452px;
	margin: 10px 5px 20px 5px; /* 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-image: url(../images/IF_CatCoverArt-copy5.jpg);
}	

#coverText {
	width: 320px;
	margin: 185px 60px 180px 65px;
	}
 #coverText p {
	margin: 10px auto 10px auto;
	color: white;
	font-size: 70%;
	}
/* misc set-ups */
.sepBar {
	width: 760px;
	margin: 0 auto;
	padding: 0;
	display: block;
	}

.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: 6px;
}
.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;
}
.bold {
	font-weight: bolder;
}
.underline {
	text-decoration: underline;
}
.caps {
	font-variant: small-caps;
}
.block {
	display: block;
}
.ImgW_Caption {
	float: right;
	margin: 0 0 20px 5px;
	text-align: center;
	font-size: .7em;
	font-weight: bolder;
}
.ImgBlkRt {
	float: right;
	margin: 0 0 0 5px;
}
.ImgBlkRt img {
	display: block;
	border: 1px solid gray;
}
.menuItem {
	list-style: none;
	margin: 0;
	margin-bottom: 5px;
	padding: 0;
	padding-left: 17px;
	font-weight: bold;
}

