body  {
	font: 95% Arial, Helvetica, sans-serif;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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;
	background-color: #000066; /* dark blue */
}
.VersalPekes {
	font: 95% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
}
.VersalPekeRev {
	font: 95% Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #cc66cc;
}
#container {
	width: 97.5%;  /* this will create a container 98% of the browser width just to show a dark blue edge. */
	margin: 0px 1% 0px 1%;
	padding: 0px;
	text-align: left;
	border: medium solid #990066;
} 
#header {
	background: #FFFFCC; /* url(images/finishedhexaviolet.gif) repeat; out 4/11/2011 */
	padding: 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. */
	margin: 0px;
} 
h2 {
	font: bold 200% Georgia, Arial, Helvetica, sans-serif;
	color: #930;
	text-align: center;
	margin: 0px; /* 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 */
}
.h3cream {
	font: bold 160% Georgia, Arial, Helvetica, sans-serif;
	color: #FFFFCC;
	text-align: center;
	margin: 0px;
	padding: 0px;
}
h3 {
	font: bold 130% Georgia, Arial, Helvetica, sans-serif;
	color: #930;
	text-align: center;
	margin: 0px;
	padding-top: 6px;
}

h3strut {
	font: bold 110% Broadway, serif;
	color: #333333;
	text-align: center;
	margin: 0px;
}
h4 {
	color: #930;
	font-size: 130%;
	text-align: center;
	margin: 0px;
	padding-top: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
}
.creamborder {
	border: medium outset #FFFFCC;
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. 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 ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar1 {
	float: left;
	width: 28%; /* since this element is floated, a width must be given */
	background: #D9D9FF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* top and bottom padding create visual space within this div  */
	border-right: medium solid #990066;
	z-index: 30;
	overflow: visible;
	border-bottom: medium solid #990066;
	border-top-style: none;
	border-left-style: none;
	margin: 0px 10px 0px 0px;
	padding: 0px;
}
#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;
	font: 100% Arial, Helvetica, sans-serif;
	text-align: left;
}
#sidebar1 a:visited {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	text-decoration: bold;
	background: #FFFFCC;
}
#sidebar1 a:hover {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-decoration: bold;
	background: #cc66cc;
}
#sidebar1 a {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	background: #FFFFCC;
	font-weight: bold;
}

/* Tips for mainContent:
1. 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.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.FloatPicRight {
	margin: 0px;
	padding: 0px;
	float: right;
	width: auto;
	height: auto;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	color: #000000;
	display: inline;
	border: medium solid #7979FF;  /* pale blue border */
}
#mainContent {
	border-bottom: medium solid #990066;
	border-left: medium none;
	background: #FFFFCC;
	width: auto;
	z-index: 1;
	font-family: Georgia, "Times New Roman", serif;
	color: #000000;
	margin: 0px;
	padding: 0px 10px 0px 10px;
} 
#footer {
	padding: 0px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFCC url(images/finishedhexaviolet.gif) repeat; 
	border-top: medium solid #990066;
	border-right: medium none #990066;
	border-bottom: medium none #990066;
	border-left: medium none #990066;
} 
#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 */
}

/* 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;
}
#Menu {
	/* it seems must have a border here or it won't fit the depth of the line; the link buttons will hang over. */ 						    font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
	background-image: url(http://petfinder.com/%7ENJ403/images/violet1x70.jpg);
	background-repeat: repeat-x;
	background-position: left;
	border-top: thin solid #cd79b1;
	border-right: thin none #FFFFFF;
	border-bottom: 1px solid #990066;
	border-left: thin none #FFFFFF;
} 
#Menu ul {
	text-align: center; /* We are using text-align: center on ul to horizontally align our menu to the page. If you want the menu aligned left or right just change text-align to either left or right */
	padding: 3px;
	margin: 0px;
} 
#Menu li {
	display: inline;
	} 
#Menu li a{
	padding: 3px; /* Display: block won't work in this example, instead we are using padding to make the whole tab a clickable link */
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	background: url(http://petfinder.com/~NJ403/images/violet1x70.jpg) repeat-x left top;	/* border: 1px outset #33CCCC;  */
	padding: 3px;
} 
#Menu li a:hover {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	background: url(http://petfinder.com/~NJ403/images/paleblue2violet100x70.jpg) repeat-x left top;
	/* margin: 0px;  */
	padding: 3px;
} 
.footertext {
	font-size: 90%;
	color: #333;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	text-decoration: none;
	background: #D9D9FF;
	font-weight: bold;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-decoration: none;
	background: #cc66cc;
	font-weight: bold;
}
a {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	text-decoration: none;
	background: #D9D9FF;
	font-weight: bold;
}
z
/* Unfortunately, for some reason both IE6 and IE7 need to be hacked. */ 
* html .Menu li a {
	padding: 3px;
}

