/* Code for making a full height layout */
* {
	padding: 0;
	margin: 0;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
html, body {
	height: 100%;
}
/* fixes IE6 */
* html #container {
	height: 100%;
}
#container {
	min-height: 100%;
}
/* end full height layout code */

body {
    background: #1f2937;
	font-family:"raleway_light", Helvetica, Arial, sans-serif;
	font-weight:400;
	font-size:20px;
}
strong {
	font-family:"raleway_bold", Helvetica, Arial, sans-serif;
	font-wieght:bold;
}
div, table, tr, th, td, form, img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

h1, h2, h3, h4, h5, h6, p {
	position: relative; /* fixes issue in IE6 when headers some times disappear */
}

/* header styles */

h1, h2, h3, h4, h5, h6 {
	font-family:"raleway_light", Helvetica, Arial, sans-serif;
	margin: 10px 0;
	padding: 0;
}
h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}

/* a styles */

a {
	color:#35547D;
	text-decoration: none;
}
a:visited {
	color: #517FBE;
}
a:hover {
	color: #648DC5;
}
a:active,a:focus {
	color:#06254E;
}
/* a img styles*/
a img {
	border:0 none;
}
a:hover img {
}
a:visited img {
}
a:active img, a:focus img {
}

/* p styles */

p {
	font-family: "raleway_regular", Helvetica, Arial, sans-serif;
	font-weight:400;
	margin: 10px 0;
}

/* hr styles */

hr {
	border:none;
	border-bottom:1px solid #C0C0C0;
	height:1px;
	width:100%;
}

/* list styles */

ul, ol {
	margin:0;
	padding:0;
	list-style-type:none;
	overflow:hidden;
}
li {
}
@font-face {
    font-family: 'raleway_thin';
    src: url('fonts/raleway-thin-webfont.eot');
    src: url('fonts/raleway-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway-thin-webfont.woff') format('woff'),
         url('fonts/raleway-thin-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'raleway_light';
    src: url('fonts/raleway-light-webfont.eot');
    src: url('fonts/raleway-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway-light-webfont.woff') format('woff'),
         url('fonts/raleway-light-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'raleway_regular';
    src: url('fonts/raleway-regular-webfont.eot');
    src: url('fonts/raleway-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway-regular-webfont.woff') format('woff'),
         url('fonts/raleway-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'raleway_bold';
    src: url('fonts/raleway-bold-webfont.eot');
    src: url('fonts/raleway-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway-bold-webfont.woff') format('woff'),
         url('fonts/raleway-bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family:'raleway_thin';
		src: url('fonts/raleway-thin-webfont.svg#ralewaythin') format('svg');
	}
	
	@font-face {
		font-family: 'raleway_light';
		src: url('fonts/raleway-light-webfont.svg#ralewaylight') format('svg');
	}
	@font-face {
   		font-family: 'raleway_regular';
    	src: url('fonts/raleway-regular-webfont.svg#ralewayregular') format('svg');
	}
	@font-face {
   		font-family: 'raleway_bold';
    	src: url('fonts/raleway-bold-webfont.svg#ralewaybold') format('svg');
	}
}
/*styles to match editor styles*/
.align_image_left {
	float:left;
	margin:0 10px 5px 0;
}
.align_image_right {
	float:right;
	margin:0 0 5px 10px;
}
.align_image_left_wborder {
	border:1px solid #517FBE;
	float:left;
	margin:0 10px 0 0;
}
.align_image_right_wborder {
	border:1px solid #517FBE;
	float:right;
	margin:0 0 0 10px;
}
.border{
	border:1px solid #517FBE;
}