/* CSS for 3 column, cross-browser compatibility */
html, body {
	margin: 0;
	padding: 0;
	border: 0;
	background-repeat:repeat;
	background-color: #CCCCCC;
}

body {
	color: #000000;
	font-family: Verdana, Arial, Helvetica, "times new roman", sans-serif;
	font-size: 90%;
	text-align: center;
	/* margin: 0px 0; */
	line-height: 150%; 
	font-weight: normal;
	background-color: #CCCCCC;
}

p {
	margin: 6px 6px 12px 6px;
	padding: 0 6px;
	font-size: small;
}

h1 {
	border-style:groove;
	border-width:0px;
	text-align: left;
	color: #000000;
	margin-bottom: 1.5em;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: x-large;
	margin-top:0.5em;
	padding-left:4px;
	padding-right:4px;
	padding-top:1px;
	padding-bottom:1px;
	line-height:150%;
}

.center h1 {
	text-align: center;
	color: #CCCCCC;
}

h2 {
	text-indent: 10px;
	margin-top:20px;
	font-size:medium;
	color:#000000;
	margin-bottom:12px;
	line-height:150%;
	text-align: left;
	/* margin: 20px 10px 5px 5px; */
}
h3 {
	text-indent: 10px;
	font-family: Verdana, Arial, Helvetica;
	font-size: medium;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	margin-top:14px;
	margin-bottom:6px;
	text-align: left;
}

h4{
	border:1px dotted #008080; font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight:bold;
	font-style:normal; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px}

h5{
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-weight:normal;
	font-style:normal;
}

h6{
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-weight:normal;
	font-style:normal;
}

table {
	margin: 0px 20px 0 20px;
}

.clear { clear: both; }

.alignright {margin-top: 0; text-align: right; clear: both;}

.small {font-size: .9em;}

.wide {
	width: 100%;
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
}

/* .wide p {
	position: relative;
	color: #000000;
	line-height: normal;
}
*/

.top {
	border-bottom: 1px solid #000;
	height: 136px;
	background: #007275 url(../images/beachbg.jpg);    /* header color and image */
}

