@charset "utf-8";
body  {
	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;
	background-color: #08324F;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	max-width:1200px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(/assets/images/background.jpg);
	background-repeat: repeat;
	background-attachment: fixed;
}
.twoColLiqLtHdr #container {
	width: 98%; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-color: #0d4c76;
	margin-top: 1%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-repeat: repeat;
} 
.twoColLiqLtHdr #container p {
	color: #666666;
	font-size: small;
}

.twoColLiqLtHdr #header {
	background-color: #417378;
	border: thin solid #FFFFFF;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-bottom: 0px;
} 
.twoColLiqLtHdr #header h1 {
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-left: 0;
	float: left;
	
}
.twoColLiqLtHdr #header form {
	margin: 1px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: right;
	height: 40px;
}


/* 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.
*/
.twoColLiqLtHdr #sidebar1 {
	float: left;
	width: 11%; /* top and bottom padding create visual space within this div  */
	background-color: #a4cfbe;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	margin-top: 1%;
	margin-right: 0%;
	margin-bottom: 0%;
	margin-left: 1%;
	background-image: url(/assets/images/rptknot2a.GIF);
	background-repeat: repeat;
}
.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #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. 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.
*/
.twoColLiqLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 1%;
	margin-left: 12%;
	background-color: #0d4c76;
	} 
.twoColLiqLtHdr #mainContent h1 {
	text-align: center;
}

.twoColLiqLtHdr #headernav {
	background-color: #FFCCFF;
}
.twoColLiqLtHdr #headernav ul {
	display: inline;
}
.twoColLiqLtHdr #headernav li {
	display: inline;
}
.twoColLiqLtHdr #headernav ul li ul {
	margin: 0px;
	width: 10em;
}
.twoColLiqLtHdr  #headernav ul li ul li {
	width: 100%;
}


#mainContent h1 {
	padding-top: 0px;
	padding-right: 0px;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 10px;
	color: #FFFF99;
}
#mainContent {
	padding: 0px;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1%;
	margin-left: 0px;
}


.twoColLiqLtHdr #footer {
	margin-top: 1%;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border: thin solid #FFFFFF;
	background-color: #417378;
} 
.twoColLiqLtHdr #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 */
}
.twoColLiqLtHdr #container #footer {
	color: #FFFFFF;
	font-size: small;
}
.twoColLiqLtHdr #container #footer p {
	text-align: center;
	font-size: small;
	color: #FFFFFF;
}
.twoColLiqLtHdr #container #footer a {
	color: #FFFFFF;
	font-size: small;
	text-align: left;
}

.twoColLiqLtHdr #container #footer a:hover {
	color: #FFFF66;
}



.twoColLiqLtHdr #container #footer img {
	padding-left: 1%;
	float: right;
	margin-top: -20px;
}



/* 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:0px;
	font-size: 1px;
	line-height: 0px;
	max-height: 0px;
	margin: 0px;
	padding: 0px;
}


#navigation ul {
	padding: 0px; /* Zeros out the padding on the list */
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	font-size: small;
}


#navigation li {
	list-style: none; /* Removes the bullet from list items */
	display: inline;
} 

#navigation a {
	display: block; /* Changes the a element from its default inline display property to display as a block. */
	width: 90%; /* Forces links to expand to fill their entire container, making the entire button area clickable instead of just the text. */
	margin-bottom: 5px; /* Puts space between buttons. */
	text-align: center; /* Centers the button text */
	padding-top: 5px; /* Puts space between the link and the top edge of the button */
	padding-bottom: 5px;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	margin-right: auto;
	margin-left: auto;
} 

#navigation a:link, #navigation a:visited {
	color: #000000; /* Sets the text color of links and visited links. */
	text-decoration: none; /* Removes the underline from links. */
	background: #B3BCA6; /* Sets the background colour for the links. */
	border: thin solid #3e424a;
} 


#navigation a:hover, #navigation a:active {
	color: #FFFFFF; /* Sets the text colour for the links */
	background: #417378; /* Sets the background colour for the links */
	border: thin solid #FFFFFF;
} 


.externallinks ul {
	padding: 0px;
	margin: 0px;
	float: right;
}

.countycol1 {
	padding: 0px;
	width: 30%;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0%;
	background-color: #FFFFFF;
}

#externallinks {
	text-align: left;

}
#externallinks p {
	font-size: small;
	text-indent: 1%;
}

#externallinks li {
	padding-bottom: 10px;
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	text-align: left;
}

#externallinks a:link {
	color: #417378;
	text-decoration: none;
	text-align: left;
}

#externallinks a:visited {
	color: #FF3300;
}
#externallinks a:hover {
	color: #000000;
	background-color: #FFFF99;
}


.countylinks {
	text-align: left;

}
.countylinks p {
	font-size: small;
	text-indent: 1%;
}

.countylinks li {
	padding-bottom: 0px;
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	text-align: left;
	line-height: 125%;
	margin: 0px;
}

.countylinks a:link {
	color: #417378;
	text-decoration: none;
	text-align: left;
}

