/******************************* CSS RESET - MEYERWEB.COM *******************************/
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}


/******************************* BASE CSS *******************************/
/* 	Common elements
	Commonly used elements on the site. Srsly.
*/
.clear { clear:both }
.left { text-align:left } .center { text-align:center } .right { text-align:right }
.alignleft { float:left } .aligncenter { margin:0 auto } .alignright { float:right }
img.alignleft, table.alignleft { margin:5px 10px 5px 0 } img.alignright, table.alignright { margin: 5px 0 5px 10px }
img.aligncenter { display:block; margin: 10px auto }
.noborder { border:none; padding:0 }
.nomargin { margin:0 }
.banner { border:none; padding:0; margin-bottom:10px }
.hidden { display:none }
strong { font-weight:bold }
.spacer { clear:both; margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid #eee }
p.spacer { clear:none }

/* 	Styling the Body tag */
body {
	font-size:62.5%;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	color:#555;
	text-align:center;
	background:#e9e7fd url(../img/art/bg-body.png) no-repeat 50% 0;
}

/* 	Main tags */
h1, h2, h3, h4, h5, h6, p, table, .view ul, .view ol, .tweets-list, .links-list { margin-bottom:20px }
h1 {
	font:normal 32px/26px 'Francois One', 'Helvetica Neue', Arial, sans-serif;
	color:#444;
	text-shadow:0 1px 0 rgba(255,255,255,.5);
	margin-bottom:20px;
}
h1 em {
    font-style:normal;
    color:#000;
    /*background-color:#f0eefc;*/
    /*background-color:#fffcdc;*/
}
h1 a {color:#8a82be;text-decoration:none;}
h1 a:hover {text-decoration:none;}
h2 {
	font:normal 18px/22px 'Helvetica Neue', Arial, sans-serif;
	color:#444;
}
h3 {
	font:normal 14px/18px 'Helvetica Neue', Arial, sans-serif;
	color:#555;
}
h4 {
	font:normal 12px/16px 'Helvetica Neue', Arial, sans-serif;
	color:#666;
}

p, .view li, .column li, .view td, .view th {
	font-size:14px;
	line-height:20px;
}
p.description { 
	font-size:18px;
	line-height:24px;
}

.view ul {
	list-style:disc inside;
}
.view ul ul { margin-left:25px; }
.view ul.widget, .view ul.widget ul { list-style:none; }
.view ol {
	margin-left:25px;
	list-style:decimal;
}
.view ol ol { list-style:lower-latin }
.view ul ul, .view ol ol { margin-bottom:0 }
.view li li { font-size:1em }

blockquote {
	/*
	font:italic 12px/16px 'Helvetica Neue', Arial, sans-serif;
	color:#888;
	margin-bottom:10px;
	padding:0 20px;
	*/
}
em { font-style:italic;}

/*	Links */
a {
	color:#8a82be;
	text-decoration:none;
}
a:hover { 
	color:#000;
	text-decoration:underline;
}
#main a, #headnav a, .profile a, #footer a {
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

/* 	Building blocks */
.wrapper {
	width:960px;
	margin:0 auto;
	text-align:left;
	position:relative;
}
/* Header */
#header {
    height:110px;
}
#header .profile {
    float:right;
    height:50px;
    margin-top:30px;
}
#header .profile a {
    font-size:14px;
    line-height:30px;
    font-weight:bold;
    background-color:#fff;
    color:#444;
    display:block;
    padding:10px 15px 10px 10px;
    text-decoration:none;
    margin-left:10px;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:0px 0px 10px rgba(0,0,0,.1);
    -webkit-box-shadow:0px 0px 10px rgba(0,0,0,.1);
    box-shadow:0px 0px 10px rgba(0,0,0,.1);
}
#header .profile a:hover {
    color:#fff;
    text-shadow:0 1px 0 rgba(0,0,0,.5);
    background-color:#333;
}
#header .profile .profile_pic {
    float:left;
    margin-right:10px;
}
/* Headnav */
#headnav {
    float:right;
    margin-top:30px;
}
#headnav li { float:left; margin-left:5px;}
#headnav li:first-child {margin-left:0;}
#headnav a {
    display:block;
    font-size:14px;
    line-height:30px;
    font-weight:bold;
    padding:10px 15px;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
    text-decoration:none;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
