@charset "UTF-8";
body {
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #4D4D4D;
	margin-top: 4px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding: 0;
	color: #000;
	line-height: normal;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	/* [disabled]color: #42413C; */
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #A23E3E;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: rgba(162,62,62,1.00);
	text-decoration: underline;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 1024px;
	background-color: #2A2A2A;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	border: 1px solid rgba(0,0,0,1.00);
	box-shadow: 0 0 20px rgba(0,0,0,.7);
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #000000;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 183px;
	padding-bottom: 10px;
	margin-top: 0px;
}
.content {
	padding-top: 0px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	width: 658px;
	float: left;
	background-color: rgba(255,255,255,1.00);
}
aside {
	float: left;
	width: 180px;
	background-color: #EADCAE;
	padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */

nav ul{
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666;
}
nav li {
	border-bottom: 1px solid #666;
}
nav a, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding-top: 7px;
	padding-right: 5px;
	padding-left: 15px;
	padding-bottom: 7px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #2A2A2A;
	color: #FFFFFF;
	font-size: 13px;
}
nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #555555;
	color: #FFFFFF;
	font-size: 13px;
	text-decoration: none;
}
/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	background-color: #000000;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	height: 120px;
}
/* ~~ Miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
}
.twocolumndiv {
width:575px;
float:left;
padding:34px 0 0 10px;
}
.twocolumndiv {
	padding-top: 15px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0;
}
.twocolumns{
	width: 200px;
	padding: 18px 18px 0 15px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 24px;
	margin-left: 15px;
	background-repeat: no-repeat;
	background-position: top left;
	background-image: url(images/tour_bg.gif);
	float: left;
	position: relative;
	background-color: rgba(225,214,214,1.00);	
}
.twocolumns img{
padding:0 0 0 2px;
}
.twocolumns h4{
display:block;
font-size:24px;
color:#333333;
padding:8px 0 5px 0;
}
.twocolumns p{
padding:0 0 8px 2px;
}
.mainmenu {
	background-color: rgba(44,44,44,1.00);
}
#pagehead {
	float: left;
	width: 1024px;
	height: 160px;
	padding-bottom: 5px;
	position: relative;
	padding-top: 5px;
	background-color: #000000;
}
#topad {
	float: left;
	width: 1024px;
	height: 160px;
	padding-top: 10px;
	padding-bottom: 5px;
}
#photo {
	padding: 1px;
	border: 1px solid #021a40;
	margin-top: 10px;
	text-align: center;
}
#photowborder {
	padding: 1px;
	border: 1px solid #F7F8DE;
	margin-top: 10px;
	text-align: center;
}
.Rightphotocaption {
	float: right;
	background-color: rgba(4,41,58,1.00);
	margin-right: 10px;
	vertical-align: middle;
	width: 270px;
	margin-left: 10px;
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	border-radius: 6px;
}

.photocaptionw {
	font-size: xx-small;
	color: rgba(247,248,222,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
	text-align: center;
}
.photocaptionw a:link {
	font-size: xx-small;
	color: rgba(247,248,222,1.00);
}
.photocaptionw a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}  
.photocaptionw a:hover {
	color: #EEE300;
	text-decoration: underline;
} 
.photocaptionk {
	font-size: x-small;
	color: rgba(0,0,0,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-left: 8px;
	text-align: right;
}
.breadcrumb {
	background-color: rgba(0,0,0,1.00);
	font-size: 10px;
	padding-left: 15px;
	height: 20px;
	padding-top: 5px;
	color: rgba(255,255,255,1.00);
	top: 5px;
}
.breadcrumb a:link {
	color: #FFFFFF;
	text-decoration: none;
} 
.breadcrumb a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}  
.breadcrumb a:hover {
	color: #EEE300;
	text-decoration: underline;
} 
.addthis {
	height: 20px;
	padding-top: 5px;
	text-align: center;
	background-color: #000000;
}
.rectangletopright {
    width: 180px;
    height: 320px;
    margin-bottom: 10px;
    margin-top: 2px;
    padding-left: 3px;
}
.rectangletopadleft {
	width: 180px;
	height: 160px;
	margin-bottom: 10px;
	margin-top: 25px;
	padding-right: 3px;
}
.rectangleadleft {
	width: 180px;
	height: 160px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding-right: 3px;
	padding-top: 5px;
}
.rectangleadright {
	width: 180px;
	height: 160px;
	margin-bottom: 10px;
	padding-left: 3px;
	padding-top: 10px;
}
.rectangleadrightlong {
    width: 180px;
    height: 290px;
    margin-bottom: 10px;
    padding-left: 3px;
    padding-top: 10px;
    background-color: white;
    vertical-align: top;
}
.sidebarright {
	width: 183px;
	float: right;
	padding-left: 0px;
}
p 	{
	color: #565656;
	font-size: 14px;
	line-height: 1.4em;
	top: 5px;
}
p a {
	color: rgba(34,68,121,1.00);
}
h1 {
	color: rgba(31,31,31,1.00);
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	font-size: 26px;
	margin-bottom: 18px;
	margin-top: 10px;
	text-align: center;
	text-shadow: 0 0 12px rgba(0,0,0,.3);
	/* [disabled]text-indent: 50px; */
}

