/* light blue: #aadff6
 * lighter blue: #c4e4f8
 * blue: #009ddd
 * dark blue: #4186c4
 * grey: #e2e3e4
 * orange: #fa3812
 *
 *
 */


body {
	background-color: #333;
	color: #ccc;
}

h1,h2,h3,h4,h5,h6 {
	color: #009ddd;
	font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

h1.headline {
    font-family: 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    margin: 25px auto;
}
p {
	font-size: 1.125em;
	font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* thanks Paul Irish - http://is.gd/WBIF4W */
.js #carousel-outer {
	display: none;
}


#header {
	position: relative;
	margin-top: 20px;
    z-index: 99;
}

#content {
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	position: relative;
	top: -10px; /* pull it up due to #navmenu */
	margin-top: 10px;
	padding-top: 1em;

	background-color: #fcfcfc;
	color: #333;
	min-height: 300px;
}

#rrv {
	position: fixed;
	left: -2px;
	top: 200px;
	background: #222;
	border: 2px solid #555;
	padding: 10px 4px;
}

.box {
    background-color: #c4e4f8;
    padding: 10px;
}

#sidebar {
}

#sidebar ul li {
	list-style: none;
    border-left: 3px solid #aadff6;
    padding-left: 3px;
	margin-bottom: 2px;
}

#sidebar img {
    vertical-align: baseline;
}

#footer {
	margin-top: 0.25em;
	text-align: center;
	font-size: smaller;
}

#logo {
    position: absolute; /* parent (#header) must be position: relative */
    left: 45px;
}

#right-box {
}

#title {
	color: #5daeda;
	font-family: Myriad Pro,Helvetica,Arial,sans-serif;
	font-weight: bold;
	line-height: 28px;
}



/**** menu ****/
#navmenu  {
    position: relative;
    top: -15px; /* pull up closer to logo, adjust #content accordingly */
	margin-top: 3px;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 1px;
}

#navmenu ul a {
    border: none; /* disable line between items */
    color: #eee;
}

#navmenu ul {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
    background-color: #333; /* for non-CSS3/webkit/moz browsers */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ababab), to(#393939));
    background-image: -moz-linear-gradient(top, #ababab, #393939);
    padding: 0 0 0 40px; /* 40px = bp column + gutter */
    width: 100%;
    line-height: 3em;
    margin: 0;
    height: auto;
}

#navmenu > ul > li {
    background: none;
    text-align: center;
    width: 160px;
}

#navmenu ul > li > a {
    background: none;
    width: 100%;
    padding: 0;
}

#navmenu > ul > li > a {
	font-size: 1.5em;
	border-top: 0;
}

#navmenu li:hover, #navmenu li.sfHover
{
    background: -webkit-gradient(radial, 50% 100%, 5, 50% 100%, 20, from(rgba(234,234,234, .4)), to(rgba(171,171,171, .1)));
    background: -moz-radial-gradient(center 90% 45deg, circle cover, rgba(234,234,234, .4) 0%, rgba(171,171,171, .1) 100%);
}

#navmenu li:hover, #navmenu li.sfHover,
#navmenu a:focus, #navmenu a:hover, #navmenu a:active
{
    color: #fff;
}

#navmenu li li {
	background: #222;
}

#navmenu ul li ul {
    width: 600px;
}


/******** general classes ***************/
.center {
	text-align: center;
}



a {
	color: #009ddd;
	text-decoration: none;
}

a:hover {
	color: #fa3812;
}

a.btn {
	background-color: #aadff6;
	padding: .5em .5em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

a.btn-lge {
	font-size: 1.25em;
	font-weight: bold;
	background-color: #aadff6;
	border: 1px solid #009ddd;
	padding: .5em;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}

a.btn-lge:hover {
	color: #2A4E62;
}

.right-align {
    text-align: right;
}


/******   *******/
.button {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 1px 3px;
}

input.text {
    width: 10em;
}

input.text.xlong {
    width: 30em;
}

input.text.long {
    width: 20em;
}

input.text.med {
    width: 6em;
}

input.text.mini {
    width: 2em;
}


th {
    vertical-align: top;
}


/** blog **/
.site-title {
    font-size: 1.75em;
    margin-bottom: 1em;
}

.post img.left {
    margin-right: 2em;
    margin-bottom: 1em;
}

.post .post-title {
    font-size: 1.8em;
    color: #fa3812;
}

.post .post-title a {
    color: inherit;
}

.post .post-title a:hover {
    color: #009ddd;
}

.post .body {
    margin-top: 2em;
}

.post {
    margin-bottom: 5em;
}

.post img.right {
    margin-left: 1em;
    margin-bottom: 1em;
}


#search input {
    border: 1px solid #ccc;
    line-height: 2em;
    padding: 3px;
}


.social.right {
    float: right;
}
/** end blog **/


.widget {
    background-color: #333;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ccc;
    padding: 10px;
}

.widget a {
    color: white;
}

.widget h3 {
    color: white;
    margin-bottom: 12px;
    line-height: 28px;
}

.widget h4 {
    margin-bottom: 3px;
}

.widget p {
    margin: 0;
}

.widget h3 img {
    vertical-align: middle;
}

.widget .post {
    background-color: black;
    padding: 5px;
    border-bottom: 1px inset #999;
    margin-bottom: 0; /* override .post */
}

.widget .pub_date {
    font-size: 0.5em;
}

#main .twtr-widget .twtr-tweet {
    /* override twitter widget separator */
    border-bottom: 1px inset #999;
}