#headnav a.selected {
    color:#fff;
    text-shadow:0 1px 0 rgba(0,0,0,.5);
    background-color:#585184;
    
    -moz-box-shadow:inset 0px 0px 10px rgba(0,0,0,.2);
    -webkit-box-shadow:inset 0px 0px 10px rgba(0,0,0,.2);
    box-shadow:inset 0px 0px 10px rgba(0,0,0,.2);
}
/* Logo */
#logo {
    float:left;
    width:156px;
    height:44px;
    position:absolute;
    top:33px;
}
#logo a {
    text-indent:-9999px;
    width:156px;
    height:44px;
    background:url(../img/art/logo-sparrw.png) no-repeat 0 0;
    display:block;
}
#logo a:hover {text-decoration:none;border-bottom:none;}
/* Main */
#main {
    background-color:#fff;
    padding:60px 170px;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:0px 0px 10px rgba(0,0,0,.1);
    -webkit-box-shadow:0px 0px 10px rgba(0,0,0,.1);
    box-shadow:0px 0px 10px rgba(0,0,0,.1);
}

/* Footer */
#footer {
    padding:20px 0 50px 10px;
}
#footer p {
    text-align:center;
    font-size:11px;
    color:#a49ec6;
}
#footer p a {text-decoration:none;}

/* Welcome */
.welcome #header {
    height:220px;
    text-align:center;
}
.welcome #logo {
    float:none;
    display:block;
    width:232px;
    height:93px;
    position:absolute;
    left:50%;
    top:100px;
    margin-left:-116px;
}
.welcome #logo a {
    text-indent:-9999px;
    width:232px;
    height:93px;
    background:url(../img/art/logo-sparrw-tagline.png) no-repeat 0 0;
    display:block;
}
.welcome .wrapper {width:460px;}
.more-info .wrapper, .static .wrapper {width:620px;}
.welcome #main {
    background:transparent;
    padding:20px 0;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}
.more-info #main, .static #main {
    padding:40px;
}
/* Slider */
.slider {
    background-color:#8a82be;
    padding:5px;
    position:relative;
    margin-bottom:20px;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:0px 0px 20px rgba(0,0,0,.1);
    -webkit-box-shadow:0px 0px 20px rgba(0,0,0,.1);
    box-shadow:0px 0px 20px rgba(0,0,0,.1);
}
.slider .slider-wrapper {
    overflow:hidden;
    width:450px;
    height:355px;
}
.slider .slider-wrapper ul { float:left; width:9999px;}
.slider .slider-wrapper li {
    float:left;
    position:relative;
}
.slider .slider-wrapper li img {
    display:block;
}
.slider .slider-wrapper li .title {
    position:absolute;
    bottom:40px;
    right:0;
    color:#fff;
    font-size:14px;
    line-height:20px;
    padding:10px 20px;
    font-weight:bold;
    text-shadow:0 1px 0 rgba(0,0,0,.5);
    background-color:#8a82be;
    /*background-color:rgba(0,0,0,.5);*/
}
.slider-controls li {
    position:absolute;
    top:157px;
}
.slider-controls li a { display:block; width:40px; height:40px; text-indent:-9999px; }

.slider-controls li.prev { left:-40px; }
.slider-controls li.prev a { left:0; background:url(../img/art/icons/arrow-left.png) no-repeat 50% 50%; opacity:.5; }
.slider-controls li.prev a:hover { opacity:1; }
.slider-controls li.next { right:-40px; }
.slider-controls li.next a { left:0; background:url(../img/art/icons/arrow-right.png) no-repeat 50% 50%; opacity:.5; }
.slider-controls li.next a:hover { opacity:1; }