.phoBotNoBord {
	bottom: 0px;
	position: inline;
	vertical-align: bottom;
	z-index: auto;
	visibility: visible;
	border: thin none;
	width: auto;
	margin:0px;
	padding:0px;
}

/*  section below from old css file    */

th {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #cc3399;
	border-bottom-width: thin;
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-top-width: thin;
	border-bottom-style: none;
	text-align: right;
	padding-right: 1em;
	margin: 0px;
	vertical-align: middle;
}
td {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	border-bottom-width: thin;
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-top-width: thin;
	border-bottom-style: none;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	line-height: normal;
	text-align: left;
	/* background: #CECEFF;  */
	padding-right: 1em;
	padding-left: 1em;
	margin: 0px;
	vertical-align: middle;
}
.creamback {
	background: #FFFFCC;
	font-family: Arial, Helvetica, sans-serif;
	border: 1px solid #990066;
}
p {
	/* text-indent : 15px;  */
	text-align: left;
	border-top: thin none;
	border-right: thin none;
	border-bottom: thin none;
	border-left: thin none;
	margin: 4px 4px 4px 8px;
	padding: 8px 0px 8px 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
}

.hr {
	color: #999999;
	font-size: 9px;
	font-variant: normal;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
	text-align: center;
	position: static;
	font-style: normal;
	height: auto;
}
.addressBox{
	font-size: small;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	text-align: center;
	border: none;
	background-color: #D9D9FF;
	background-position: center center;
	padding: 4px 12px;
	width: auto;
	margin-right: 10px;
	margin-left: 10px;
	left: 30%;
	right: 30%;
	font-style: normal;
	height: auto;
	vertical-align: middle;
}
table {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 0px inset #000099;
	width: auto;
	position: static;
	left: auto;
	right: auto;
	padding: 0px;
	text-decoration: none;
}
table#Form {
	font-size: medium;
	font-weight: bold;
	font-style: normal;
	background-color: #D9D9FF;
	border: thin solid #990066;
	margin: -18px 0px 0px;
}
form {
	margin: 0px;
	padding: 0px;
}
table#Form td {
	font-size: medium;
	font-weight: bold;
	background: #D9D9FF; 
}
.Head3CreamBk {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-size:  large;
	color: #000000;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	width: auto;
	position: static;
	background-position: center;
	background-color: #FFFFCC;
	text-decoration: none;
}
.Head3BlueBk {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-size:  large;
	color: #000000;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	width: auto;
	position: static;
	background-position: center;
	background-color: #D9D9FF;
	text-decoration: none;
}
.alignleft {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	background-color: #CECEFF;
	padding-right: 1em;
	padding-left: 1em;
	margin: 0px;
}
.alignright {
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	background-color: #CECEFF;
	padding-right: 1em;
	padding-left: 1em;
	margin: 0px;
	text-decoration: none;
	vertical-align: top;
}
.MyH1BluGrn {
	font-family: Harrington, "Bodoni MT",  serif;
	text-align: center;
	font-size:  xx-large;
	color: #000066;
	font-style: normal;
	font-weight: bolder;
	width: auto;
	background-position: center;
	background-color: #E1E1FF;
	line-height: normal;
	vertical-align: text-top;
	height: auto;
	position: static;
	visibility: visible;
	z-index: 21;
	text-decoration: none;
}
.FloatPicLeft {
	margin: 0px 4px 0px 0px;
	padding: 0px 4px 0px 0px;
	float: left;
	width: auto;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	border: medium solid #7979FF;  /* pale blue border */
	position: relative;
	color: #000000;
	background: #CECEFF;
	vertical-align: top;
}
.FloatPicLeftWhite {
	margin: 0px 8px 0px 2px;
	padding: 0px;
	float: left;
	width: auto;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	position: relative;
	color: #000000;
	background: #ffffff;
}
.FloatPicRtWh {
	margin: 0px 8px 0px 2px;
	padding: 0px;
	float: right;
	width: auto;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	position: relative;
	color: #000000;
	background: #ffffff;
}
.tableDataH3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-align: center;
	background-position: center;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	left: auto;
	right: auto;
	position: static;
	background-color: #D9D9FF;
	text-decoration: none;
}
.Listing {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	background-color: #CECEFF;
	text-align: center;
	position: static;
	width: auto;
	left: auto;
	right: auto;
	padding-right: 2px;
	padding-left: 2px;
	text-decoration: none;
}
.darkback {
	background-color: #9595FF;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;	
	color: #FFFFFF;
	vertical-align: middle;
	padding: 4px;
	height: auto;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
}
.Sig {
	font-family: "Freestyle Script", "Bradley Hand ITC", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	padding-right: 4px;
	padding-left: 4px;
	text-decoration: none;
}
.VioletBorder {
	border: medium outset #990066;
}

