/* date format dd/mm/yy 17/03/11 http://www.maviseskitchen.com.au screen css */
/* copyright http://www.bigvolcano.com.au/docs/company.htm */

/* Font groups: H: Monotype Corsiva, "Trebuchet MS", Verdana, Arial, sans-serif, body: Verdana, Arial, sans-serif.  Spry Menu font-family: "Book Antiqua", "Palatino Linotype", "Times New Roman", serif */

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;
			width: auto;
			font-family: Geneva, Arial, Helvetica, sans-serif;
			font-size: 100%; /* sizes to visitor's custom font setting if changed from browser default  */
			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 */
			background-color: #E1ECBC;
			background-image: url(../media/2010/Ducklings0309BkgrndA01.jpg);
			background-repeat: repeat;
			background-position: left top;
}

.skipLinks {
			display: none;
			text-align: left;
}
a:link {
			color: #0000FF;
}
a:visited {
			color: #567C03;
}

/* 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.
*/
 #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 */
			background-color: #E1ECBC;
			margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
			border: 1px solid #799F62;
			text-align: left; /* this overrides the text-align: center on the body element. */
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=88)"; /* IE 8 */
			filter: progid:DXImageTransform.Microsoft.Alpha(opacity=88);       /* IE 4-7 */
			zoom: 1;       /* set "zoom", "width" or "height" to trigger "hasLayout" in IE 7 and lower */
			opacity: 0.88;
	} 
	
 #header {
			background-color: #E1ECBC;
			padding: 0 10px 5px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
			text-align: center;
} 
 #header h1 {
	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: 10px 0;
	letter-spacing: 2px;
	color: #567C0E;
	font: 2.3em "Monotype Corsiva", ZurichCalligraphic, serif;
}
#container #header h2 {
			font-size: 1em;
			margin-top: 0px;
			font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
			font-weight: bold;
			color: #295C21;
			text-align: center;
			line-height: 20px;
			margin-top: -5px;
			font-style: italic;
}

 #header  .contact  {
			line-height: 20px;
			font-size: 0.95em;
			margin-top: 5px;
			color: #295C21;
			font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
			font-weight: bold;
			font-style: italic;
}


/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. 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 " #sidebar1 p" rule.
*/
 #sidebar1 {
	float: left;
	width: 10em; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0em 0em 1em;
	margin-bottom: 5px; /* bottom margin padding to position #mainContent text */
	display:inline; /* IE6 double margins fix */
	margin-top: 0px;
}
 #sidebar1 h3,  #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. 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: 0 1.5em 0 11em;
	padding-left: 1em;
}

#container #mainContent .indexPageIMG img { /* rule for index.html only */
			margin-top: 0em;
}

#container #mainContent h1 {
			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: 10px 0;
			font-size: 2.3em;
			letter-spacing: 2px;
			color: #567C0E;
			font-family: "Monotype Corsiva", ZurichCalligraphic, serif;
}

#container #mainContent h2 {
			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: 10px 0;
			font-size: 1.9em;
			letter-spacing: 2px;
			color: #567C0E;
			font-family: "Monotype Corsiva", ZurichCalligraphic, serif;
}

#container #mainContent h3 {
			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: 10px 0;
			font-size: 1.4em;
			letter-spacing: 2px;
			color: #567C0E;
			font-family: "Monotype Corsiva", ZurichCalligraphic, serif;
			text-decoration: underline;
}
#container #mainContent h4 {
			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: 10px 0;
			font-size: .95em;
			letter-spacing: 3px;
			color: #567C0E;
			text-decoration: underline;
			word-spacing: 2px;
			font-style: italic;
}

#container #mainContent h5 {
	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: 10px 0;
	font-size: 0.80em;
	font-style: italic;
	letter-spacing: 1px;
}
.mediumtext {
	font-size: 0.85em;
	font-style: italic;
}

.smalltext {
			font-size: 0.75em;
			font-style: italic;
}
.smalltextLocality {
	font-size: 0.85em;
	font-style: italic;
}

 #footer {
			padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
			background-color: #E1ECBC;
			margin-top: 0px;
} 

 #container #footer h2 {
			font-family: "Monotype Corsiva", ZurichCalligraphic, serif;
			font-size: 1.5em;
			letter-spacing: 2px;
			color: #4B6D0C;
			text-align: center;
			margin-top: 0px;
}

 #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 */
}

 #container #footer .contact {
			font-weight: bold;
			color: #295C21;
			text-align: center;
			line-height: 10px;
			margin-top: -10px;
			font-size: 0.9em;
}


 #footer .copyright {
			font-size: 0.7em;
			text-align: left;
			font-family: Arial, Helvetica, sans-serif;
			color: #003333;
			font-style: italic;
}
 #container #mainContent .weddingshow {
			margin: 5px 10% 5px 15%;
			padding: 10px;
}


/* 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;
}

#Rightdiv img{
	padding: 5px;
	height: auto;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}
#mainContent #Rightdiv {
	height: auto;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	padding: 5px;
	float: right;
}

.floatRightcaption {
	float: right;
	padding: 20px 5px 5px;
	font-size: 80%;
	text-align: center;
	display: inline-block;
	margin-left: 25px;
	display: inline-block;
	margin-right: 5px;
}

.floatRightTripAdvisor {
	float: right;
	height: auto;
	width: 258px;
	margin-top: -65px;
	margin-right: -10px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#mainContent .address li {
	list-style: none;
}

.floatLeftGoogleMap {
	float: left; /* IE display bugs fix, WMW DrDoc */
	text-align: left;
	height: auto;
	width: auto;
	padding: 5px;
	margin-top: 25px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 5px;
}

/* 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 */
	background-color: #FFFFFF;
}

#mainContent .ExternalLinks {
	font-size: 1em;
	display: inline;
	clear: left;
}

#PDFlink a:link {
	border-left: 2px solid #333333;
	border-bottom: 1px solid #333333;
	margin: 0px;
	display: inline;
	text-decoration: none;
	line-height: 25px;
	font-size: .95em;
	padding: 1px;
}

#PDFlink a:visited {
	color: #448888;
	border-left: 3px solid #448888;
	border-bottom: 1px solid #333333;
	padding: 1px;
	text-decoration: none;
	line-height: 25px; /* remove for single line navbar */
	font-style: italic;
}
.MothersDay   {
	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: 10px 0;
	letter-spacing: 2px;
	color: #6600FF;
	font: 1.1em "Monotype Corsiva", ZurichCalligraphic, serif;
}

.EventsBold {
	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: 10px 0;
	letter-spacing: 2px;
	color: #235FCD;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.1em;
	font-style: italic;
	font-weight: bolder;
}


#mainContent   #subnav  {
	text-decoration: none;
	text-align: center;
	font: 1.4em "Monotype Corsiva", ZurichCalligraphic, serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#mainContent table {
	display: inline;
	float: none;
	margin-top: 0px;
	padding: 5px;
	font-size: .80em;
	margin-right: 10%;
	margin-left: 10%;
}

.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;
}
#footer .footernav {
	font-size: .75em;
	text-align: center;
}

