/* 16/06/2010 http://www.kalloraretreat.com.au/ screen css */
/* copyright http://www.bigvolcano.com.au/docs/company.htm */

@charset "utf-8";


body  {
			margin: 0 auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
			padding: 0;
			width: auto;
			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 */
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: 100%;
			color: #32701D;
			font-weight: normal;
			background-color: #EFF2D6;
			background-repeat: repeat;
			background-position: center bottom;
			background-attachment: fixed;
			background-image: url(2009/cougals117Big1.jpg);
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

.skipLinks {
			display: none;
			text-align: left;
}

#container {
			width: 56em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
			margin: 0 auto;
			text-align: left;
			opacity: 0.95;                    /* Firefox, Safari(WebKit), Opera.  NOTE: IE opacity control conflicts with a:active, a:hover and Google maps overlay in XP and below*/
			-ms-filter: "alpha(opacity=95)"; /* IE 8 */
			filter: alpha(opacity=95);       /* IE 4-7 */
			zoom: 1;       /* set "zoom", "width" or "height" to trigger "hasLayout" in IE 7 and lower */
			background-color: #EFF2D6;
}


/* header styles */

#header {
			background:  ;
			text-align: center;
			font-family: Arial, Helvetica, sans-serif;
			padding-top: 0;
			padding-right: 10px;
			padding-left: 10px;
			margin-bottom: 5px;
			color: #245935;
}

#header .floatLefticon {
			float: left;
			margin-right: -50px;
			padding: 15px 5px 10px 50px;
}

#header .floatRighticon {
			float: right;
			margin-left: -50px;
			padding: 15px 50px 10px 5px;

}

#header .banner {
			width: 100%;
			height: auto;
			margin: 5px 0px;
			padding: 5px 0px;
}

#header .banner img {
			padding: 10px;
}


 
/* header styles */

#header	h	{ font-family: "Trebuchet MS", Verdana, Arial, sans-serif; }
 
#header h1 {
			font-family: "Book Antiqua", "Palatino Linotype", "Times New Roman", serif;
			font-size: 3em;
			font-style: italic;
			letter-spacing: 3.5px;
			margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
			padding: 5px 0 15px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
			vertical-align: middle;
			word-spacing: 3px;
}

#header h2 {
			font-size: 1.3em;
			font-weight: normal;
			font-style: italic;
			letter-spacing: 2px;
			margin-top: -5px;
}

#header h3 {
			font-size: .95em;
			font-weight: bold;
			font-style: italic;
			letter-spacing: 1px;
			margin-top: 5px;
			word-spacing: 2px;
}


/* mainContent custom classes */

#mainContent a:visited,
a.pageToptext:visited,
#footer a:visited {
			color: #448888;
			font-style: italic;
}


/* mainContent styles */

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. 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.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/

#mainContent {
			margin: 0em 1.5em 0;
}

#mainContent h { font-family: "Trebuchet MS", Verdana, Arial, sans-serif;}  /* Same font-family as Header h2 */

#mainContent h1 {
			font-size: 1.5em;
			font-style: italic;
			letter-spacing: 8px;
			text-align: left;
			font-weight: bold;
			margin-top: 2.2em;
			margin-bottom: 1em;
			font-variant: normal;
			color: #FF3C3C;
			text-decoration: underline;
			filter: Blur(Color=#FF3C3C;, Direction=80, strength=10); /* text drop shadow IE only*/
			text-shadow: 4px 2px 5px #FF3C3C; /* text drop shadow FF, Safari*/
}

#mainContent h2 {
			font-size: 1.2em;
			font-style: italic;
			letter-spacing: 5px;
			font-weight: bold;
			width: 320px;
			padding-top: 10px;
			padding-bottom: 10px;
			margin-top: 5px;
			margin-bottom: 10px;
			border-bottom-width: 1px;
			border-bottom-style: solid;
			float: none;
			padding-left: 5px;
}

#mainContent h3 {
			font-size: 1em;
			font-style: italic;
			letter-spacing: 3px;
			font-weight: bold;
			padding-left: 10px;
			margin: 0px;
			padding-top: 10px;
			padding-bottom: 5px;
}
.starRating {
			font-size: 0.85em;
			font-style: italic;
			color: #245935;
			font-weight: bold;
}