.top a {position: absolute; right: 20px; text-align: right; font-weight: bold; font-size: .7em; color: #fff;}

.bottom {
	border-top: 1px solid #000;
	position: relative;
	text-align:center;
	/* height: 50px; 
/*	background-image: url(/lemolobeach/images/rocks1.jpg);
	background-repeat: repeat-x; */
}

.testfloat {width: 50px; border: 2px solid #f90; background: #ffd; font-size: .7em;}

.to-right {float: right;}

.to-left {float: left;}


.to-center {
	clear: both;
	margin: 6px 0px 6px 0px;
	text-align: center;
}


.right .to-center {
	margin: 20px auto;
}

.ap-test {
	position: absolute;
	top: -102px;
	font-size: 0.6em;
	width: 150px;
	height: 100px;
	border-top: 1px solid #000;
	background: #5b5;
	color: #99CCCC;
}

/* \*/
* html .ap-test {
top: -101px; 
t\op: -102px; 
}
/* */

.ap-left {left: 0;}

.ap-right {right: 0;}


/*XXXXXXXXXXXXXXXXX Primary layout rules XXXXXXXXXXXXXXXX*/

/******************************************************************************** 
To adjust the side col widths, or the vertical col dividers, a certain set of values must be changed
all at the same time and by exact amounts or problems will result. Each of these group's member values
have been marked off with comments that start with "Critical...". For example, if the left col width needs
to be changed then all the values marked "Critical left col dimension value" MUST have their pixel values
altered by the same amount. Certain of these left col width values are marked "(moves inversly)", and 
these get changed by the same pixel amount but inversly to the other values. So if margin-left on .outer
is increased by 10px, then the width of .outer must decrease by 10px, and so on.

To change the width of the entire layout, .wrapper, .outer, .float-wrap, and .center all get changed together,
and only after that is it safe to change col or divider widths. Remember, even one small mistake will degrade or 
even break the layout, so be very careful! it's possible to "loosen" the layout so small errors aren't so messy,
but then it becomes hard to finely control text spacing. 

For spacing within the cols, it's best to apply margins on content elements inserted into the cols, 
because padding directly on those col elements will change their widths, breaking the layout. 

Certain hiding hacks have been used extensively in this layout, so here is a quick explaination of them.

The Tan hack:

* html .anyelement {rules read only by IE/Win and IE/Mac}

The Mac-hack:  (first the active comment you are reading now must be closed...) */

/* \*/

/* */

/*...Back in comment mode now. Anything between those two comment lines will be hidden from 
IE/Mac. Don't use any comments within this hack or it will close prematurely and IE/Mac will begin 
reading before it should.

The above two hacks are combined so as to feed rules only to IE/Win. Proper use of backslash escape 
characters inside property names used in the Holly hack can further segregate rules to be read by only 
IE6 from rules for IE5.x/Win. 

These hiding hacks, along with several other fixes, make possible this formerly impossible layout.
It is highly unlikely that new browsers will have any problem with these valid hiding hacks, and 
Microsoft does not plan any browser changes soon that would alter the proper operation of the layout.
********************************************************************************/


.wrapper {
	margin: 0 auto;
	width: 1024px;
	text-align: left;
	background-color: #EDEDED;
	background-image: url(../images/wlgradient1.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #000;
}

* html .wrapper {   /*** IE5.x/win box model fix ***/
	width: 1024px;
	wid\th: 1022px;
}

.outer {
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	margin-left: 68px;    /*** Critical left col dimension value ***/
	width: 640px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	margin-top: 10px;
	/* margin-top: -30px; */
}

.outer-wide {
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	margin-left: 68px;    /*** Critical left col dimension value ***/
	width: 800px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	border-left: 1px solid #ffffff;   /*** Critical left divider dimension value ***/
	border-right: 1px solid #ffffff;   /*** Critical right divider dimension value ***/
	margin-top: 28px;
	background-color: #FFFFFF;
}

* html .outer {   /*** IE5.x/win box model fix ***/
	width: 680px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	wid\th: 683px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
}

* html .outerwide {   /*** IE5.x/win box model fix ***/
	width: 910px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	wid\th: 913px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
}

.float-wrap {
	float: left;
	width: 640px;
	margin-right: -1px;
}

.float-wrap-wide {
	float: left;
	width: 785px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	margin-right: -1px;   /*** Static fix ***/
}

.center {
	/* float: right; */
	width: 640px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	margin-bottom: -1px;   /*** Fixes a variance in IE/win for the green AP bottom boxes ***/
	/* \*/
	margin-left: -1px;
	float: right;
	/* Hidden from IE-mac */
}

.center-wide {
	float: right;
	width: 900px;   /*** Critical left and right col/divider dimension value (moves inversly) ***/
	margin-bottom: -1px;   /*** Fixes a variance in IE/win for the green AP bottom boxes ***/
	/* \*/
	margin-left: -1px;
}

.left {
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	width: 70px;    /*** Critical left col/divider dimension value ***/
	margin-left: -69px;    /*** Critical left col/divider dimension value ***/
}

* html .left {
float:left;	
}

*>html .left {width:69px;}   /*** Fix only for IE/Mac ***/

.container-left {
	width: 68px;    /*** Critical left col dimension value ***/
	padding-bottom: 110px;   /*** To keep content from going underneath the AP bottom boxes ***/
}

.right {
	float: left;
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	width: 180px;
	voice-family:"\"}\"";
	voice-family: inherit;
	width: 300px;
	margin-left: -1px;
	margin-right: -302px;
	height:540px;
}

/* \*/
* html .right {
	margin-left: 0px; 
	margin-right: -600px; 
	mar\gin-right: -292px;
}
/* */

.right-wide {
	float: left; 
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	width: 72px;    /*** Critical right col/divider dimension value ***/
	margin-right: -70px;    /*** Critical right col/divider dimension value ***/
	margin-left: -1px;   /*** Static fix ***/
}

/* \*/
* html .right-wide {
	margin-left: 0px; 
	margin-right: -600px; 
	mar\gin-right: -70px;
}
/* */

/*** These commented-out rules below are there to explain the "Critical" info 
	for the rules above, because comments must not appear within the Mac-hack.
	The "rules" below are not active, they are just for teaching purposes. ***/

/*
* html .right {
margin-left: 0px;    *** Critical right divider dimension value ***
margin-right: -500px;    *** IE5.x/win fix, must be above a critical number, but very high values appear okay ***
mar\gin-right: -292px;    *** Critical right col/divider dimension value ***
}
*/
/* main navigation layer holding the menu */

#homenav {
	position: absolute;
	width: 179px;
	top: 202px;
	z-index: 1;
	left: 915px;
}

#middlecolGallery {
	z-index: 1;
} 	

.container-right {
	/* \*/width: 260px;
	/* padding-bottom: 110px; */
	margin-left: 3px;
	/* padding-bottom: 100px;   /*** To keep content from going underneath the AP bottom boxes ***/
	/* margin-left: 13px; */
}

.container-right p {
	
}

.container-right h2 {
	margin-top: 0px;
	margin-bottom: 20px;
}

.container-right h1 {
	margin-bottom: 0px;
	
}

.container-right a:link {
	text-decoration: none;
	color: #CCCCCC;
	font-weight: bolder;
}

.container-right a:visited {
	text-decoration: none;
	color: #CCCCCC;
}

.container-right a:active {
	text-decoration: none;
	color: #CCCCCC;
	font-weight: bolder;
}

.container-right a:hover {
	text-decoration: none;
	color: #CCCCCC;
	background-color: #000000;
}


/* \*/
* html .container-right {
	fl\oat: right;
	margin-left: 2px; 
	mar\gin-left: 0px; 
}

.container-right-wide {
	/* \*/width: 70px;/* Hidden from IE-Mac */   /*** Critical right col dimension value ***/
	margin-left: 3px;    /*** Critical right divider dimension value ***/
	padding-bottom: 110px;   /*** To keep content from going underneath the AP bottom boxes ***/
}

/* \*/
* html .container-right-wide {
	fl\oat: right;
	margin-left: 2px; 
	mar\gin-left: 0px; 
}

/*** Static fixes ***/

/*** Below is the Holly hack, and if IE/Win shows bugs it's a good idea to apply this hack to 
	different elements and see if that fixes the problem. Sometimes it may be necessary 
	to use "position: relative;" on certain elements, but it's hard to tell in advance which 
	elements will need such fixes. Here it prevents IE5/Win from clipping the left ends 
	of the headings. ***/
/* \*/
* html h2 {height: 1%;}
/* */


/*** This is a fix for IE5/Win at the largest text size setting. ***/
/* \*/
* html .left {margin-right: -3px;}
/* */


.italics-test, .italics-test-side {
	font-style: italic; 
	text-align: justify; 
	background: #ccd;
	border: 1px solid red;
}

/*** The following fixes prevent justified italic text from destroying the layout in IE/win.
	The problem is that those properties together make IE force the container wider,
	which in this type of floated layout causes a float drop. 	Pre-IE6 gets "width: 100%" 
	and "overflow: hidden", while IE6 gets "width: auto" and "overflow: visible, which 
	is the default, but explicitly stating it seems to keep IE6 happy. IE6 also needs
	to see the "height: 1%" to give it some kind of box dimension. Browser coddling 
	we call it. Finally, Bruno found that "word-wrap: break-word;" disarranged the 
	justified text in IE5.5 and 6, so it is defaulted to "normal" for this text.
	If you don't need justified and italicized text then forget all these fixes ***/

/* \*/
* html .italics-test, * html .italics-test-side {
	overflow: hidden;
	width: 100%;
	o\verflow: visible;
	w\idth: auto;
	hei\ght: 1px;
}
/* */

/*** All the IE fixes that are inside separate "Mac-hacks" may be grouped 	within 
	just one Mac-hack for convenience if desired. However, each fix must come 
	later than the rule it is fixing or the fix itself will be overridden. ***/

#sImage {
	width:250px;
	height:408px;
	z-index: 4;
	position: relative;
	border: 1px solid #000;
	text-align: center;
	margin: 0 20px 0 20px;
}

