/* FILE:  layout.css  
 * -----------------
 * Contains the CSS layout and text styling elements for the dolphin
 * international website.
 *
 * Author:  Adam Toda
 * Contact:  adam.toda@gmail.com
 */
 
 html, body {
	height: 100%;	 
 }
 
 body {
	text-align: center;
	margin: auto;
	background: white;
 }
 
 
 /* MAIN CONTENT AREA CSS ELEMENTS */
 
 #mainContent {
	height: 100%;
	position: relative;
	width: 937px;
	text-align: center;
	margin: auto;
	background: url("mainBG.gif");
	
	/* added */
	display: table;
	padding:0px;
 }
 
 #contentContainer {
	position: relative;
	width: 899px;
	text-align: center;
	margin: auto;
 }
 
 
 /* HEADER CSS ELEMENTS */
 
 #header {
	position: relative;
	width: 899px;
	height: 233px;
	margin: auto;
	text-align: center;
 }
 
 #returnHomeLogoLink {
	position: absolute;
	cursor:pointer;
	width: 209px;
	height: 111px;
	top: 11px;
	left: 27px;
	z-index: 2;
 }
 
 
 /* SIDEBAR CSS ELEMENTS */
 
 #sidebar {
	float: left;
 	width: 215px;
	display: inline;
	border-bottom: 1px solid white;
 }
 
 #sidebar a {
	text-decoration: none;
	color: #1b4e71;
 }
 
 .navigationLink {
	text-align: left;
	background: #d3e2ed;
	border-top: 1px solid white;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 10px;
	
	cursor: pointer;
	font-family: arial, verdana, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	color: #1b4e71;
 }
 
 .navigationLinkText {
	margin-left: 37px;
 }
 

 .currentNavigationSection {
	text-align: left;
	background: #cacaca;
	border-top: 1px solid white;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 10px;
	
	cursor: pointer;
	font-family: arial, verdana, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	color: #1b4e71; 
 }
 
 .sidebarInfo {
	background: #b9cbd7;
	padding: 20px 10px 20px 10px;
	text-align: justify;
	border-top: 1px solid white;
	
	font-family: arial, verdana, sans-serif;
	font-size: 10pt;
	line-height: 16px;
	color: black;
 }
 
 .sidebarInfoTitle {
	text-align: center;
	font-size: 11pt;
	font-weight: bold;
	color: #1b4e71;
 }
 

 /* PAGE CONTENT AREA CSS ELEMENTS */
 
 #pageContent {
	float: right;
	display: inline;
	width: 627px;
	margin-right: 31px;
	
	text-align: left;
	font-family: arial, verdana, sans-serif;
	font-size: 10pt;
	line-height: 18px;
	color: black;
 }
 
 #pageContent img {
	border: 1px solid #8f8f8f;	 
 }
 
 #pageTitle {
	font-size: 13pt;
	color: #cacaca;
	font-weight: bold;
 }
 
 #footer {
	float: right;
	display: inline;
	
	width: 627px;
	margin-right: 31px;
	padding-top: 50px;
	padding-bottom: 10px;
	
	text-align: center;
	font-size: 7pt;
	font-family: arial, verdana, sans-serif;
	color: black;
 }
 
 
 /* HOMEPAGE CSS ELEMENTS */
 
 #quote {
	padding-top: 20px;
	padding-bottom: 20px;
	margin: auto;
	text-align: center;
	width: 100%;
	
	font-size: 13pt;
	font-style: italic;
	font-weight: bold;
	color: #1b4e71;
 }
 
 #quote img {
	 margin-bottom: -5px;
	 border: none;
 }
 
 #homepageLeftColumn {
	 float: left;
	 display: inline;
	 text-align: justify;
	 line-height: 18px;
	 width: 392px;
 }
 
 #homepageRightColumn {
	float: right;	 
	display: inline;
 }