/* Join Sparrw */
.join p {
    font-size:16px;
    font-weight:normal;
    line-height:50px;
    text-align:right;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
}
.join.style1 p { text-align:left;}
.join.style1 .sign-in { float:right;}
.join .sign-in {
    display:block;
    float:left;
    line-height:48px;
    width:200px;
    padding-left:40px;
    background:#33ccff url(../img/art/icons/twitter-icon.png) no-repeat 15px 50%;
    color:#fff;
    text-shadow:0 1px 0 rgba(0,0,0,.2);
    font-weight:bold;
    text-decoration:none;
    text-align:center;
    border:1px solid #2fbdec;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:0px 0px 10px #33ccff;
    -webkit-box-shadow:0px 0px 10px #33ccff;
    box-shadow:0px 0px 10px #33ccff;
}
.join .sign-in:hover {
    background-color:#0ba4ff;
    border:1px solid #0a98ec;
    -moz-box-shadow:0px 0px 10px #0ba4ff;
    -webkit-box-shadow:0px 0px 10px #0ba4ff;
    box-shadow:0px 0px 10px #0ba4ff;
}
.join .learn-more {
    float:right;
    padding:0 20px;
    font-weight:bold;
}
/* Static pages & View */
.view p {
    margin-bottom:10px;
    font-size:14px;
    line-height:20px;
}
.more-info .view p {
    font-size:18px;
    line-height:24px;   
    margin-bottom:10px;
    color:#666;
}
.view h2 {
    font:normal 32px/26px 'Francois One', 'Helvetica Neue', Arial, sans-serif;
    color:#444;
    margin-bottom:20px;
}
.view ul { margin-bottom:10px; padding:0 20px;}
.view ul li {
    font-size:14px;
    line-height:20px;
}
.view ul.style1 { list-style:none;}
.view ul.style1 li {
    font-size:16px;
    line-height:24px;
    padding:2px 0 2px 30px;
    font-weight:bold;
    color:#444;
    background:url(../img/art/icons/checked.png) no-repeat 0 5px;
}
.view .join {
    margin-top:20px;
    padding:20px;
    background-color:#f5f5f5;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.view .join p { line-height:50px; margin-bottom:0; }
/*	Columns */
.column {
	float:left;
	display:block;
	margin-left:20px;
	width:220px;
}
.column.first { margin-left:0 !important; clear:both }
.size1 { width:60px; } 
.size2 { width:140px; } 
.size3 { width:220px; } 
.size4 { width:300px; } 
.size5 { width:380px; } 
.size6 { width:460px; } 
.size7 { width:540px; } 
.size9 { width:700px; }

/* Featured Tweet */
.featured-tweet {
    padding:20px 0;
    border-top:1px solid #eee;
}
.featured-tweet blockquote {
    background-color:#dfdfe6;
    background-color:#fffcdc;
    padding:30px;
    width:620px;
    position:relative;
    left:-30px;
    font-size:16px;
    line-height:26px;
    color:#9a966d;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
    
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:inset 0px 0px 20px rgba(0,0,0,.1);
    -webkit-box-shadow:inset 0px 0px 20px rgba(0,0,0,.1);
    box-shadow:inset 0px 0px 20px rgba(0,0,0,.1);
    
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.featured-tweet blockquote:hover {
    width:620px;
    left:-80px;
    padding:30px 80px 160px 80px;
    background:#fffcdc url(../img/art/time-machine.png) no-repeat 50% bottom;
}
.featured-tweet #tweet-wayback {
    position:absolute;
    bottom:90px;
    left:50%;
    margin-left:-100px;
    display:block;
    width:200px;
}
.featured-tweet #tweet-wayback a {
    display:block;
    background-color:#fff;
    text-align:center;
    font-size:14px;
    line-height:40px;
    font-weight:bold;
    text-decoration:none;
    opacity:0;
    display:none;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:0px 0px 10px rgba(0,0,0,.1);
    -webkit-box-shadow:0px 0px 10px rgba(0,0,0,.1);
    box-shadow:0px 0px 10px rgba(0,0,0,.1);
}
.featured-tweet blockquote:hover #tweet-wayback a { opacity:1;display:block;}
.featured-tweet #tweet-wayback a:hover { color:#fff; background-color:#444; text-shadow:0 1px 0 rgba(0,0,0,.5);
}
.featured-tweet a {
    color:#000;
    color:rgba(0,0,0,.7);
}
.featured-tweet a:hover {
    color:rgba(0,0,0,1);
}
.featured-tweet .time {
    font-size:12px;
    color:rgba(0,0,0,.3);
}
/* Tweets list */
.tweets-list li {
    font-size:14px;
    line-height:20px;
    padding:10px;
    color:#666;
    background-color:#f9f9f9;
    margin-bottom:5px;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;

    -moz-box-shadow:inset 0px 0px 20px rgba(0,0,0,.05);
    -webkit-box-shadow:inset 0px 0px 20px rgba(0,0,0,.05);
    box-shadow:inset 0px 0px 20px rgba(0,0,0,.05);

    border-bottom:1px solid #e5e5e5;
}
.tweets-list li a {
}
.tweets-list li a:hover {
    color:#000;
}
.tweets-list li .time {
    font-size:11px;
}
/* Search */
.searchform fieldset {
    padding:20px 0;
    position:relative;
}
.searchform label {display:none;}
.searchform input {
    padding:0 10px 0 30px;
    width:200px;
    background:url(../img/art/icons/search.png) no-repeat 5px 50%;
    margin-left:190px;
    border:1px solid #ccc!important;
}
img#loader_icon {
    position:absolute;
    top:25px;
    left:445px;
}

