/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
        
@font-face {
    font-family: 'ColaborateThinRegular';
    src: url('Colaborate-fontfacekit/ColabThi-webfont.eot');
    src: url('Colaborate-fontfacekit/ColabThi-webfont.eot?#iefix') format('embedded-opentype'),
         url('Colaborate-fontfacekit/ColabThi-webfont.woff') format('woff'),
         url('Colaborate-fontfacekit/ColabThi-webfont.ttf') format('truetype'),
         url('Colaborate-fontfacekit/ColabThi-webfont.svg#ColaborateThinRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ColaborateLightRegular';
    src: url('Colaborate-fontfacekit/ColabLig-webfont.eot');
    src: url('Colaborate-fontfacekit/ColabLig-webfont.eot?#iefix') format('embedded-opentype'),
         url('Colaborate-fontfacekit/ColabLig-webfont.woff') format('woff'),
         url('Colaborate-fontfacekit/ColabLig-webfont.ttf') format('truetype'),
         url('Colaborate-fontfacekit/ColabLig-webfont.svg#ColaborateLightRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}
textarea:focus,input:focus {
    outline:none;
}

input::-moz-focus-inner {
    border: 0;
}


html {
    background:#fff;
    font-family:ColaborateThinRegular, Arial, sans-serif;
}

a,a:active,a:visited {
    color:#000;
    text-decoration:none;
    padding:0 2px;
    outline:0;
}

a:hover {
    background:rgba(0,0,0,0.4);
}

/* branding */
#branding {
    border-bottom: 1px solid #e4e4e4;
    margin-top: 40px;
    padding-bottom: 20px;
}
.logo {
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
}
.logo a {
    background: url(../images/logo.png) top center no-repeat;
    text-indent: -9999px;
    display: block;    
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}
.tagline{
    font-size: 14px;
    text-align: center;
    color: #999;
}

/* options */
#options-wrapper {
    text-align: center;
}
#options {
    text-align: right;
}

#options li {
    display: inline-block;
}
#options li a {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #666;
    color: #fff;
    border-radius: 3px;
}
#options li a:hover {
    background-color: #333;
    color: #fff;
}

/* tooltips */
[data-tip] {
    position:relative;
}

[data-tip]:before {
    content:'';
    display:none;
    border:5px solid #1a1a1a;
    border-top-color:#1a1a1a;
    border-right-color:transparent;
    border-bottom-color:transparent;
    border-left-color:transparent;
    position:absolute;
    top:-7px;
    left:10px;
    z-index:8;
    font-size:0;
    line-height:0;
    width:0;
    height:0;
}

[data-tip]:after {
    display:none;
    content:attr(data-tip);
    position:absolute;
    top:-35px;
    left:0;
    padding:5px 8px;
    background:#1a1a1a;
    color:#fff;
    z-index:9;
    font-size:.75em;
    height:18px;
    line-height:18px;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0;
    white-space:nowrap;
    word-wrap:normal;
}

[data-tip]:hover:before,[data-tip]:hover:after {
    display:block;
    max-width:800px;
    overflow:hidden;
}

.arrow-center[data-tip]:before {
    left:50%;
    margin-left:-4.5px;
}

