@charset "UTF-8";
/* Sightwave CSS Styles */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;

	background: rgb(240, 250, 253);
	background-image: url("../images/SunKing.jpg");
	background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
	
}
/* FontFace Examples
@font-face {
    font-family: 'MisoBold';
    src: url('../webfonts/miso-bold-webfont.eot');
    src: url('../webfonts/miso-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/miso-bold-webfont.woff') format('woff'),
         url('../webfonts/miso-bold-webfont.ttf') format('truetype'),
         url('../webfonts/miso-bold-webfont.svg#MisoBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'MisoRegular';
    src: url('../webfonts/miso-regular-webfont.eot');
    src: url('../webfonts/miso-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/miso-regular-webfont.woff') format('woff'),
         url('../webfonts/miso-regular-webfont.ttf') format('truetype'),
         url('../webfonts/miso-regular-webfont.svg#MisoRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'MisoLight';
    src: url('../webfonts/miso-light-webfont.eot');
    src: url('../webfonts/miso-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/miso-light-webfont.woff') format('woff'),
         url('../webfonts/miso-light-webfont.ttf') format('truetype'),
         url('../webfonts/miso-light-webfont.svg#MisoLight') format('svg');
    font-weight: normal;
    font-style: normal;

}

*/

IMG.ctrimage {
float: left;
}




/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	margin: 0;
	padding-left: 50px; 
	padding-right: 50px; 
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}


p {
	margin-top: 0px;
	margin-bottom: 4px;
	padding-right: 30px;
	padding-left: 30px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: 'MisoRegular', Verdana, Arial, Helvetica, sans-serif;
}

/* ~~ 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-right: 30px;
}
.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: 30px;
}

.cufltrt { /* 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: right;
	margin-right: 0px;
}


.fltctr {
	float: left;
	position: relative;
	left: 100px
}
.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 overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
