/*
============================================================================
Main style sheet for Atalkingdog.com
By Michael Kear
AFP Webworks Pty Ltd,  Windsor, NSW, Australia 
http://afpwebworks.com
17/1/2007
ALL RIGHTS RESERVED>  COPYRIGHT
============================================================================
*/

/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, 
ol, ul, li, dl, dt, dd, td, form, fieldset, a,
#wrapper, #banner  
{
	margin: 0;
	padding: 0;
	border: 0;
}

/* Set the bg color, default font family and size here. */
body {
  background: #6A2200;	
  font-family:Arial, Helvetica, sans-serif;
  font-size: 76%;
}

/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1,h2,h3,h4,h5,h6 {
   color: #000;
   margin-bottom: 0.2em;
   margin-top: 1.5em;
}

/* Add a bit of padding below all the paragraphs. */
p { padding-bottom: 0.8em; }

/* No borders on any images. */
img	{ border: none; }


/* Links are blue and not underlined. */
a {
	color: #0000FF;
	text-decoration: none;
}

/* Visited links are also blue but just a little lighter. */
a:visited  { color: #0066FF; }

/* Hovered links are green and underlined. */
a:hover {
	color: #006600;
	text-decoration: underline;
}

dl {
margin: 30px 0;	
}

dt{
    margin-top: 20px;
	font-weight: bolder;
    font-size: 0.9em;
}
 dd{
	padding-left: 50px;
}
/* This div wraps all three columns plus the banner, but doesn't include the footer. */
#wrapper {
  width: 100%;		/* Ensures that we use the entire width of the browser. */
}
/* This div has the page's H1 and header image. Note the z-index. */
#banner	{
  width: 100%;		/* Stretches across the entire width of the browser. */
  background-color: #6A2200;
 background-image: url(/images/css/DogHeading.gif);
 background-position :  right top;
 background-repeat :  no-repeat;
  height:140px;		/* Needs to be big enough to show the header image that's in the H1. */
  z-index:400; 		/* This z-index is lower than the maincontent's z-index so that the banner always sits behind the maincontent */
}
#banner h1 {
	display: none;
}

/* *********************************************************************************
The area between the banner and footer is occupied by 3 div's that sit side-by-side: 
 left-sidebar	Left side. 	Fixed width and absolutely positioned. Contains other divs that act like pods for content.
 maincontent	Center.		Liquid width. Takes whatever is left over after placing the left and right sidebars.
 right-sidebar	Right side.	Fixed width and absolutely positioned. 
***********************************************************************************/
/**************************/
/* This div is fixed width and absolutely positioned. It contains additional div's. Note the z-index. */
#left-sidebar {
	position:absolute;
	width:170px;  
	top: 154px;   	/* Equal to the heights of banner plus banner's border plus 10 */
	left: 0;
	padding: 10px;	/* Adds space around div. */
	font-size: 90%;
    z-index:600; 	/* This z-index higher than the maincontent's z-index so that the left sidebar content always sits above the maincontent */
}
/* All the sidebar div's share these rules. */
.left-sidebar-all {
	margin-top: 3px;
	color: #333;
	line-height: 1.25em;
	background: #FFF;
}
/* The title in each of the sidebar div's has a H3. */
.left-sidebar-all h3 {
	color: #FFF;
	padding: 0.2em;
	font-size: 100%;
}

/* The lists and paragraphs in each of the sidebar div's share these rules. */ 
.left-sidebar-all ul,	
.left-sidebar-all p {	
	background-color: #FFF;	/* Need to set the list's bg color to white since the div that the list sits in has a diff bg color. */
	padding: 10px;
}

/* No bullets on our lists. */
.left-sidebar-all ul {	
	list-style: none;
}

/* Make the links block level selectable. */
.left-sidebar-all li a 	{	
	width: 100%; 	/* needed by IE6 */
	display: block;
}

/* 1st div in left sidebar. Green border and bg. */
.left-sidebar-1 {
	border: 2px solid #006600;
	background-color: #006600;
 }
/*Making the buttons on the left menu sidebar */
.left-sidebar-1 ul {
	Border-top: #000 1px solid; 
	Margin-top: 0px; 
   padding: 0px;
   margin-right: 6px;
	Margin-left: 0px; 
}
.left-sidebar-1 a {
	Padding-left: 5px; 
	Padding-bottom: 2px;
   	Padding-top: 2px; 
	Margin: 0px; 
    Width: 160px; 
	Text-decoration: none;
	Border-bottom: #000 1px solid; 
	}
    
  .left-sidebar-1 A:link,
  .left-sidebar-1 A:visited {
	Color: #000; 
	Text-decoration: none;
	Background-image: url(/images/css/inactive_arrows.gif);
	background-position : right;
	Background-repeat: no-repeat; 
	Background-color: #E5FFE6;
    }
    
     .left-sidebar-1 A:hover, 
     .left-sidebar-1 A:active 
    {
	Background-image: url(/images/css/active_arrows.gif);
	background-position : right;
    Background-repeat: no-repeat; 
	color: #006600; 
	Background-color: #FFFFFF;
}
    
    
/* 2nd div in left sidebar. Blue border and bg. */
.left-sidebar-2 { 
	border: 2px solid #000099;
	background-color: #000099;
}