/* middlecolGallery holds the flash picture gallery photos.asp */

#jumptop {
position: relative; 
float: right; font-size: x-small;
}

#footer {
	line-height: normal;
}

.footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: lighter;
	font-size: x-small;
	color: #000000;
	text-align: center;
	margin-bottom: 5px;
	line-height: 14px;
	padding-right: 238px;
}


.header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 10pt;
	margin-bottom: 0px;
	color: #333333;
	background-color:#FFFFFF;
	text-align: center;
}

/* vertical sidebar */
#sidebar {
	position:absolute;
	border-style:solid;
	border-width:0px;
	top:530px;
	left:0px;
	width:227px;
	height:469px;
	padding: 0px;
	float: left;
	z-index: 3;
} 

#sidebar2 {
  float:left;
  position:relative;
  width:110px;
  height:100%;
  left:0px;
  top:0px;
  z-index:1
} 


.imagemap {
	margin-left:0px;
	margin-right:0px;
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
	padding-left:0px;
	padding-right:0px;
	padding-top:0px;
	padding-bottom:0px;
	empty-cells: show;
}

/* positioners for montage gallery A people*/
#ssp1 {
  border:2px solid #000000; position: absolute;
  z-index: 5;
  width: 424px;
  height: 243px;
  top: 86px;
  left: 115px;
  overflow: hidden;
}
/* positioners for montage gallery B people */
#ssp2 {
  border:2px solid #000000; position: absolute;
  z-index: 4;
  width: 450px;
  height: 300px;
  top: 310px;
  left: 233px;
  overflow: hidden;
}
/* positioners for montage gallery C property */
#ssp3 {
  border:2px solid #000000; position: absolute;
  z-index: 5;
  width: 450px;
  height: 300px;
  top: 590px;
  left: 66px;
  overflow: hidden;
}


