/* CSS Document */


#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 500; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: inherit; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 450; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background:url(images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color:inherit; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #fff; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}	 	

#overlay{ position: absolute; top: 0; left: 0; z-index: 440; width: 100%; height: 500px; background-color: #000; }






.example {
	background: ;
	padding: 0;
}

.menu {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;

}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
	color: #fff;
	background: #D39B9B;
}

.menu {
	width: 130px;
	font-size:14px;
	font-weight:bold;
	color: #fff;
}

.menu ul {
	width: 130px;
	font-size:14px;
	font-weight:bold;
	color: #fff;
}

.menu a, .menu a:visited {
	text-decoration: none;
	color: #fff;
	padding: .4em 5px;
	display: block;
}

.menu a:hover, .menu li:hover>a {
	color: #fff;
	background-color:#863B3B;
}

.menu li {	/* create borders around each item */
	border: 1px solid #fff;

}
.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
		border: 1px solid #fff;
}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 90%;
	color: #fff;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #fff;
}







<!--[if lte IE 6]>
/*<![CDATA[*/

/* - - - ADxMenu: BASIC styles - - - */

/*
	this rules improves accessibility - if Javascript is disabled, the entire menu will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.yu/adxmenu/examples/ie6-double-style/
 */
.menu ul {
	visibility: visible;
	position: static;
}

.menu, .menu ul {	/* float.clear */
	zoom: 1;
}

.menu li.adxmhover {
	z-index: 10000;
}

.menu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menu .adxmhoverUL {	/* submenu goes to the right */
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menu li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menu li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menu a:hover, .menu .adxmhoverA {		/* li:hover>a selector */
	color: #fff;
	background-color:#863B3B;
}

.menu a:visited {
	color:#fff;
}
.menu .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 90%;

}

/*]]>*/


















html {  
background-color : #7C3435;

}

body {

}

#container {
position:relative;
text-align:left;
margin-left:auto;
margin-right: auto;
width:50em;

}
#header {
position:absolute;
background: url(images/header.jpg) center;
height: 95px;
width:800px;
top:-10px;

}

#pics {
position:absolute;
background: url(images/front_banner.jpg);
height:220px;
width:800px;
top:88px;
}



#divider1 {
position:absolute;
top:85px;
background:url(images/divide.jpg) repeat-x;
width:800px;
height:3px;
}

#divider2 {

position:absolute;
top:308px;
background:url(images/divide.jpg) repeat-x;
width:800px;
height:3px;
}


#divider3 {

position:absolute;
top:961px;
background:url(images/divide.jpg) repeat-x;
width:800px;
height:3px;
}



#content {
position:absolute;
	float:left;
	top:311px;
	width:780px;
	height:650px;
	color:#380E0F;
	background-color:#ECCCCD;
	font-family:lucida sans, Arial, sans-serif;
	font-size: 18px;
	margin-left: 0px;
	padding-left: 10px;
	padding-right: 10px;
}

h3 {
color:#380E0F;
}

.parties_img {
margin-top:8px;
padding-bottom:10px;
margin-left:210px;
background:url(images/parties_img.png) no-repeat;
height:60px;

}

.wedding_img {
margin-top:8px;
padding-bottom:10px;
margin-left:300px;
background:url(images/wedding_img.png) no-repeat;
height:60px;
}

.events_img {
margin-top:8px;
padding-bottom:10px;
margin-left:340px;
background:url(images/events_img.png) no-repeat;
height:60px;
}

.welcome_img {
margin-top:8px;
padding-bottom:10px;
margin-left:310px;
background:url(images/welcome_img.png) no-repeat;
height:60px;
}

.exotic_img {
margin-top:8px;
padding-bottom:10px;
margin-left:300px;
background:url(images/exotic_img.png) no-repeat;
height:60px;
}

.holiday_img {
margin-top:8px;
padding-bottom:10px;
margin-left:300px;
background:url(images/holiday_img.png) no-repeat;
height:60px;
}

.about_img {
margin-top:8px;
padding-bottom:10px;
margin-left:350px;
background:url(images/about_img.png) no-repeat;
height:60px;
}

.contact_img {
margin-top:8px;
padding-bottom:10px;
margin-left:330px;
background:url(images/contact_img.png) no-repeat;
height:60px;
}

.quotes_img {
margin-top:8px;
padding-bottom:10px;
margin-left:270px;
background:url(images/quotes_img.png) no-repeat;
height:60px;
}

.classes_img {
margin-top:8px;
margin-left:340px;
background:url(images/classes_img.png) no-repeat;
height:60px;
}

.client_img {
margin-top:8px;
padding-bottom:10px;
margin-left:330px;
background:url(images/clients_img.png) no-repeat;
height:60px;

}


div.gallery {

position:absolute;
overflow:scroll;
top:50px;
width:600px;
height:560px;
background-color:;
margin-left:160px;
padding: 5px;
z-index:1;
font-size:14px;
color:#380E0F;
font-family:Arial, Helvetica, sans-serif;
}

div.quotes {

position:absolute;
overflow:scroll;
top:50px;
width:500px;
height:560px;
background-color:;
margin-left:190px;
padding: 5px;
z-index:1;
font-size:14px;
color: #380E0F;
font-family:Arial, Helvetica, sans-serif;
}

img {
padding:5px;
border:none;
vertical-align:middle;
}

div.nav {
position:absolute;
top:620px;
width:610px;
margin-left:10px;
height:30px;
background-color:#CC9900;
margin-left:10.5px;

}

#footer {
position:absolute;
width:800px;
height:30px;
background:url(images/footer.jpg) no-repeat;
margin-bottom:5%;
top: 964px;
text-align:center;
font-size:10px;
font-family:Arial, Helvetica, sans-serif;
}

#text_area {
position:absolute;
overflow:scroll;
top:50px;
width:600px;
height:560px;
background-color:;
margin-left:160px;
padding: 5px;
z-index:1;
color:380E0F;
}

.form_box {
background-color:;
font-family:Arial, Helvetica, sans-serif;
padding:10px 0 10px 105px;
font-size:14px;
border-style:solid;
border-color:#863B3B;
width:400px;

}



a:link {color:#fff;}
a:visited {color:#606060;}
a:hover {color:#964B4B;}
a:active {color:#fff;}

a.ny1:link {color:#692E2E;}
a.ny1:visited {color:#606060;}
a.ny1:hover {color:#964B4B;}
a.ny1:active {color:#692E2E;}


li {
font-size:1.2em;
font-family:Arial, Helvetica, sans-serif;
}

p.market {
font-size:18px;
text-align:center;
font-style:oblique;
font-family:Georgia, "Times New Roman", Times, serif;
}

h3 {
font-weight:bold; 
font-size:20px;
color:#000000; 
text-align:center; 
text-decoration:underline;
}

div.classes_menu {
font-size:16px;
}

ul.classes_list {
list-style-type:circle;
font-size:16px;
font-weight:100;
}



blockquote {
font-style:italic;
font-size: 16px;
font-weight:bold;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-variant:small-caps;
}

ol {
list-style-type: circle;
}

abouttxt {
font-size:14px;
}
