@charset "utf-8";
/* Basic Stuff */

p {margin: 5px 0;}
h1 {font-size: 2em; margin: 15px 0 10px 0;}
h2 {font-size: 1.6em; margin: 10px 0 5px 0;}
h3 {font-size: 1.3em; margin: 10px 0 5px 0;}
h4 {font-size: 1em; margin: 10px 0 5px 0;}
h5 {font-size: .8em; margin: 10px 0 5px 0;}

.header {
	background-image: url(../images/header-background.png);
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;

}

.canvas {
	margin:0 auto;position:relative;
}

body {
	background-color: #d2683e;
	background-image: url(../images/main-bg-gradient.png);
	background-repeat: repeat-x;
	background-position: top;
	margin-top: 0;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: .8em;
	color: #FFF;
	line-height: 150%;
}

.main {
	background-color: #393b3d;
	background-image: url(../images/dk-gray-gradient.png);
	background-repeat: repeat-x;
	background-position: top;
	padding: 0px 20px;
}

.pale-blue {
	background-color: #CEE6EB;
	border: 2px solid #666;
	color: #666;
	margin-right: 20px;
}

.gray-border {
	border: 2px solid #666;
	margin-top: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.main a {
	color: #E8B953;
	font-weight: bold;
	text-decoration: underline;
}

.main a:hover {
	color: #FFD07B;
}


.footer {
	background-color: #A6313F;
	color: #000;
	line-height: 110%;
}
.dreamkissed {
	font-size: .8em;
	color: #F93;
}
.dreamkissed a {
	color: #f93;
}


/* Rounded Corners */

.main {
	-moz-border-radius-bottomleft: 16px;
	-moz-border-radius-bottomright: 16px;
	-webkit-border-bottom-left-radius: 16px;
	-webkit-border-bottom-right-radius: 16px;
	position: relative;
}

.gray-border {
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	position: relative;
}

.footer {
		-moz-border-radius-bottomleft: 16px;
	-moz-border-radius-bottomright: 16px;
	-webkit-border-bottom-left-radius: 16px;
	-webkit-border-bottom-right-radius: 16px;
	position: relative;
}



.main .bl, .main .br, .footer .bl, .footer .br {
  position : absolute;
  width : 15px;
  height : 15px;  /* corner images are 16x16 */
}

/* main area, bottom-left */
	.main .bl {
	  background: url(../images/corners/main-bottom-left.png) no-repeat;
	  bottom : 0;
	  left : 0;
	}

/* main area, bottom-right */
	.main .br {
	  background: url(../images/corners/main-bottom-right.png) no-repeat;
	  bottom : 0;
	  right : 0;
	}

/* footer, bottom-left */
	.footer .bl {
	  background: url(../images/corners/footer-bottom-left.png) no-repeat;
	  bottom : 0;
	  left : 0;
	}

/* main area, bottom-right */
	.footer .br {
	  background: url(../images/corners/footer-bottom-right.png) no-repeat;
	  bottom : 0;
	  right : 0;
	}

/* did not put rounded corner images on gray box because of background gradient issues. will work in firefox, chrome, etc... not in IE8. */

/* Navigation */

.nav {
	position: absolute;
	top: -61px;
	left: 430px;
}

.nav a {
	color: #Fff;
	text-decoration: none;
	font-weight: bold;
}

.nav a:hover {
	color: #E4E6FF;
}

#btn1, #btn2, #btn3, #btn4 {
	background-image: url(../images/nav-tab-normal.png);
	background-repeat: no-repeat;
	text-align: center;
	display: block;
	width: 150px;
	position: absolute;
	height: 50px;
	padding-top: 15px;
}

#btn1 {
	z-index: 100;
}
#btn2 {
	z-index: 99;
	margin-left: 120px;
}
#btn3 {
	z-index: 98;
	margin-left: 240px;
}
#btn4 {
	z-index: 97;
	margin-left: 360px;
}