/* 3nd div in left sidebar. Red border and bg. */
.left-sidebar-3 { 		
	border: 2px solid #990000;
	background-color: #990000;
}



/**************************/
/* This is the center div. */
#maincontent {
	position:relative; 
	width:auto;						/* This causes the width to be liquid. */
	top: -30px;						/* The negative top value causes the maincontent div to overlap the banner div. */
	margin: 0 170px 0 170px; 		/* Make the left and right margins big enough  */
	padding: 0 50px 0 30px;			/* Add some space between the border and the text. */
	background: #FFFFFF; 
	border: 1px solid #000;
	border-bottom: none;			/* Don't need this border since the footer is also black. */
	z-index:500;					/* This z-index is lower than for the left and right side bars so the main content sits under the side bars. And this z-index is higher than the banner's z-index so the main content is above the banner. */
	min-height: 570px; 			/* Specify a height if your sidebar content is longer than your main content. */
}
#maincontent h1,
#maincontent h2,
#maincontent h3,
#maincontent h4,
#maincontent h5 {
 background-image : url(/images/css/header_arrows.gif);
 background-position : left;
 background-repeat : no-repeat;
 padding-left: 25px;
}
#maincontent table {
	border-collapse: collapse;
}

#maincontent th {
    color : #CCCCCC;
    font-weight : 700;
    text-align : center;
    background-color : #6A2200;
    padding: 3px 10px;
} 
#maincontent tr.lite {
	background-color : #F6F2F0 ;
}
#maincontent tr.dark {
	background-color : #E4D8D2 ;
}
#maincontent td {
	padding: 3px 5px;
    border-top: 1px solid #6a2200;
    border-bottom: 1px solid #6a2200;
}

#maincontent ul {
	margin-left: 2px;
    list-style : disc;
    list-style-position : inside;
} 

#maincontent ol {
	margin-left: 12px;
} 

#breadcrumb {
	background-image: url(/images/css/breadcrumbBackground.jpg);
    background-repeat: repeat-x;
    color: #FFFFFF;
    height: 28px;
    margin-left: -30px;
    margin-right: -50px;
    padding-left: 20px;
    padding-top: 5px;
}
#breadcrumb a {
	color: #FFFFFF;
    text-decoration : none;
}
#breadcrumb a:hover,
#breadcrumb a:active {
	color: #FFFFFF;
    text-decoration : underline;
}
/**************************/
/* right sidebar */
#right-sidebar			/* Fixed width, absolutely positioned. Note the z-index. */
{
	position:absolute;
	width: 189px; 		/* 1px less than the right margin of main content (1px is the width of the maincontent;'s right border). */
	top: 159px;   		/* Equal to the heights of banner plus banner's border plus 15 (for extra space above the div). */
	right:0;			/* Div sits right next to the right side. No extra space here. */
	border: 2px solid #D8BB00;
	background: #D8BB00;
	/*padding: 0.5em;	*/	/* Provides space between the border and the text in the div. */
	font-size: 90%;
	z-index:600; 		/* This z-index higher than the maincontent's z-index so that the rigth sidebar always always sits above the maincontent. */
    
}
#right-sidebar ul,	
#right-sidebar p {	
	background-color: #FFF;	/* Need to set the list's bg color to white since the div that the list sits in has a diff bg color. */
	padding: 4px;
    }
 #right-sidebar ul {
	margin-left: 2px;
    list-style : disc;
    list-style-position : inside;
}   
#right-sidebar h3 {
	color: #FFF;
	padding: 0.2em;
	font-size: 100%;
}

/**************************/
/* The footer div stretches across the page. */
#footer	{
	position: relative;
	top: 10px;			/* Needs to be the same value at the top rule for maincontent. */
	background: #6A2200;
	padding: 1em;
	text-align: center;
	color: #999999;
}



/**************************/
/* skip link is positioned off the screen, but still allows screen readers to see it */
#skiplinks {
	position: absolute;
  	margin-left: -1000px;
}

.floatleft {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.floatright {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.caption {
	font-style: italic;
    color: #6A2200;
   line-height: 3em;
 }
 
 dl.table-display
{
margin: 2em 0;
padding: 0;
}

.table-display dt
{
width: 48%;
float: left;
margin: 0 0 0 0;
padding: .5em;
border-top: 1px solid #999;
font-weight: bold;
}
.table-display dd
{
float: left;
width: 48%;
margin: 0 0 0 0;
padding: .5em;
border-top: 1px solid #999;
}

#sitemap ul {
list-style: circle;
padding: 2px 2px 2px 15px;;

}

ul.errormessage {
    margin: 10px;
    padding: 10px;
	border: 2px solid red;
    background-color : yellow;
}