/* Select, Canvas */
.select {
    display:block;
    width:900px;
    position:relative;
    left:-140px;
}
.select p {
    font-size:12px;
    line-height:16px;
    color:#666;
    text-align:center;
    padding:10px 0;
}
.select p strong { color:#222; }

/* Links list */
.links-list li {
    font-size:12px;
    margin-bottom:20px;
}
.links-list blockquote {
    font-size:14px;
    line-height:20px;
    padding:10px;
    color:#666;
    background-color:#f9f9f9;
    margin-bottom:5px;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
    margin-top:5px;

    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;

    -moz-box-shadow:inset 0px 0px 20px rgba(0,0,0,.05);
    -webkit-box-shadow:inset 0px 0px 20px rgba(0,0,0,.05);
    box-shadow:inset 0px 0px 20px rgba(0,0,0,.05);
}
/* Normal form */
.normalform input, .normalform textarea, .normalform select {
    font:normal 14px/28px 'Helvetica Neue', Arial, sans-serif;
    border:1px solid #eee;
    height:28px;
    background-color:#fff;
    color:#666;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:0px 0px 5px rgba(0,0,0,.3);
    -webkit-box-shadow:0px 0px 5px rgba(0,0,0,.3);
    box-shadow:0px 0px 5px rgba(0,0,0,.3);
    
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.normalform input:hover, .normalform textarea:hover, .normalform select:hover {
    border:1px solid #fff;
    -moz-box-shadow:0px 0px 5px rgba(0,0,0,.6);
    -webkit-box-shadow:0px 0px 5px rgba(0,0,0,.6);
    box-shadow:0px 0px 5px rgba(0,0,0,.6);
}
.normalform input:focus, .normalform textarea:focus, .normalform select:focus {
    color:#222;
}
/* Mail form */
.mailform {
    margin-bottom:20px;
    position:relative;
    left:-80px;
    width:780px;
    
    
}
.mailform fieldset {
    background-color:#8a82be;
    height:90px;
    position:relative;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -moz-box-shadow:inset 0px 0px 20px rgba(0,0,0,.1);
    -webkit-box-shadow:inset 0px 0px 20px rgba(0,0,0,.1);
    box-shadow:inset 0px 0px 20px rgba(0,0,0,.1);
    
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.mailform fieldset:hover {
    background-color:#9c94cd;
    
    -moz-box-shadow:inset 0px 0px 20px rgba(0,0,0,.3);
    -webkit-box-shadow:inset 0px 0px 20px rgba(0,0,0,.3);
    box-shadow:inset 0px 0px 20px rgba(0,0,0,.3);
}
.mailform label { 
    font-size:14px;
    line-height:20px;
    padding:5px 0;
    color:#fff;
    text-shadow:0 1px 0 rgba(0,0,0,.5);   
}
.mailform .mail-address {
    width:360px;
    padding:0;
    float:left;
    
    position:absolute;
    top:30px;
    left:30px;
}
.mailform .mail-address label {
    width:120px;
    float:left;
}
.mailform .mail-address input {width:224px;padding:0 5px;}
.mailform .frequency {
    width:140px;
    
    position:absolute;
    top:30px;
    left:400px;
}
.mailform .frequency label {display:none;}
.mailform .frequency select {
    width:140px;
    height:30px;
}
.mailform .button {
    background-color:#222;
    background-color:rgba(0,0,0,.5);
    border:none;
    color:#fff;
    width:200px;
    line-height:26px;
    height:50px;
    font-weight:bold;
    font-size:16px;
    text-shadow:0 1px 0 rgba(0,0,0,.5);
    
    cursor:pointer;
    
    position:absolute;
    top:20px;
    right:30px;
    
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.mailform .button:hover {
    border:none;
    color:#fff;
    background-color:#575083;
    background-color:#000;
}

/* Download */
.download {
    position:relative;
    left:-30px;
    width:680px;
    margin-bottom:20px;
}
.download li {
    padding:20px 30px;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
    
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.download li:hover {
    background-color:#e9e7fd;
    cursor:pointer;
    -moz-box-shadow:0px 0px 10px #f3f2fd;
    -webkit-box-shadow:0px 0px 10px #f3f2fd;
    box-shadow:0px 0px 10px #f3f2fd;
}
.download li h2 { font-weight:bold; margin-bottom:5px; }
.download li h2 a {text-decoration:none;}
.download li p {margin-bottom:0;}
.download li:hover h2 a { color:#000;}
.download li:hover p { color:#222; }

/* Controls */
.controls { float:left; width:100%;}
.controls li a {
    display:block;
    font-size:14px;
    line-height:40px;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.controls li.load-tweets { float:left;}
.controls li.load-tweets a {
    background-color:#8a82be;
    color:#fff;
    text-shadow:0 1px 0 rgba(0,0,0,.5);
    padding:0 20px;
    font-weight:bold;
    text-decoration:none;
}
.controls li.load-tweets a:hover {
    background-color:#222;
}
.controls li.back-to-top { float:right; }
.controls li.back-to-top a {
    font-size:12px;
    color:#888;
    padding-right:14px;
    background:url(../img/art/icons/arrow-top.png) no-repeat right 50%;
}
.controls li.back-to-top a:hover {color:#444;}

/* Tip */
p.info {
    padding-left:40px;
    background:url(../img/art/icons/info.png) no-repeat 0 4px;
    font-size:12px;
    color:#888;
    min-height:40px;
}
p#flash {
    font-weight:bold;
    background-color:#fffcdc;
    background-color:#fff8aa;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
    color:#444;
    font-size:16px;
    line-height:20px;
    padding:5px 10px;
    display:inline-block;
    
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}


/*	Fixevi */

.clearfix:before, .clearfix:after, .container:before, .container:after, .widget li:before, .widget li:after { content: "\0020"; display: block; height: 0; visibility: hidden; }
.clearfix:after, .container:after, .widget li:after { clear: both; }
.clearfix, .container { zoom: 1; }

/*	The end ;) */
