/* ------------------------------------------------------------------------------------
--  RESET
------------------------------------------------------------------------------------ */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, header, hgroup, 
 output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
header, hgroup, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ------------------------------------------------------------------------------------
--  GENERAL
------------------------------------------------------------------------------------ */
html, body { 
	width:100%;
    font-family: Helvetica, Arial, FreeSans, sans-serif;
    font-size:100%;
	margin:0;
	padding:0;
	
}
::selection{
	background:#dbf1f6;
}
::-moz-selection{
	background:#dbf1f6;
}
figure{
	float:left;
}
#wrapper{
	float:left;
	padding:0;
	margin:0;
	width: 100%;
	min-height:100%;
	/* max-width: 120em; (1920x / 16px) */
	position:relative;
}
.full-width{
	float:left;
	width:100%;
}
.bg{
	background:url(images/white.png);
	background-repeat:repeat;
	border-top:1px solid #fff;
	border-bottom:1px solid #ccc;
}
/* ------------------------------------------------------------------------------------
--  TYPOGRAPHY
------------------------------------------------------------------------------------ */
h2{
	font-size:1.9em;
	font-family:'Abel', sans-serif;
	text-transform:uppercase;
	margin-bottom:20px;
	color:#383838;
	text-shadow:0 1px 1px #fff;
}
h3{
	font-size:1.6em;
	font-family:'Abel', sans-serif;
	text-transform:uppercase;
	margin-bottom:10px;
	color:#aaa;
	text-shadow:0 1px 1px #fff;	
}
h4{
	font-size:1.4em;
	font-family:'Abel', sans-serif;
	text-transform:uppercase;
	margin-bottom:10px;
	color:#aaa;
	text-shadow:0 1px 1px #fff;	
}
p{
	line-height:1.5em;
	color:#515151;
	margin-bottom:20px;
}
p.last{
	margin-bottom:0;
}
/* ------------------------------------------------------------------------------------
--  ANCHORS
------------------------------------------------------------------------------------ */
a{
    text-decoration:none;
	outline:none;
	color:#a80000;
}
a:hover, a:focus{
	color:#910101;
}
a.external:after {
    padding:0 10px;
    margin: 0 0 0 5px;
    content: "";
    background: url(images/external.png);
	background-repeat: no-repeat;
	display:inline;
}
a.readmore{
	float:right;
	background:#e6e6e6;
	border:1px solid #ddd;
	padding:0.5em;
	display:inline-block;
}
/* ------------------------------------------------------------------------------------
--  CSS TOOLTIP
------------------------------------------------------------------------------------ */
span.tool {
    position: relative;   /*this is important*/
    cursor: pointer;
}
span.tool span.tip {
    display: none;
	width:10em; 
}
span.tool:hover span.tip {
    display: inline-block;
    z-index: 100;
    position: absolute;
    top: 1.8em;
    left: -4em;
    padding: 0.5em;
	background:#e6e6e6;
	border:1px solid #ddd;
    text-align: left;
	width:10em; 
}
q{
	font-size:0.9em;
	float:left;
	color:#515151;
}
/* ------------------------------------------------------------------------------------
--  TOP (BLOCK1)
------------------------------------------------------------------------------------ */
.border{
	background:#1a1a1a;
	border-bottom:2px solid #2a2a2a;
	padding:1% 0;
	width:100%;
}
#top-inner{
	clear: both;
	position: relative;
	width:100%;
}
#logo{
	float:left;
}
#logo h1 a{
	display:inline-block;
	float:left;
}
#logo img#logo-img{
	max-width:none;
	padding:0.5em 0 0 0;
}
/* ------------------------------------------------------------------------------------
--  MAIN CONTENT (BLOCK4)
------------------------------------------------------------------------------------ */
.lightgrey{
	background:#e7e7e7;
}
#scrollercontainer{
    position: relative;
    width: 100%;
    height: 6em;
    overflow: hidden;
	float:left;
}
#scroller{
    white-space: nowrap;
    line-height: 6em;
    font-size: 3em;
}
#scroller p{
     padding: 0;
	 margin:0;
	 text-shadow:0 1px 1px #fff;
}