@charset "utf-8";

/*///////////////////////////////////////////////////////////////////////////////
/* FONTS
///////////////////////////////////////////////////////////////////////////////*/
@font-face {
    font-family: 'segoe_lt';
    src: url('/fonts/segoe_lt.ttf') format('truetype'), 
	url('/fonts/segoe_lt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'segoe';
    src: url('/fonts/segoe.ttf') format('truetype'),
		url('/fonts/segoe.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*///////////////////////////////////////////////////////////////////////////////
/* PAGE LAYOUT
///////////////////////////////////////////////////////////////////////////////*/

* { 
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	margin: 0px;
	padding: 0px;
}

html, body {
	height: 100%; /* required for the footer to stay at the bottom */
	width: 100%;
}

div#container {
	background-color: white;
    position: relative; /* important for footer and for toggling top header to appear above or below box shadow of container using z-index of #nav_top */
	width: 100%;
	min-height:100%; /*!important*/
	margin: auto;
	display: block;
	overflow: hidden;
}
div#content {
	text-align: center;
	padding: 1cm;
	border-radius: 1cm;
	max-width: 700px; 
	margin: auto;
	vertical-align: middle;
	background-color: aliceblue;
}

/*///////////////////////////////////////////////////////////////////////////////
/* CLASSES
///////////////////////////////////////////////////////////////////////////////*/

/* TEXT LAYOUT CLASSES /////////////////////////*/

:focus { /* disable all focus rectangles */
    outline: 0;
}

/*///////////////////////////////////////////////////////////////////////////////
/* APPEARANCE 
///////////////////////////////////////////////////////////////////////////////*/

/* IMAGE CLASSES /////////////////////////*/

.softborder {
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.25);
	border-radius: 8px;
}

img.text_left {
	float: left;
	margin-right: 1cm; 
}
img.text_right {
	float: right;
	margin: 0.5cm;
	margin-left: 1cm; 
}

img.logo {
	position: relative;
    display: inline-block;
	width: 30%;
	min-width: 250px;
	padding-bottom: 24px;
	padding-right: 24px;
}


/* LISTS /////////////////////////*/

ul {
	list-style-position:inside;
	padding-bottom: 0.5cm;
	text-indent: -1em;
	padding-left: 1em;
} 
li {
	list-style: none;
	padding-bottom: 5px;
}

li:before {
  /* For a round bullet */
  content:'\25A0';*/
  display: block;
  position: relative;
  padding-left: 0cm;
  padding-right: 8px;
  margin-left: -2px;
  max-width: 0px;
  max-height: 0px;
  color: #36C;
  font-size: 15px;
  line-height:175%;
}
li:after {
	padding-left: 6cm;
}

/* TEXT /////////////////////////*/

body {
	font-size: 0.4cm;
	font-family: segoe;
	color: #333;
	background-color: white;
	margin: 0px;
	padding: 0px;
	text-align: left;
	width: 100%;
}

p {
	line-height: 150%;
}
p.large1 {
	font-size: 0.4cm;
}
h1, h2, h3, h4 {
	padding: 0px;
	font-family: segoe_lt;
	font-weight:normal;
	margin: 0px;
}
h1 {
	font-size: 0.75cm;
	padding-bottom: 0.25cm;
	color: #036;
}
h2 {
	font-size: 0.65cm;
	padding-top: 1cm;
	padding-bottom: 0.25cm;
	color: #069;
}
h3 {
	font-size: 0.55cm;
	padding-bottom: 0.25cm;
	color: #069;
}
h4 {
	font-size: 0.40cm;
	padding-bottom: 0.25cm;
	color: #069;
}

a, a:link, a:visited, a:active {
	color: #069;
	transition: all 0.1s ease-in;
	text-decoration: none;
	border-bottom: 1px dashed #999;
}
a:hover {
	background-color:#cfd5e6;
	padding: 3px;
	margin: -3px;
	border-radius: 5px;
	color: #2683b2;
	text-decoration: none;
	border-bottom: 0;
}
a.empty {
	margin: 0;
	padding: 0;
}
a.empty:hover {
	background-color: transparent;
	border-radius: 0px;
	box-shadow: none;
}
a:hover.empty {
	background-color: transparent;
	box-shadow: none;
}
a.empty img {
	border-style: none;
}