.countylinks a:visited {
	color: #FF3300;
}

.countylinks a:hover {
	color: #000000;
	background-color: #FFFF99;
}






#castledata table {
	background-color: #FFFFFF;
	font-size: small;
}
#castlefacttable {
	background-color: #f4f7d9;
	font-size: medium;
	width: 96%;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 1%;
}
#castlefacttable img {
	margin-left: 1%;
}
#castlefacttable table {
	display: block;
}
#castlefacttable caption {
	font-size: 150%;
	font-weight: bold;
	margin-top: 0em;
	margin-right: 0px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CC3333;
	text-align: center;
	padding-bottom: 1%;
	width: 100%;
}



#castlefacttable thead tr:hover {
	background-color:transparent;
	color:#000000;
	}

#castlefacttable tr:hover {
	background-color: #417378;
	color: #FFFFFF;
	
}
#castlefacttable tr:hover a {
	color: #FFFFFF;
}
#castlefacttable th:hover a {
	color: #000000;
}
#castlefacttable th:hover {
	color: #000000;
	background-color: transparent;
}

#castlefacttable a {
	color: #000000;
}
#castlefacttable a:hover {
	color: #FFFFCC;
}


#castlefacttable th {
	width: 15%;
}
#castlefacttable th,td {
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #a4cfbe;
	padding-top: 2px;
	padding-bottom: 2px;
	color: #000000;
	padding-left: 4px;
	font-size: medium;
	
}

#castlefacttable td {
		width: 30%;
}



#castlelistingsnav p {
	font-size: small;
	color: #FFFFCC;
	padding: 0px;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 12px;
	margin-left: 10px;
}
#castlelistingsnav input {
	float: right;
	margin-right: 1%;
	font-family: cursive;
	font-size: x-small;
}

#castlelistingsnav a {
	color: #FFFFCC;font-size:small;
}
.TabbedPanelsContent #thumbnails a:link {
	text-decoration: none;
}

#castlelistingsnav a:hover {
	color: #FFFFFF;
}

#castlelistingnav h1 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#mapviewer {
	float: left;
	margin-right: 1%;
	height: 800px;
	width: 74%;
	margin-left: 1%;
	border: thin solid #000000;
	color: #000000;
	margin-top: 1%;
}
#mapviewerbuttons {
	text-align: right;
	margin-top: 1%;
	margin-right: 1%;
	margin-bottom: 1%;
	}
	

#mapviewerbuttons button {
	font-size: x-small;
	font-family: cursive;
	width: 18%;
}
.Counties {
	margin-right: 0%;
	margin-left: 0.2%;
	margin-bottom: 1%;
	width: 30%;
	float: left;
	background-color: #FFFFFF;
}
#ajh {
	background-color: #FFFFFF;
	margin-right: 1%;
	margin-left: 1%;
	margin-bottom: 5%;
	color: #000000;
	width: 98%;
	min-height: 1000px;
}
.capital {
	font-size: large;
}

#ajh img {
	margin: 10px;
}

#ajh p {
	margin-right: 1%;
	margin-left: 1%;
	float: none;
	color: #666666;
	font-size: small;
}
.helptext {
	background-color: #FFFFCC;
	width: 84%;
	border: thin dotted #66CCCC;
	font-size: small;
	color: #666666;
	text-align: left;
	padding: 1%;
	margin-top: 5%;
	margin-right: 1%;
	margin-bottom: 1%;
	margin-left: 1%;
}
#newsticker object {
	margin-bottom: 50px;
}

.helptext p {
	float: none;
}

.helptext img {
	float: left;
	margin-right: 2px;
	margin-bottom: 2px;
}



.country form {
	background-color: #FF3366;
}
.country fieldset {
	background-color: #FFFFCC;
	padding-bottom: 1%;
	margin-left: 1%;
	margin-bottom: 1%;
	width: 46%;
	float: left;
}
.country legend {
	font-size: large;
	padding-left: 3px;
}
.feedback textarea {
	background-color: #CCCCCC;
}


.checkbox {
	margin-left: 2%;
	margin-bottom: 1%;
}

.radioselection label {
	display: inline;
}


.checkbox label {
	display: block;
}
.disclaimer {
	text-align: left;
	margin: 1%;
	display: block;
}


.simplesearch form {
	background-color: #FF3366;
}
.simplesearch fieldset {
	background-color: #FFFFCC;
	padding-bottom: 1%;
	margin-left: 1%;
	margin-bottom: 1%;
	width: 90%;
	float: left;
}
.simplesearch legend {
	font-size: large;
	padding-left: 3px;
}




#photos {
	width: 95%;

}
#photos a:link {
	color: #FFFFFF;
}