h1 a {
    color: #959595;
}

h1 a:hover {
    color: #009dae;
    text-decoration: none;
}

h2 {
	color: #EFEFEF;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 16px;
	background-color: rgba(34,34,34,1.00);
}
h2 a {
    color: #959595;
}

h2 a:hover {
    color: #009dae;
    text-decoration: none;
}
.tagline {
	color: rgba(231,231,231,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 16px;
	text-align: center;
	}
.tagline SPAN {
	background-color: rgba(42,42,42,1.00);
	padding-left: 20px;
	padding-top: 4px;
	padding-bottom: 6px;
	padding-right: 20px;
	border-radius: 7px;
	box-shadow: 0 0 20px rgba(0,0,0,.7);
	text-align: center;
}

h3 {
	color: #472813;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 6px;
}
h3 a {
    color: #959595;
}

h3 a:hover {
    color: #009dae;
    text-decoration: none;
}

h4 {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 18px;
	margin-bottom: 3px;
	color: rgba(50,70,120,1.00);
}
h4 a {
    color: #959595;
}

h4 a:hover {
    color: #009dae;
    text-decoration: none;
}
h5 {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 16px;
	margin-bottom: 3px;
	color: rgba(0,148,108,1.00);
	margin-top: 3px;
}
h5 a {
	color: #472813;
}

h5 a:hover {
    color: #009dae;
    text-decoration: none;
}
h6 {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 14px;
	margin-bottom: 2px;
	color: rgba(50,70,120,1.00);
}
h6 a {
    color: #959595;
}

h6 a:hover {
    color: #009dae;
    text-decoration: none;
}
#footermenu {
	font: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 10px;
	color: rgba(255,255,255,1.00);
	min-height: 100px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-right-color: rgba(255,255,255,1.00);
	margin-bottom: 10px;
	background-color: #000000;
}
#footermenu a:link {
	color: #FFFFFF;
	text-decoration: none;
} 
#footermenu a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}  
#footermenu a:hover {
	color: #F8EA33;
	text-decoration: underline;
} 
div.creditscopyright {
	padding-left: 15px;
	padding-right: 10px;
	color: rgba(255,255,255,1.00);
	font-size: 10px;
	height: 30px;
	padding-top: 15px;
	background-color: rgba(0,0,0,1.00);
}
.creditscopyright a:link {
	color: #FFFFFF;
	text-decoration: none;
} 
.creditscopyright a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}  
.creditscopyright a:hover {
	color: #F8EA33;
	text-decoration: underline;
} 
div.col4 {
	float: left;
	width: 23%;
	padding-left: 15px;
}
div.col3 {
	float: left;
	width: 30%;
	padding-left: 15px;
}
div.col2 {
	width: 295px;
	margin-bottom: 10px;
	float: left;
	margin-left: 16px;
	margin-right: 3px;
	display: inline-block;
	margin-top: 10px;
}
.mainborder {
	background-color: rgba(255,255,255,1.00);
	border: 2px solid #121212;
}
.paddeddiv {
	padding-top: 12px;
	min-height: 10px;
	margin-top: 2px;
	margin-bottom: 2px;
	padding-left: 15px;
	padding-right: 15px;
}
.paddeddivalroundright {
	margin-bottom: 10px;
	margin-top: 10px;
	padding-left: 3px;
}
.paddeddivalroundleft {
	margin-bottom: 10px;
	margin-top: 10px;
	padding-right: 3px;
}
.thirdblock{
	width: 275px;
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0;
	margin-right: 5px;
	margin-left: 16px;
	margin-bottom: 18px;
	background-repeat: no-repeat;
	background-position: top left;
	background-image: url(images/tour_bg.gif);
	float: left;
	position: relative;
	background-color: rgba(247,248,222,1.00);
	-webkit-box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	border-radius: 8px;
	border: 1px solid rgba(16,114,127,1.00);
	min-height: 350px;
}
.thirdblock img{
padding:0 0 0 2px;
}
.thirdblock h1
{
	font-size: 20px;
}
.thirdblock h2{
	display: block;
	font-size: 18px;
	color: #333333;
	padding-top: 6px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.thirdblock h3{
	display: block;
	font-size: 16px;
	color: #333333;
	padding-top: 6px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.thirdblock h4{
	display: block;
	font-size: 14px;
	color: #333333;
	padding-top: 6px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.thirdblock h5{
	display: block;
	font-size: 12px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.thirdblock p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	padding-bottom: 4px;
	font-size: x-small;
	color: rgba(59,59,59,1.00);
}
.details{
background:url(images/details_bg.gif) top left no-repeat;
display:block;
line-height:17px;
width:179px;
padding:0 0 0 12px;
color:#FFFFFF;
text-decoration:none;
}
.thirdblock a:link {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
} 
.thirdblock a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.thirdblock a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.fullwidthbar {
	width: 1024px;
	text-align: center;
}
.bottommenu
{
	background-color: rgba(4,41,58,1.00);
	height: 0px;
	width: 1024px;
}
.newsblock {
	width: 600px;
	float: left;
	padding-top: 10px;
	padding-right: 0;
	padding-left: 10px;
	padding-bottom: 0px;
	background-color: rgba(227,227,227,1.00);
	margin-top: 4px;
	margin-bottom: 12px;
	margin-left: 15px;
	margin-right: 15px;
	border-radius: 6px;
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
}
.newsblock h1
{
	font-size: 18px;
}
.newsblock h4{
	display: block;
	font-size: 18px;
	color: #AA0104;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.newsblock h5{
	display: block;
	font-size: 12px;
	color: #AA0104;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.newsblock p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	font-size: small;
	color: rgba(71,40,19,1.00);
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	font-weight: normal;
}
.newsblock a:link {
	color: rgba(170,1,4,1.00);
	text-decoration: none;
} 
.newsblock a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.newsblock a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.leftsidebarphoto {
	padding-top: 6px;
	padding-bottom: 6px;
}
.rightsidebarphoto {
	padding-top: 6px;
	padding-bottom: 6px;
}
.RightFloatImage {
	margin-top: 12px;
	margin-right: 4px;
	margin-bottom: 12px;
	margin-left: 12px;
	float: right;
	border: 0px;
	padding: 1px;
	border-color: #021a40;
	border-style: solid;
}
.RightFloatPayPal {
	width: 350px;
	float: right;
	border: 0px;
	border-color: #021a40;
	border-style: solid;
	margin-bottom: 6px;
}
.LeftFloatPayPal {
	width: 300px;
	float: left;
	border: 0px;
	border-color: #021a40;
	border-style: solid;
	margin-top: 5px;
	margin-right: 10px;
}
.coverwipaypal {
	width: 250px;
	margin-top: 12px;
	margin-right: 4px;
	margin-bottom: 12px;
	margin-left: 12px;
	float: right;
	border: 0px;
	padding: 1px;
}
.LeftFloatImage {
	margin-top: 6px;
	margin-right: 20px;
	margin-bottom: 30px;
	margin-left: 4px;
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	border: none;
}
.LeftFloatImageBorder {
	margin-top: 6px;
	margin-right: 20px;
	margin-bottom: 30px;
	margin-left: 4px;
	float: left;
	border: thin solid #000000;
}
.LeftFloatImageBorderDS {
    margin-top: 6px;
    margin-right: 20px;
    margin-bottom: 30px;
    margin-left: 4px;
    float: left;
    border: thin solid #000000;
    -webkit-box-shadow: inset -8px -10px 5px #555555;
    box-shadow: inset -8px -10px 5px #555555;
}
.LeftFloatMap {
	margin-top: 12px;
	margin-bottom: 12px;
	margin-left: 15px;
	float: left;
	border: 0px;
	padding: 1px;
	border: none;
}
.sectionmenu
{
	text-align: center;
	background-color: rgba(103,103,103,1.00);
	padding-bottom: 4px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	color: rgba(255,255,255,1.00);
	border-style: solid;
	border-top-width: thin;
	border-bottom-width: thin;
	height: 20px;
	vertical-align: middle;
	padding-top: 4px;
}
.sectionmenu SPAN {
	background-color: rgba(50,70,120,1.00);
	text-decoration: none;
	color: #FFFFFF;
	color: #FFFFFF;
} 
.sectionmenu p {
	color: #FFFFFF;
}
.sectionmenu a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.sectionmenu a:visited {
	color: rgba(238,238,238,1.00);
	text-decoration: none;
}  
.sectionmenu a:hover {
	color: rgba(253,253,253,1.00);
	text-decoration: underline;
} 
.sectionmenu SPAN a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.sectionmenutall
{
	text-align: center;
	background-color: rgba(4,41,58,1.00);
	padding-bottom: 12px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	color: rgba(255,255,255,1.00);
	border-style: solid;
	border-top-width: thin;
	border-bottom-width: thin;
	height: 40px;
}
.sectionmenutall SPAN {
	background-color: rgba(50,70,120,1.00);
	text-decoration: none;
	color: #FFFFFF;
	color: #FFFFFF;
} 
.sectionmenutall a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.sectionmenutall a:visited {
	color: rgba(238,238,238,1.00);
	text-decoration: none;
}  
.sectionmenutall a:hover {
	color: rgba(253,253,253,1.00);
	text-decoration: underline;
} 
.sectionmenutall SPAN a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.listingarea {
}
.listingblock{
	width: 280px;
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0;
	margin-top: 0;
	margin-right: 5px;
	margin-left: 14px;
	margin-bottom: 18px;
	background-repeat: no-repeat;
	background-position: top left;
	float: left;
	position: relative;
	background-color: rgba(247,248,222,1.00);
	-webkit-box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	border-radius: 8px;
	border: 1px solid rgba(16,114,127,1.00);
}
.listingblock img{
padding:0 0 0 2px;
}
.listingblock h1
{
	font-size: 18px;
}
.listingblock h4{
	display: block;
	font-size: 18px;
	color: #333333;
	padding-top: 6px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.listingblock h5{
	display: block;
	font-size: 12px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.listingblock p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	padding-bottom: 4px;
	font-size: x-small;
	color: rgba(59,59,59,1.00);
}
.listingblock a:link {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
} 
.listingblock a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.listingblock a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 

.newrouteblock{
	width: 600px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	margin-top: 4px;
	margin-right: 5px;
	margin-left: 14px;
	margin-bottom: 15px;
	background-repeat: no-repeat;
	background-position: top left;
	position: relative;
	background-color: rgba(229,229,223,1.00);
	-webkit-box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	border-radius: 8px;
	border: 1px solid rgba(16,114,127,1.00);
}
.newrouteblock img{
	padding-top: 6px;
	padding-right: 0;
	padding-bottom: 8px;
	/* [disabled]float: right; */
	border-width: 1px;
	border-color: #000000;
}
.newrouteblock h1
{
	font-size: 22px;
}
.newrouteblock h3{
	display: block;
	font-size: 18px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.newrouteblock h4{
	display: block;
	font-size: 14px;
	color: #333333;
	padding-top: 2px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.newrouteblock h5{
	display: block;
	font-size: 12px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.newrouteblock p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	padding-bottom: 4px;
	font-size: small;
	color: rgba(59,59,59,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.newrouteblock a:link {
	color: rgba(71,40,19,1.00);
	text-decoration: none;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
} 
.newrouteblock a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.newrouteblock a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 

.bottomphoto {
	text-align: center;
}
.webmail {
	padding-top: 6px;
	padding-right: 0;
	padding-left: 0px;
	padding-bottom: 6px;
	text-align: center;
	margin-bottom: 10px;
}
.psmall {
	font-size: 12px;
	font-family: Arial;
	vertical-align: middle;
}

.newsslug {
	width: 620px;
	float: left;
	padding-top: 10px;
	padding-right: 0;
	padding-left: 10px;
	padding-bottom: 0px;
	background-color: rgba(247,248,222,1.00);
	margin-top: 4px;
	margin-bottom: 25px;
	margin-left: 15px;
	margin-right: 15px;
	border-radius: 6px;
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
}
.newsslug h1
{
	font-size: 18px;
}
.newsslug h3{
	display: block;
	font-size: 20px;
	color: #AA0104;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.newsslug h4{
	display: block;
	font-size: 18px;
	color: #AA0104;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 6px;
	text-align: center;
}
.newsslug h5{
	display: block;
	font-size: 12px;
	color: #AA0104;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: center;
}
.newsslug p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	font-size: medium;
	color: rgba(71,40,19,1.00);
	text-align: center;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	font-weight: bolder;
}
.newsslug a:link {
	color: rgba(170,1,4,1.00);
	text-decoration: none;
} 
.newsslug a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.newsslug a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.paddedimg {
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	margin-right: 14px;
	margin-left: 12px;
}
.bookblock{
	width: 600px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	margin-top: 4px;
	margin-right: 5px;
	margin-left: 14px;
	margin-bottom: 15px;
	background-repeat: no-repeat;
	background-position: top left;
	position: relative;
	background-color: rgba(255,255,255,1.00);
	-webkit-box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	border-radius: 8px;
	border: 1px solid rgba(16,114,127,1.00);
	min-height: auto;
}

.bookblock h1
{
	font-size: 20px;
	text-align: left;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 4px;
}
.bookblock h3{
	display: block;
	font-size: 18px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.bookblock h4{
	display: block;
	font-size: 14px;
	color: #333333;
	padding-top: 2px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 6px;
	text-align: left;
}
.bookblock h5{
	display: block;
	font-size: 12px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.bookblock p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	padding-bottom: 4px;
	font-size: small;
	color: rgba(59,59,59,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.bookblock a:link {
	color: rgba(71,40,19,1.00);
	text-decoration: none;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
} 
.bookblock a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.bookblock a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.bookblockmail{
	width: 600px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	margin-top: 4px;
	margin-right: 5px;
	margin-left: 14px;
	margin-bottom: 15px;
	background-repeat: no-repeat;
	background-position: top left;
	position: relative;
	background-color: rgba(255,255,255,1.00);
	-webkit-box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	box-shadow: -4px 4px 4px 3px rgba(217,217,217,1.00);
	border-radius: 8px;
	border: 1px solid rgba(16,114,127,1.00);
	min-height: 360px;
	left: 11px;
}

.bookblockmail h1
{
	font-size: 20px;
	text-align: left;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 4px;
}
.bookblockmail h3{
	display: block;
	font-size: 18px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.bookblockmail h4{
	display: block;
	font-size: 14px;
	color: #333333;
	padding-top: 2px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 6px;
	text-align: left;
}
.bookblockmail h5{
	display: block;
	font-size: 12px;
	color: #333333;
	padding-top: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0px;
	text-align: left;
}
.bookblockmail p{
	padding-top: 0;
	padding-right: 0;
	padding-left: 2px;
	padding-bottom: 2px;
	font-size: small;
	color: rgba(59,59,59,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.bookblockmail a:link {
	color: rgba(71,40,19,1.00);
	text-decoration: none;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
} 
.bookblockmail a:visited {
	color: rgba(50,70,120,1.00);
	text-decoration: none;
}  
.bookblockmail a:hover {
	color: rgba(50,70,120,1.00);
	text-decoration: underline;
} 
.LeftCoverwicaption {
	float: left;
	background-color: rgba(255,255,255,1.00);
	margin-right: 10px;
	margin-bottom: 15px;
	vertical-align: middle;
	width: 275px;
	margin-left: 10px;
	border-radius: 0;
	margin-top: 10px;
}
.LeftCoverwicaption  a:link {
	color: rgba(71,40,19,1.00);
	text-decoration: none;
	font-size: small;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bookcaption {
	font-size: small;
	color: rgba(44,47,103,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
	text-align: center;
}
.bookcaption a:link {
	font-size: xx-small;
	color: rgba(247,248,222,1.00);
}
.bookcaption a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}  
.bookcaption a:hover {
	color: #EEE300;
	text-decoration: underline;
} 
.clothingcaption {
	font-size: small;
	color: rgba(44,47,103,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
	text-align: center;
}
.clothingcaption a:link {
    font-size: xx-small;
    color: rgba(201,0,12,1.00);
}
.clothingcaption a:visited {
    color: #C9000C;
    text-decoration: underline;
}  
.clothingcaption a:hover {
	color: #EEE300;
	text-decoration: underline;
} 
.phototopo {
	padding-top: 8px;
	padding-bottom: 8px;
	border: 1px;
}
.photocaptionk {
	font-size: x-small;
	color: rgba(0,0,0,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-left: 8px;
	text-align: right;
}
.photocaption {
	font-size: xx-small;
	color: rgba(247,248,222,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
	text-align: center;
}
.photocaption a:link {
	font-size: xx-small;
	color: rgba(247,248,222,1.00);
}
.photocaption a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}  
.photocaption a:hover {
	color: #EEE300;
	text-decoration: underline;
} 
.photocaptionk {
	font-size: x-small;
	color: rgba(0,0,0,1.00);
	margin-top: 8px;
	margin-right: 8px;
	margin-left: 8px;
	text-align: right;
}
/* ~~ © Copyright Philip Stone, Discovery Islands media & publishing all rights reserved~~ */