#mainContent .banner {
			width: 100%;
			height: auto;
			margin: 5px 0px;
			padding: 5px 0px;
}
#mainContent .banner img {
			padding: 10px;
}

#mainContent .bgHighlight /* highlight box settings */ {
			font-style: italic;
			font-size: 0.95em;
			background-color: #D2E0E6;
			display: block;
			overflow: hidden;
			padding-left: 5px;
			padding-right: 5px;
			width: auto;
			float: left;
			margin: 10px 0px;
}

#mainContent .boldred {
			color: #FF0000;
			font-weight: bold;
}

#mainContent .center {
			margin-right: auto;
			margin-left: 200px;
			padding: 5px;
			height: auto;
			width: 200px;
}

#mainContent .kudos {
			color: #97004B;
			text-align: left;
			font-family: "Times New Roman", Times, serif;
			font-size: 1.1em;
			font-style: italic;
			list-style-position: outside;
			margin-top: 1px;
			margin-bottom: 1px;
}


.guest {
			font-family: "Times New Roman", Times, serif;
			font-style: italic;
			color: #2C559A;
			font-size: 1em;
}

.guest2 {
			font-family: "Arial Rounded MT Bold", Avalon, "Minya Nouvelle";
			font-size: 0.90em;
			font-style: italic;
}


/* mainContent float classes */ 

.floatLeft {
			padding: 5px 20px 5px 5px;
			float: left;
}

.floatRight {
			padding: 5px 5px 5px 10px;
			float: right;
}

.floatLeftGoogleMap {
			float: left;
			padding: 5px;
			margin: 0px 30px 5px 5px; /* IE display bugs fix, WMW DrDoc */
			text-align: left;
			height: auto;
			width: auto;
}

/* Attempt to fix IE opacity conflict with Google maps overlay in XP and below*/

.overlayGoogleMap {
			opacity: 0.99;                    /* Firefox, Safari(WebKit), Opera.  NOTE: IE opacity control conflicts with a:active, a:hover and Google maps overlay in XP and below*/
			-ms-filter: "alpha(opacity=99)"; /* IE 8 */
			filter: alpha(opacity=99);       /* IE 4-7 */
			zoom: 1;       /* set "zoom", "width" or "height" to trigger "hasLayout" in IE 7 and lower */
}
.floatLeftTripAdvisor {
			padding: 5px 10px 5px 30px;
			float: left;
			height: auto;
			width: 340px;
			margin: 5px 10px 5px 30px;
}


/* END Attempt to fix IE opacity conflict with Google maps overlay in XP and below*/

.floatRightSpecials {
			float: right;
			padding: 5px;
			margin: -20px 5px 20px 20px;
			clear: none;
			width: 420px;
			height: auto;
			border-left: 1px solid #32701D;
			border-right: 1px solid #32701D;
}


.floatRightWeather {
			float: right;
			padding: 5px;
			margin: 5px 40px 5px 15px;
			display: inline-block; /* IE display bugs fix, WMW DrDoc */
			text-align: center;
			font-size: 85%;
}

/* START UL float classes */ 

.floatLeftul {
			padding: 10px 10px 5px 0px;
			margin: 5px 10px 5px 25px; /* IE display bugs fix, WMW DrDoc */
			width: 370px;
			float: left;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 0.95em;
			word-spacing: 1px;
			letter-spacing: 1px;
}

.floatRighttul {
			padding: 0px 0px 5px 15px;
			margin: 0px 5px 5px 15px; /* IE display bugs fix, WMW DrDoc */
			width: 370px;
			float: right;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 95%;
			word-spacing: 1px;
			letter-spacing: 1px;
}

/* END UL float classes */ 

/* START image floats */

.floatrightHosts {
			float: right;
			width: 220px;
			height: 200px;
			margin: 0; /* IE display bugs fix, WMW DrDoc */
			padding: 0px;
			text-align: center;
			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-top-color: #999;
			border-right-color: #555;
			border-bottom-color: #555;
			border-left-color: #999;
}

.floatLeftPhotos {
			float: left;
			border: 1px solid #C4E3D8;
			padding: 10px;
			margin: 0px 20px 5px 10px;
}

.floatRightPhotos {
			float: right;
			border: 1px solid #C4E3D8;
			padding: 10px;
			margin: 0px 10px 5px 20px;
			clear: none;
}

