/* STYLESHEET SECTIONS
   CSS Flags marked with [=]
	 
	GENERAL TAGS
	HEADINGS
	LISTS
	LINKS
	CLASS-SPECIFIC TEXT
	 
	....................................... */

/* =GENERAL TAGS
    font sizing MUST remain the same for the percentages to calculate properly
	....................................... */

body {
	/*font: 13px/1.5 Arial, Helvetica, sans-serif;*/
}

p {
    margin-bottom: 15px;
}
hr {
	background: #E1E1E1;
	color: #E1E1E1;
	margin: 10px 0 15px;
}
blockquote, q {
	margin: 0 auto;
	width: 60%;
	line-height: 1.5;
}
blockquote:before {
	content: '"'; 
}
blockquote:after {
	content: '"'; 
}
table {
    font-size: inherit;
}
pre, code, kbd, samp {
    font-family: monospace, sans-serif;
}
ins {
    background-color: #ff9;
    text-decoration: none;
}

/* =HEADINGS
	....................................... */

h1, h2, h3, h4, h5, h6 { 
	color: #696969;
	line-height: 1.2;
	margin-bottom: 5px;
}
h1 { 
	line-height: 1.15;
	font-size: 40px;
	margin: 25px 0px 10px 0px;
	position: relative;
	color: #696969;
}
h2 { 
	padding-top: 20px;
	font-size: 26px;
	font-weight: bold;
}

h3 { 
	padding-top: 15px;
	font-size: 20px;
}
h4 { 
	padding-top: 10px;
	font-size: 16px;
}
h5 { 
	padding-top: 5px;
	font-size: 14px;
}
h6 { 
	padding-top: 5px;
	font-size: 14px;
	color: #696969;
}
 
/* =LISTS 
    default values can be edited
	....................................... */

li ul, li ol { 
	margin:0 1.5em; /*default: 0 1.5em;*/
}
ul, ol { 
	margin: 0 1.5em 1.5em 1.5em; /*default: 0 1.5em 1.5em 1.5em;*/
}
ul { 
	list-style-type: disc;
}
ol { 
	list-style-type: decimal;
}
dl { 
	margin: 0 0 1.5em 0; /*default: 0 0 1.5em 0;*/
}
dl dt { 
	font-weight: bold;
}
dd { 
	margin-left: 1.5em; /*default: 1.5em;*/
}
.content ul, .content ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.content ul {
	margin-bottom: 15px;
}
.content ul li {
	padding: 0 10px 5px 30px;
	background: transparent url(../../fw/bullet.png) no-repeat 18px 8px;
}

/* =LINKS
	....................................... */

a { 
	color: #009288;
	text-decoration: none;
}
a:focus, a:hover { 
	text-decoration: underline;
}
a:hover, a:active {
    outline: none;
}

/* =CLASS-SPECIFIC TEXT
	....................................... */
	
span.tooltip, span.errorMessage {
    display: inline-block;
    position: relative;
    z-index: 3000;
}
span span.errorMessage {
    cursor: help;
    padding: 3px 0;
}
span.tooltip {
    background: url("../../fw/icon_help_tooltip.gif") no-repeat scroll 2px 0 transparent;
    color: #ffffff;
    height: 12px;
    padding: 3px 0 0;
    text-decoration: none;
    width: 18px;
}
span.tooltip:hover {
    background-position: -40px 0;
}
span.tooltip span, span.errorMessage span {
    background: none repeat scroll 0 0 #51256C;
    border: 1px solid #009288;
    border-radius: 8px 8px 8px 8px;
    display: none;
    font-style: normal;
    left: 0px;
    margin: 0 0 0 18px;
    padding: 10px;
    position: absolute;
    text-align: left;
    top: -16px;
    width: 100px;
    z-index: 3000;
}