@charset "utf-8";
body  {
	background: #7a2963;
	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: #222222;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}
.twoColFixLtHdr #container {
	width: 826px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(images/ContentBG.jpg);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #7a2963;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-repeat: repeat;
} 
.twoColFixLtHdr #header {
	padding: 0;  /* 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: 192px;
	width: 826px;
	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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 187px; /* 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 */
	padding: 0;
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #sidebar1 a:link, a:hover, a:visited, a:active {
	padding: 0;
	margin: 0;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 p {
	margin-left: 15px;
	padding-left: 10px;
	font-size: x-small;
	margin-top: 0px;
	padding-top: 0;
	padding-right: 25;
	margin-right: 15;
	padding-bottom: 0;
	text-align: center;
	width: 150px;
	color: #7a2963;
	background-color: #ffffff;
	font-weight: bolder;
}
.twoColFixLtHdr #mainContent {
	width: 590px;
	margin-top: 0;
	margin-right: 12px;
	margin-bottom: 0;
	margin-left: 193px;
	background-color: #FFFFFF;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.twoColFixLtHdr #mainContent img.rightimg {
	padding-bottom: 6px;
	padding-left: 6px;
} 
.twoColFixLtHdr #mainContent p, li {
	font-size: 1em;
} 
.twoColFixLtHdr #mainContent h1 {
	font-size: 1.25em;
	color: #660066;
	background-color: #ffffff;
} 
.twoColFixLtHdr #mainContent h2 {
	font-size: 1.1em;
	color: #660066;
	background-color: #ffffff;
} 
.twoColFixLtHdr #mainContent h3 {
	font-size: medium;
	font-style: italic;
	color: #660066;
	background-color: #ffffff;
} 
.twoColFixLtHdr #mainContent table.specials {
	border: 3px solid #7a2963;
	color: #660066;
	background-color: #ffffff;
	margin-bottom: 6px;
	margin-left: 6px;
	width: 175px;
} 
.twoColFixLtHdr #mainContent table.specials td {
	color: #660066;
	background-color: #ffffff;
	font-style: italic;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin: 0;
} 
.twoColFixLtHdr #mainContent table.specials h3 {
	font-size: small;
	font-style: italic;
	color: #660066;
	background-color: #ffffff;
} 
.twoColFixLtHdr #footer {
	padding: 0;
	background-color: #7a2963;
	background-image: url(images/Pets-On-Broadway_FINAL_12.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 122px;
} 
.twoColFixLtHdr #footer h1.nav {
	padding: 0;
	color: #7a2963;
	font-size: small;
	text-align: center;
	margin-top: 5px;
	font-weight: bold;
	margin-top: 40px;
} 
.twoColFixLtHdr #footer h1 a {
	color: #7a2963;
	text-decoration: none
} 
.twoColFixLtHdr #footer h2 a {
	color: #7a2963;
	text-decoration: underline
} 
.twoColFixLtHdr #footer a:link, a:visited {
	color: #7a2963;
} 
.twoColFixLtHdr #footer a:hover {
	color: #FF9900;
} 
.twoColFixLtHdr #footer h2.nav {
	padding: 0;
	color: #7a2963;
	font-size: small;
	text-align: center;
	margin-top: 25px;
	font-weight: normal;
} 
.twoColFixLtHdr #copyright {
	padding: 0;
	margin: 0;
	background-color: #7a2963;
} 
.twoColFixLtHdr #copyright p { 
	padding:  12px 0 12px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0 ; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #ffffff;
	text-align: center;
	font-size: x-small;
} 
.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;
}
.hiddenDiv {display:none;}