#photos img {
	width: 96%;
	margin-top: 1%;
	margin-right: 1%;
	margin-bottom: 1%;
	margin-left: 2%;
	border: 1px solid #999999;
	padding: 1%;
	background-color: #999999;
}
.TabbedPanelsContent img {
	border: thin solid #417378;
	background-color: #999999;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}

.TabbedPanelsContent img:hover {
	padding: 2px;
	border: thin solid #417378;
	background-color: red;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
}
#locationmap {
	margin-left: 1%;
	width: 900px;
}
#legends {
	background-color: #FFFFFF;
	width: 900px;
	font-size: small;
	margin-left: 1%;
	margin-bottom: 1%;
}
#legends img {
	margin-right: 2px;
	margin-top: 2px;
	margin-left: 2px;
}

#legends p {
	display: inline;
}
.twoColLiqLtHdr #homepagetext {
	float: left;
	line-height: 1.5em;
	padding: 1%;
	width: 60%;
}
.twoColLiqLtHdr #homepagetext p {
	clear: left;
	text-align: left;
	padding: 0px;
	color: #666666;
}


.twoColLiqLtHdr #homepagetext img {
	float: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 2px;
	margin-left: 0px;
}
.twoColLiqLtHdr #container .disclaimer {
	color: #FFFF99;
	font-size: small;
}

.twoColLiqLtHdr #homepagetext li {
	list-style-type: none;
	text-align: left;
	list-style-position: outside;
	list-style-image: url(/assets/images/facts.jpg);
}

.twoColLiqLtHdr #newsticker {
	float: right;
	padding: 0%;
	width: 30%;
	margin-top: 1%;
	margin-right: 1%;
	margin-bottom: 0%;
	margin-left: 1%;
}


#ajh .imageoffset {
	margin-left: -75px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
}


#imghighlight img {
	border: thin solid #999999;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 2px;
}
#imghighlight {
	margin-left: 5%;
}





#imghighlight img:hover {
	border: thin solid #FF0033;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 2px;
}
#imghighlight p {
	margin-left: 154px;
	padding: 0px;
	margin-bottom: 1px;
}

.feedback {
	background-color: #FFFFCC;
	margin-left: 1%;
	margin-bottom: 0.5%;
	float: left;
	padding: 1%;
}

.feedback p {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1%;
	margin-left: 0px;
}

.feedback label {
	display: block;
}
#ajh li {
	font-size: small;
	color: #999999;
	list-style-type: none;
}
.twoColLiqLtHdr #thumbnails p {
	font-size: xx-small;
	float: left;
	margin-left: 1%;
	text-indent: 0px;
	width: 280px;
	margin-top: 0px;
	margin-right: 1%;
	margin-bottom: 0px;
	color: #999999;
}
.twoColLiqLthdr #thumbnails img {
	z-index: -1;
}
.twoColLiqLtHdr #container #mainContent #photos p {
	color: #FFFFFF;
	margin-left: 1%;
}
#inlineimg {
	display: inline;
}
#inlineimg img {
	float: left;
}
#inlineimg p {
	float: left;
}
.twoColLiqLtHdr #container #mainContent #ajh label {
	display: block;
	font-size: xx-small;
	padding: 0px;
	margin: 0px;
}

.twoColLiqLtHdr #container #mainContent #ajh img {
	padding: 0px;
	border: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;

}
.twoColLiqLtHdr #container #mainContent #ajh p {
	font-size: small;
	display: block;
}
.iconlabels p {
	font-size: xx-small;
	padding: 0px;
}
.twoColLiqLtHdr #container #mainContent #ajh #iconic p{
	font-size: x-small;
	padding: 0px;
	margin: 0px;
}
#castlefacttable #Castlefacts th {
	color: #000000;
}
.twoColLiqLtHdr #container #mainContent #TabbedPanels1 .TabbedPanelsContentGroup .omg {
	width: 300px;
	height:auto;
	margin: 4px;
	padding: 0px;
	float: left;
	min-height: 300px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #333366;
	border-right-color: #333366;
	border-bottom-color: #333366;
	border-left-color: #333366;
}
.twoColLiqLtHdr #container #mainContent #TabbedPanels1 .TabbedPanelsContentGroup .omg p {
	margin: 0px;
	padding: 0px;
	text-indent: 0px;
}



.twoColLiqLtHdr #container #mainContent #TabbedPanels1 .TabbedPanelsContentGroup .omg a {
	text-decoration: none;
}
.twoColLiqLtHdr #container #mainContent #TabbedPanels1 .TabbedPanelsContentGroup .omg a:link {
	color: #666666;
	font-style: italic;
	}


/*
.TabbedPanelsContentVisible p {
	font-style: italic;
}
*/

.TabbedPanelsContentVisibleresponse p {
	font-style: normal;
}
.twoColLiqLtHdr #container #mainContent #ajh #TabbedPanels1 .TabbedPanelsContentGroup .TabbedPanelsContent TabbedPanelsContentVisible .TabbedPanelsContentVisibleresponse p {
	font-size: medium;
}
#castlelistingsnav a:link {
	color: #FFFFFF;
}
.twoColLiqLtHdr #newsticker a:link {
	text-decoration: none;
}
#castlefacttable tr {
	width: 100%;
}