ul { 
	list-style-type:circle;
	color: #000000;
	font-size: small;
	padding-right: 5px;
}

ol { 
	list-style-type:decimal;
	color: #000000;
	font-size: small;
	margin-top:0px;
}

li {
	line-height: 1.2em;
	margin-bottom: 6px;
}

a {
  font-family: Verdana, Arial, Helvetica;
}

a:link {
	text-decoration: none;
	color: #FFFF99;
	font-weight: bolder;
}

a:visited {
	text-decoration: none;
	color: #FFFFCC;
	font-weight: bolder;
}

a:active {
	text-decoration: none;
	color: #FFFF66;
	font-weight: bolder;
}

a:hover {
	text-decoration: underline;
	color: #3366CC;
	background-color: #FFFFCC;
}

/* .wide a {
	color: #000000;
	background: none;
	font-weight: normal;
}
*/

div#footer a {
	background: none;
}

.whatsnew {
	border:2px solid #008080;
	table-layout:auto;
	background-color:#fef8ea;
	width: auto;
	font-size: small;
	line-height: 110%;
}

.whatsnew a {
	font-weight: normal;
}

td a {
	font-weight: normal;
}

.nav {
  color: #99CCCC;
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
}

.tblcolor {
  background-color: #FFFFFF;
}

.name {
  font-size: xx-small;
  padding-bottom: 6px;
  font-style: normal;
  font-weight: lighter;
}

.info {
	font-size: 9px;
	font-weight: lighter;
	color: #666666;
	padding-left: 0px;
	margin-top: -25px;
}

th {
	font-family: Arial, Helvetica, sans-serif;
	color: #330000;
	vertical-align: middle;
	background-color:#C6D9CA;
	text-align: center;
	border-bottom: solid #008080 2px;
	padding-right: 10px;
	padding-left: 10px;
}

td  {
	padding-left:3px;
	padding-right:3px;
	text-align: left;
}

.whatsnew td  {
	padding: 6px 3px 6px 3px;
	vertical-align: top;
}

.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: xx-large;
	color: #FFFFFF;
	text-align: left;
	margin-bottom: 0em;
	margin-top: 0em;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 5px;
	padding-bottom: 1px;
	line-height: 120%;
}

.subtitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.3em;
	font-weight: bold;
	color: #CCCCCC;
	margin-left:0px;
	margin-right:0px;
}

.right .subtitle {
	font-size: small;
	text-indent: 0px;
	background-color: #000000;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding: 3px;
	font-style: italic;
}


.quote {
  border-left:2px groove #800000; border-right:3px groove #800000; border-top:2px groove #800000; border-bottom:3px groove #800000; padding:30px; font-family: Georgia, Times New Roman, Times, serif;
  line-height: 1.5em;
  font-weight: bold;
  color: #660000; font-style: oblique; margin-left:100px; margin-right:100px; text-align:center
}

.nav {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: large;
  font-weight: bold;
  background-color: #CCCC66;
}

