@charset "utf-8";

@font-face {
    font-family:'Cursive';
    src: url('cursive-font/ttf.ttf') format('truetype'), url('cursive-font/woff.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*@font-face {
    font-family: 'Bombshell Pro';
    src:url('http://laurenandsteven.us/bombshell-font/eot.eot');
    src: local('O'),
        url('http://laurenandsteven.us/bombshell-font/woff.woff') format('woff'),
        url('http://laurenandsteven.us/bombshell-font/woff2') format('woff'),
        url('http://laurenandsteven.us/bombshell-font/ttf.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/

body {
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif !important;
	background-image:url(background2.png);
	/*background-position:center top;*/
	background-repeat:repeat repeat;
	background-attachment:fixed;
	/*background-size:cover;*/
	margin: 0;
	padding: 0;
	color: #424D78;
}

ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px; 
}

a img { 
	border: none;
}

a:link {
	color: #42413C;
	text-decoration: underline; 
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
}

ul.nav {
	list-style: none; 
	 margin: 10px
}
ul.nav li {
	 text-align:center;
	 font-size:20px !important;
	 line-height:1.6em !important;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 0;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #8FEDDA;
}
ul.nav a.current {
	color:#009;
}
.nav.fixed {
    position: fixed;
    top: 0;
}
.sidebar1 p {
	text-align:center;
	font-weight:bold;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
    background-color: rgba(255,255,255,0.7);
	margin: 80px auto 100px auto;
}

.header {
	float: none;
	text-align:center;
	margin-bottom:50px;
}

#header {
	font-family:'Cursive';
    /*font-family: 'Bombshell Pro';*/
	font-size:80px;
	line-height:1.6em;
	margin-bottom:0px;
}

.sectionheader {
	text-align:center;	
}

.center {
	text-align:center;
}

.peopletable {
	margin-left:auto;
	margin-right:auto;
	font-weight:bold;
}

.peopletable img {
	height:200px;
	width:150px;
}

.honeymoontable img {
	width:250px;
	height:auto;
}

.honeymoontable {
	margin-left:auto;
	margin-right:auto;
	font-weight:bold;
	width:780px;
}

.sidebar1 {
	float: left;
	width: 180px;
}
.content {
	
	padding: 10px 0;
	width: 780px;
	float:left;
}

.content img {
	max-width:100%;
	max-height:100%;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}



/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}