.floatRightbannerPhotos {
			float: right;
			padding: 5px;
			margin: 5px;
			clear: both;
			width: auto;
}

/*.floatRightbannerPhotos img  { margin: 5px 5px 20px; } vertical banner photo display */

/* END image floats */

/* Album float classes */ 

.floatLeftAlbum {
			float: left;
			padding: 10px;
			margin: 0px 20px 5px 10px;
			height: auto;
			width: auto;
}

.floatRightAlbum {
			float: right;
			padding: 10px;
			margin: 0px 10px 5px 20px;
			clear: none;
			height: auto;
			width: auto;
}

.floatRightAlbum .title,
.floatLeftAlbum .title {
			padding-top: 10px;
			padding-bottom: 10px;
			text-align: center;
			font-size: 0.80em;
}

/* END Album float classes */ 

/* tariffs.htm table settings */

#Tariffs h3 {
			font-size: 1.1em;
			line-height: 7px;
			margin-top: 10px;
			margin-bottom: -5px;
}

#mainContent table {
			border-top: 1px solid #32701D;
			border-left: 1px solid #32701D;
			border-right: 1px solid #32701D;
			border-collapse: collapse;
			width: 98%;
			text-align: left;
		}
		
#mainContent #Tariffs {
			margin: 5px 5px 20px;
}
	
th {
			border-right: 1px solid #32701D;
			border-bottom: 1px solid #32701D;
			bgcolor: 0000FF;
			background: #32701D;
			color: #FFFF00;
			font-family: Verdana, sans-serif;
			font-size: 0.8em;
			text-align: left;
			padding: 5px;
}
	
td {			
			border-right: 1px solid #32701D;
			border-bottom: 1px solid #32701D;
			font-size: .90em
			padding: 5px;
			text-align: center;
			width: 25%;
}

#Tariffs .suite  {
			background: #FFFF99;
			font-weight: bold;
}

.Terms {
			list-style: disc outside;
			padding-top: 0px;
			font-size: 0.90em;
}

.staytype {
		font-size: 0.9em;
		font-weight: bold;
		color: #CE2900;
}

/* END tariffs.htm table settings */

/*.bulletList li {
			list-style-type: disc;
			list-style-position: outside;
			padding-top: 5px;
			padding-bottom: 5px;
}

.bulletListNone {
			list-style-type: none;
			list-style-position: outside;
			padding-top: 5px;
			padding-bottom: 5px;
}*/


.centertitlesmalltext {
			font-size: 0.90em;
			text-align: center;
			margin-top: 0px;
}

.smallemtext {
			font-size: 0.85em;
			font-style: italic;
			color: #245935;
			font-weight: bold;
}

.smalltext-8 {
	font-size: .80em;
	text-align: left;
}

.smalltext {
			font-size: .9em;
}


.advisetext {
			font-size: 0.7em;
			text-align: left;
}



/* Twitter settings */

/* #twitter {
padding: 5px;
height: auto;
width: 70px;
float: right;
margin: 0px 30px;
} */

/* enquiry.htm form settings */

.smallemtextDate {
			font-size: 0.75em;
}

.mapsmalltext {
			font-size: 0.90em;
			text-align: left;
}

.pageToptext {
			font-size: 0.80em;
			float: right;
			margin-top: 20px;
			margin-bottom: 0px;
}

.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:0;
    font-size: 1px;
    line-height: 0px;
}

/* END mainContent settings */

.smallfootercontact {
			font-size: 0.9em;
			text-align: center;
			margin-top: 0px;
}

.smallemtextDate {
			font-size: 0.75em;
}


.Post  {
			float:right;
			margin-bottom:10px;
			margin-left:-10px;
			margin-right:50px;
			margin-top:0;
			padding-bottom:5px;
			padding-left:0;
			padding-right:50px;
			padding-top:0;
}

#footer {
			padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
			margin-bottom: 10px;
}

#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 */
			color: #666666;
}

#footer .copyright {
			font-family:Arial, Helvetica, sans-serif; /* Menu font */
			clear: both;
			text-align: left;
			font-size: 0.73em;
			padding-top: 10px;
			padding-bottom: 10px;
			font-style: italic;
}