.date {
  border-style:solid; border-width:1px; font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: x-small;
  font-weight: bold;
  background-color: #C6D9CA;padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px
}

.navLink {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  background-color: #DEDECA;
}

.sidebar {
  color: #660000; font-family: Verdana, Arial, Helvetica, sans-serif; 
  font-size: small;
  padding: 4px;
  background-color: #C6D9CA; margin-left:25px; margin-right:0px
}

.sidebarHeader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	color: #333333;
	background-color: #999999;
	font-weight: bold;
	text-align: center;
	margin-right: 0px;
	margin-top: 0px;
}

.sidebarFooter {
  font-family: Georgia, Times New Roman, Times, serif;
  background-color: #FFFF99;
  color: #990000;
}

.legal {
	font-family: Georgia, Times New Roman, Times, serif;
	color: #000000;
	font-size: 11px;
	text-align: left;
	letter-spacing: normal;
	margin-top: 5px;
	margin-left: 270px;
	margin-bottom: -3px;
}

.box1 {
  border-left:2px dotted #CCCCCC; border-right:2px dotted #333333; border-top:2px dotted #CCCCCC; border-bottom:2px dotted #333333; padding:3px; text-align:center; margin-left:120px; margin-right:120px
}

.promo {
  font-family: Times New Roman, Times, serif;
  color: #000033;
}

.titlebar {
  font-family: Verdana;
  color: #000000;
  background-color: #C6D9CA; font-weight:bold; margin-bottom:3px 
}

.dingbat {
  font-family: Georgia, Times New Roman, Times, serif;
  background-color: #CCCC99;
  color: #660000; font-weight: bolder;
}

input.big {
  width: 100px;
}

input.small {
  width: 50px;
}

hr { border-top:5px groove #C6D9CA;}

p first-letter.initial {
	font-size: x-large; 
	font-family: Times, Palatino, Arial, Helvetica, serif; 
	font-variant: small-caps; 
	color: #007275; 
	font-weight: bold; 
	float:left; 
	padding-top:0px; 
	padding-bottom:0px; 
	padding-right:6px; 
	line-height:100%; 
	margin-top:0
}


img {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-color: #000000;
}

.logo {
	background-color: #CCCCCC;
	padding: 5px;
	margin-right: 10px;
}

.biglink {
	font-size: 16px;
	margin: 3px;
	list-style-type: none;
	padding: 5px;
}
blockquote {
	line-height: normal;
	font-weight: normal;
	margin-left: 25px;
}
.required {
	font-size: larger;
	color: #CC0000;
}
blockquote p {
	margin: 6px;
}
.info a {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	color: #666666;
	font-size: 9px;
}

.info a:hover {
	color: #000000;
	text-decoration: underline;
	background: none;
	
}

.footer a {
	font-size: 10px;
	color: #000000;
	font-weight: normal;
	background: none;
}

.footer a:link {
	text-decoration: none;
	color: #000000;
	font-weight: normal;
}

.footer a:visited {
	text-decoration: none;
	color: #000000;
	font-weight: normal;
}

.footer a:active {
	text-decoration: none;
	color: #000000;
	font-weight: normal;
}

.footer a:hover {
	text-decoration: underline;
	color: #000000;
	font-weight: normal;
}


.tip {
	font: small
	Arial,Helvetica,sans-serif;
	border: solid 1px #666666;
	width: 300px;
	padding: 3px;
	position: absolute;
	z-index: 100;
	visibility: hidden;
	color: #333333;
	top: 60px;
	left: 150px;
	background-color: #CCCCCC;
	layer-background-color: #ffffcc;
	text-align: left;
	letter-spacing: 0.1em;
}
.contactTbl {

}

.contactTbl td {
	border: 1px inset #000000;
}

.pricingTbl {

}

.pricingTbl td, th {
	background-color: #C6D9CA;
	border: 1px inset #000000;

}
#middlecolGallery li {
	margin-right: 20px;
}
#banner {
	text-align: center;
}
#banner a:hover {
	text-decoration: none;
	background: none;

}
#headerCredits {
	display: none;
	
}

.author {
	display: none;
	font-size: 16px;
	font-style: normal;
	
}

.headerSubtitle {
	display: none;
	font-size: 14px;
	font-style: italic;

}
