/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.donate img{
 margin:0 auto;   
}

article, aside, figure, footer, header, hgroup, nav, section {
    display: block;
}

/* Responsive images and other embedded objects
Note: keeping IMG here will cause problems if you're using foreground images as sprites.
If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
object,
embed {
    max-width: 100%;
}

/* force a vertical scrollbar to prevent a jumpy page */
html {
    overflow-y: scroll;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted #222;
    cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th {
    font-weight: bold;
    vertical-align: bottom;
}
td {
    font-weight: normal;
    vertical-align: top;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #eee;
    margin: 22px 0;
    padding: 0;
    opacity: 0.3;
}

hr.EEE3E0 {
    border-color: #000;
    margin-bottom: 15px;
}

input, select {
    vertical-align: middle;
}
input:focus, textarea:focus {
    outline: none;
}

pre {
    white-space: pre;
    /* CSS2 */
    white-space: pre-wrap;
    /* CSS 2.1 */
    white-space: pre-line;
    /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word;
    /* IE */
}

input[type="radio"] {
    vertical-align: text-bottom;
}
input[type="checkbox"] {
    vertical-align: bottom;
    *vertical-align: baseline;
}
.ie6 input {
    vertical-align: text-bottom;
}

select, input, textarea {
    font: 99% sans-serif;
}

table {
    font-size: inherit;
    font: 100%;
}

/* Accessible focus treatment
people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
    outline: none;
}

small {
    font-size: 85%;
}

strong, th {
    font-weight: bold;
}

td, td img {
    vertical-align: top;
}


/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
    font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable, label, input[type=button], input[type=submit], button {
    cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
    margin: 0;
}

/* make buttons play nice in IE */
button {
    width: auto;
    overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
    -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover */
.ie6 html {
    filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

/* let's clear some floats */
.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}


/* makes the padding of all elements be applied into the inside rather than default outside */
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* OVERALL TYPOGRAPHY SET-UP.
-------------------------------------------------------------------------------*/

/*--- HEADINGS ---*/

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    color: #003959;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 52px;
}

h2 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 38px;
}

h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 39px;
}

footer h3, footer p {
    color: #fff;
}

h4 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 30px;
    font-weight: 300;
}

h5 {
    font-weight:bold;
    color: #003959;
}

h5,
h6 {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 24px;
}

/*--- PARAGRAPHS ---*/
p, address {
    margin-bottom: 20px;
}

/*--- FIGURES ---*/
figure {
    margin-bottom: 20px;
}
figure img {
    display: block;
    margin-bottom: 0;
}
figcaption {
    font-size: 0.75em;
}

/*--- LINKS ---*/
/*
Say no to negative hovers: http://csswizardry.com/2011/05/on-negative-hovers/
A negative hover is one whose appearance is subtracted from on hover rather than added to.
*/
a {
    text-decoration: none;
}
a:visited {
    opacity:0.8;
    /* A bit basic, but it's a bare minumum... */ }


/* wp - because of this lightbox crashes in FF and Chrome and...?*/
/* Give clicked links a depressed effect. */
/*a:active, a:focus {
position: relative;
top: 1px;
}
*/
/*--- LISTS ---*/
ul, ol {
    margin: 0 0 1.5em 60px;
}
ul ul, ol ol, ul ol, ol ul {
    margin: 0 0 0 60px;
}

ul.numbered {
    list-style: decimal outside;
}
dl {
    margin-bottom: 20px;
}
dt {
    font-weight: bold;
}
dt:after, dt::after {
    content:":";
}
dd {
    margin-left:60px;
}

/*--- QUOTES ---*/

blockquote b, blockquote .source {
    /* Mark the source up with either a <b> or another element of your choice with a class of source. */
    display: block;
    text-indent: 0;
}
blockquote, blockquote p {
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
}
blockquote {
    margin-left: 50px;
    border-left: 1px solid #eee;
}
blockquote p, blockquote h4 {
    margin-left: 10px;
}

/*--- GENERAL ---*/
q, i, em, cite {
    font-style: italic;
    font-weight: inherit;
}

b, strong {
    font-weight: bold;
    font-style: inherit;
}
s, del {
    text-decoration: line-through;
}
small {
    font-size: 0.75em;
    line-height: 1;
}

/*--- CODE ---*/
pre,
code {
    font-family: monospace;
    font-size: 1em;
}
pre {
    overflow: auto;
    margin-bottom: 20px;
    line-height: 24px;
}
code {
    line-height: 1;
}



/* OVERALL IMAGES SET-UP.
-------------------------------------------------------------------------------*/

img.left    {
    margin: 0 15px 30px 0 !important;
}
img.right   {
    margin: 0 0 15px 30px !important;
}

/*--- FLASH/VIDEO ---*/
object,
embed,
video {
    max-width: 100%;
    height :auto;
}


/*------------------------------------*\
ODD CLASSES
\*------------------------------------*/
/*
Some not-too-pretty and insemantic classes to do odd jobs.
*/
.left   {
    float: left;
}
.right {
    float: right!important;
}
.clear {
    clear: both;
    float: none;
}

.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center, .text-centre {
    text-align: center;
}
.newspaper {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.hide {
    display: none;
}


/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

body {
    background: url(/img/background-top.jpg) no-repeat top center #000628;
    background-attachment:fixed;
    font: 12px sans-serif;
    font-weight: 300;
    line-height: 18px;
    background-size:cover;
}

body, select, input, textarea {
    color: #222;
}

a {
    color: #f58220;
}
a:hover {
    color: #FF9900;
}

/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection{
    background: #DF6400;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #DF6400;
    color: #fff;
    text-shadow: none;
}


/*  j.mp/webkit-tap-highlight-color */
a:link {
    -webkit-tap-highlight-color: #fcd700;
}


ins {
    background-color: #fcd700;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ffc;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

#top-nav a.logo{
    margin-top:15px;
    
}

#top-nav .btn:first-child{
    margin-left:3px;
    
}

#top-nav .btn{
    float:right;
    width:150px;
    height:38px;
    font-size:16px;
    padding: 7px 6px;
    
}


#top-nav form{
    float:right;
    
    position:relative;
    margin-right:20px;
}

#top-nav span {
    color:#fff;
    font-size:16px;
    font-weight:900;
    text-transform:uppercase;
    font-family: 'Oswald', sans-serif;
    vertical-align:-webkit-baseline-middle;
    margin-right:5px;
}

#top-nav .search-box {
    background: url("/img/top-search.png") no-repeat scroll center top transparent;
    border:none;
    height: 30px;
    width: 250px;
    margin-top:5px;
    position:relative;
    padding:0;
    padding-left:15px;
    border: 1px solid #fff;
  border-radius: 3px;
}

#top-nav .search-button {
    position:absolute;
    top:13px;
    right:10px;
    background:url(../img/search-icon.png) no-repeat;
    height:13px;
    width:13px;
    border:none;
    text-indent: -9999px;
    
}
#top-nav .search-button:hover, .logo:hover {
    opacity: 0.8;
}

#top-nav #links{
    float:right;
    width:70%;
}

#top-nav .btn{
 background:linear-gradient(to bottom, #f68220 0%,#fcad18 100%)  
}

#top-nav #links img{
 margin-left:20px;   
}

#top-nav #links #social{
    width:100%;
    float:right;
    text-align:right;
    margin-top:20px;
}

#top-nav #links span{
 margin-right:0;   
}

@media (max-width: 992px){
    #top-nav form{
        display:none;
        
    }
}

header{
 max-height:640px;
 overflow:hidden;
 position:relative;
}


header h1{
 background:url(../img/header-shade.png);
 text-align:center;
 position:absolute;
 bottom:0;
 left:0;
 width:100%;
padding: 10px 0;
  color: #fff;
  margin: 0;
  font-size: 40px;
    line-height: normal;
}

header h1.home{
padding: 9px 0 22px 0;    
    z-index:999;
}

header h1 span{
color: #f58220;
  font-size: 80px;
  vertical-align: text-bottom;
  height: 70px;
  display: inline-block;
  margin: 0 10px;
}

nav ul{
 margin:0;    
}

#main-nav-list {
    list-style-type: none;
    margin: 0px;
}
#main-nav-list li a {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size:16px;
    text-transform:uppercase;
    color:#000529;
    font-weight:900;
}

#main-nav-list > li {
    display: block;
    float: left;
    width:16.66666667%;
    padding:10px 0;
    text-align:center;
    position:relative;
}

#main-nav-list > li.gameblast {
    display: block;
    float: left;
    width:13.75%;
    padding:10px 0;
    text-align:center;
    position:relative;
}

#main-nav-list li:hover{
 background:url(../img/header-orange.png);   
}

#main-nav-list ul li a {
    float: none;
    background: #fff;
    width: 199px;
    padding: 6px 13px;
    letter-spacing: 1px;
    border-bottom: 1px dotted #EFEFEF;
    font-weight:100;
    font-size:12px;
}
#main-nav-list ul li a span {
    display: block;
}
#main-nav-list ul {
    background: #fff;
    border-radius: 0 0 8px 8px;
    border-bottom: 3px solid #FF9900;
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    /*position: absolute;*/
    top: 38px;
    z-index: 9999;
}

#main-nav-list ul li a:hover {
    text-decoration: none;
    color: #fff;
    background: #FF9900;
}

@media screen and (min-width: 1025px){
    #main-nav-list li:hover ul {
        display: block;
        position: absolute;
    }    
}

@media screen and (max-width: 1025px){
    
    #main-nav li ul {border: none; border-radius: 0 0 0 0;
        background: #000529;}
    #main-nav-list ul li a{background: #000529;}

}



footer h3 a{
 color:#000;   
}
footer ul {
    margin: 0px;
}
footer ul ul {
    display: none;
}
footer ul li {
    float: left;
    width:100%;
    list-style:none;
}
footer ul li a {
 color:#000;   
}
footer ul li:last-child {
    border-right: none;
}

footer .grid_2.alpha ul li {
    border-right: none;
}
footer .grid_2.alpha ul li a:hover {
    opacity: 0.8;
}
footer a, footer a:hover {
    color: #fff;
}


.button {
    -moz-box-shadow:inset 0px 1px 0px 0px #f17400;
    -webkit-box-shadow:inset 0px 1px 0px 0px #f17400;
    box-shadow:inset 0px 1px 0px 0px #f17400;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff9900), color-stop(1, #df6400) );
    background:-moz-linear-gradient( center top, #ff9900 5%, #df6400 100% );
    background-color:#ff9900;
    -moz-border-radius:20px;
    -webkit-border-radius:20px;
    border-radius:20px;
    border:4px solid #eee;
    display:inline-block;
    color:#ffffff;
    font: 300 18px Bebas;
    padding:3px 24px;
    text-decoration:none;
    text-shadow:0px -1px 0px #df6400;
}
.button:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #df6400), color-stop(1, #ff9900) );
    background:-moz-linear-gradient( center top, #df6400 5%, #ff9900 100% );
    background-color:#df6400;
    text-decoration: none;
    color: #fff;
}
.button:active {
    position:relative;
    top:1px;
}

#slider-wrapper ul {
    margin: 0px;
    list-style-type: none;
    position: absolute;
    bottom: 0px;
}
#slider-wrapper ul li a span {
    display: none;
}
#slider-wrapper ul li a {
    width: 300px;
    height: 80px;
    background: url("/img/donate-get-involved.png") top left no-repeat;
    display: block;
}
#slider-wrapper ul li a.big-donate {
    background-position:-10px -280px;
    margin-bottom: 10px;
}
#slider-wrapper ul li a.big-donate:hover {
    background-position:-10px -190px }
#slider-wrapper ul li a.big-get-involved {
    background-position:-10px -100px;
}
#slider-wrapper ul li a.big-get-involved:hover {
    background-position:-10px -10px;
}
#twin-town {
    background: #F9F9F1;
    border-radius: 8px;
    width: 960px;
    margin-bottom: 20px;
}
#twitter {
    background: none repeat scroll 0 0 #FFFFFF;
    border-bottom: 1px solid #EEE3E0;
    display: block;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 8px 8px 0 0;
}
.twtr-widget .twtr-tweet-wrap {
    padding: 18px 0 0 0!important;
}
#twitter .grid_1, #twitter .grid_4 {
    padding: 22px 0 0 16px;
}
#twitter .grid_4 {
    border-left: 1px solid #EEE3E0;
    height: 80px;
}
#twitter .grid_4 a {
    margin-left: 16px;
}
.left-section {
    background: none repeat scroll 0 0 #FFFFFF;
    border-bottom: 1px solid #EEE3E0;
    border-radius: 0 8px 8px 0;
    border-right: 1px solid #EEE3E0;
    border-top: 1px solid #EEE3E0;
    margin-right: 20px !important;
    padding: 10px 20px;
    width: 310px!important;
}
.centre-section-holder {
    margin-right: 20px !important;
}
.centre-section {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #EEE3E0;
    border-radius: 8px;
    padding: 10px 20px;
    position: relative;
}
.right-section {
    padding: 10px 0 0;
}
.left-section, .centre-section, .right-section {
    margin-bottom: 10px;
}
.left-section img, .centre-section img, .right-section img, .across-section ul li img {
    border: 5px solid #efefef;
    float: left;
    margin: 0 15px 0 0;
}
.left-section h3, .centre-section h3, .right-section h3, .across-section h3 {
    margin-bottom: 5px;
}
.across-section {
    overflow: hidden;
    position: relative;
    padding: 10px 0 10px 20px;
    margin-bottom: 10px;
    width: 960px;
    border-top: 1px solid #EEE3E0;
    border-bottom: 1px solid #EEE3E0;
    background: none repeat scroll 0 0 #FFFFFF;
}
.left-section.wide {
    width: 630px!important;
    margin-left: -10px;
    padding: 30px;
    min-height: 240px;
    overflow: hidden;
}

.slides {
    list-style-type: none;
    margin: 0px;
}

/* Direction Nav */
.flex-direction-nav {
    *height: 0;
    position: absolute;
    right: 5px;
    top: 35px;
    list-style-type: none;
    margin: 0px;
    width: 60px;
}
.flex-direction-nav a {
    width: 30px;
    height: 30px;
    margin: -20px 0 0;
    display: block;
    background: url(/img/bg_direction_nav.png) no-repeat 0 0;
    position: absolute;
    top: 50%;
    cursor: pointer;
    text-indent: -9999px;
    opacity: 0.3;
    -webkit-transition: all .3s ease;
}
.flex-direction-nav .flex-next {
    background-position: 100% 0;
    right: 5px;
}
.flex-direction-nav .flex-prev {
    left: 5px;
}
.flexslider:hover .flex-next {
    opacity: 0.8;
    right: 5px;
}
.flexslider:hover .flex-prev {
    opacity: 0.8;
    left: 5px;
}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
    opacity: 1;
}
.flex-direction-nav .flex-disabled {
    opacity: .3!important;
    filter:alpha(opacity=30);
    cursor: default;
}

.blogsitesummary {
    list-style-type: none;
    margin: 0px;
}
.blogsitesummary li {
    border-bottom: 1px dotted #EEE3E0;
    clear: both;
    margin-bottom: 7px;
    overflow: hidden;
    padding-bottom: 7px;
}
.blogsitesummary li a {
    width: 180px;
    float: left;
}
.blogsitesummary li .date {
    float: right;
    margin-right: 20px;
    width: 80px;
}

.across-section ul {
    margin: 0px;
    list-style-type: none;
}
.across-section ul li {
    float: left;
    margin-right: 30px;
    padding-right: 30px;
    width: 300px;
    border-right: 1px dotted #EEE3E0;
}
.across-section ul li:last-child {
    margin-right: 0;
    padding-right: 10px;
    width: 280px;
    border-right: none;
}
.across-section ul li p, .coda-slider p {
    margin-bottom: 5px;
}
.across-section .button {
    position: absolute;
    right: 15px;
    top: 10px;
}

.newsletter {
    background: url("/img/background-newsletter.png") no-repeat scroll center top transparent;
    height: 90px;
    margin-bottom: 5px;
    margin-left: -10px;
    width: 980px;
}

.newsletter h3, .newsletter p {
    color: #fff;
}
.newsletter h3 {
    margin: 6px 0 -5px;
    padding: 0 0 0 20px;
}
.newsletter p {
    padding: 0 0 0 20px;
    line-height: 14px;
    margin-bottom: 0;
}

.newsletter form {
    margin-top: 20px;
}
.newsletter form div {
    position: relative;
}
.newsletter form label {
    color: #FFFFFF;
    font: 300 20px Bebas;
    left: 15px;
    position: absolute;
    top: 9px;
    z-index: 1;
}


.form-noinline-labels label{
    position:static!important;
    color:#3D3637!important;
    
}

.form-noinline-labels input{
    font: 12px sans-serif!important;
}

.form-noinline-labels textarea{
    font: 12px sans-serif!important;
}

.newsletter form input {
    border: 4px solid #6A261B;
    border-radius: 3px 3px 3px 3px;
    height: 40px;
    opacity: 0.6;
    width: 225px;
    font: 300 20px Bebas;
    padding: 3px 10px 0;
}
.newsletter form input.button {
    background: #fff;
    opacity: 0.8;
    color: #6A261B;
    width: 120px;
    text-shadow: none;
    border: none;
}
.newsletter form input.button:hover {
    opacity: 1;
}

section#content{
    background: #fff url(../img/logo-shade.png) 90% 90% no-repeat;
}

section#content h2{
    margin-top:0;
    margin-bottom:30px;
}

section#content .tech h2{
 margin:20px 0;
 margin-top:30px;
}

section#content .tech h3{
  margin:20px 0;
 margin-top:30px;   
    
}

section#content img{
  padding: 10px;
  background: #e5e5e5;
  float: left;
  margin-right: 20px;
}

.left-section.wide article {
    border-bottom: 1px dashed #EEE3E0;
    clear: both;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.left-section.wide article img {
    width: 200px;
    height: 120px;
    border: 1px solid #EEE3E0;
    padding: 5px;
    margin-bottom: 20px;
}
.left-section.wide article img:hover {
    opacity: 0.8;
}

.left-section.wide article img.icon {
    height: auto;
    width: auto;
    border: none;
    padding: 0px;
    float: none;
    margin: 0px;
}

.left-section.wide #catblogoutput article img {
    width: auto;
    height: auto;
}
.left-section.wide #catblogoutput article h2, .left-section.wide #catblogoutput article h3, .left-section.wide #catblogoutput article p {
    clear: both;
}

.right-section ul {
    margin: 0px;
    list-style-type: none;
    margin-bottom: 40px;
}

.right-section ul li a {
    border-bottom: 1px solid #EEE3E0;
    display: block;
    font-size: 13px;
    line-height: 21px;
    padding: 5px 30px 5px 0;
}
.right-section ul li a:hover {
    background: #FDFDF7;
    text-decoration: none;
}
.right-section ul li {
    position: relative;
    width: auto;
}
.right-section ul li a:after {
    content: url(/img/ularrow.png);
    float: right;
    position: absolute;
    right: 10px;
}

form.quick-form, .coda-slider {
    background-image:-moz-linear-gradient(49% -2% -90deg,rgb(240,240,225) 0%,rgb(223,223,208) 100%);
    
    background-image:-webkit-gradient(linear,49% -2%,49% 98%,color-stop(0, rgb(240,240,225)),color-stop(1, rgb(223,223,208)));
    background-image:-webkit-linear-gradient(-90deg,rgb(240,240,225) 0%,rgb(223,223,208) 100%);
    background-image:-o-linear-gradient(-90deg,rgb(240,240,225) 0%,rgb(223,223,208) 100%);
    background-image:-ms-linear-gradient(-90deg,rgb(240,240,225) 0%,rgb(223,223,208) 100%);
    background-image:linear-gradient(-90deg,rgb(240,240,225) 0%,rgb(223,223,208) 100%);
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#fff0f0e1,endColorstr=#ffdfdfd0,GradientType=0)";
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#fff0f0e1,endColorstr=#ffdfdfd0,GradientType=0);
    
    overflow:hidden;
    border-radius: 8px;
    border: 1px solid #CECEBF;
    padding: 20px 20px 10px;
    margin-bottom: 40px;
}

form.quick-form {
    
}

form.quick-form div {
    position: relative;
    margin-bottom: 10px;
}
form.quick-form label {
    color: #CECEBF;
    font: 300 20px Bebas;
    left: 15px;
    position: absolute;
    top: 9px;
    z-index: 1;
}
textarea {
    resize: none;
    overflow: auto;
}
form.quick-form input, form.quick-form textarea, form.quick-form select {
    border: 4px solid #CECEBF;
    border-radius: 3px 3px 3px 3px;
    opacity: 0.6;
    width: 100%;
    font: 300 13px sans-serif;
    height: 40px;
    padding: 5px;
    
}
form.quick-form input.browse {
    padding: 0;
    background: #fff;
}
form.quick-form input.browse:hover {
    cursor: pointer;
}
.quick-form hr {
    border-color: #222;
    margin-top: 40px;
}



form.quick-form input[type="checkbox"] {
    height:22px!important;
    display:inline-block!important;
    width:15px!important;
    margin-top:-10px!important;
    position:relative!important;
}

form.quick-form textarea {
    height: 100px;
}
form.quick-form input {
    height: 40px;
}
form.quick-form .button {
    border-color: #fff;
    font-family: bebas !important;
    font-size: 20px !important;
}

.captchaimg {
    overflow: hidden;
    float: left;
    width: 100px;
}
.captchaimg img {
    border: none;
}
#CaptchaV2 {
    width: 145px!important;
}



.coda-slider-wrapper {
    clear: both;
    overflow: auto;
    width: 290px;
}
.coda-slider {
    border: 1px solid #8A8A7B;
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    margin-top: -1px;
    padding: 0px;
}

/* Use this to keep the slider content contained in a box even when JavaScript is disabled */
.coda-slider-no-js .coda-slider {
    height: 200px;
    overflow: auto !important;
}

/* Change the width of the entire slider (without dynamic arrows) */
.coda-slider, .coda-slider .panel {
    width: 290px;
}


/* Tab nav */
.coda-nav ul li a.current, .coda-nav ul li a.current:hover {
    background: #F0F0E1;
    color: #8A8A7B;
}
.coda-nav ul li a:hover {
    background: #D9D9CB;
}


/* Preloader */
.coda-slider p.loading {
    padding: 20px;
    text-align: center;
}

/* Don't change anything below here unless you know what you're doing */

/* Tabbed nav */
.coda-nav ul {
    clear: both;
    display: block;
    margin: auto;
    overflow: hidden;
    width: 290px!important;
}
.coda-nav ul li {
    display: inline }
.coda-nav ul li a:after {
    content: none;
}
.coda-nav ul li:first-child a {
    border-radius: 8px 0px 0px 0px;
    border-left: 1px solid #8A8A7B;
}
.coda-nav ul li:last-child a {
    border-radius: 0px 8px 0px 0px;
}
.coda-nav ul li a {
    background: none repeat scroll 0 0 #CECEBF;
    border-right: 1px solid #8A8A7B;
    border-top: 1px solid #8A8A7B;
    color: #8A8A7B;
    display: block;
    float: left;
    font: 300 14px Bebas;
    height: 40px;
    padding: 12px 0 0;
    text-align: center;
    text-decoration: none;
    width: 25%;
}

/* Miscellaneous */
.panel-wrapper {
    padding: 20px;
}

.coda-slider {
    float: left;
    overflow: hidden;
    position: relative;
    min-height: 160px;
}
.coda-slider .panel {
    display: block;
    float: left;
}
.coda-slider .panel-container {
    position: relative;
}
.coda-nav-left, .coda-nav-right {
    float: left;
}
.coda-nav-left a, .coda-nav-right a {
    display: block;
    text-align: center;
    text-decoration: none;
}

.coda-slider .blogsitesummary li {
    border-bottom: 1px dotted #8A8A7B;
}
.coda-slider .blogsitesummary li a {
    width: 140px;
}

.BlogTagCloud {
    margin-bottom: 40px;
}
.BlogTagCloud a {
    background: none repeat scroll 0 0 #DFDFD0;
    border: 1px solid #CECEBF;
    border-radius: 20px 20px 20px 20px;
    color: #8A8A7B;
    font-weight: 600;
    padding: 5px 10px;
    line-height: 30px;
}

.BlogTagCloud a:hover {
    text-decoration: none;
    opacity: 0.8;
}

p.date {
    margin-bottom: 5px;
    font-style: italic;
}

.social-media {
    list-style-type: none;
    margin: 0 0 60px;
}
.social-media  li {
    float: left;
    margin-right: 20px;
}

article.downloads img {
    padding: 0px!important;
}
article.downloads h5, article.downloads p {
    margin-bottom: 5px;
}

.register {
   
}
.register a.button {
    margin-bottom: 10px;
}

.left-section.wide .photogalleryTable img {
    width: 90px;
    height: auto;
    padding: 3px;
    margin: 0 6px 6px 0;
}

.coda-slider-wrapper .photogalleryTable img {
    width: 75px;
    height: 55px;
    padding: 0px;
    margin: 0 10px 10px 0;
}

@-webkit-keyframes reset {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.index .fade-in {
    -webkit-animation-name: reset, fade-in;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
}

.fade-in.one {
    -webkit-animation-delay: 0, 0;
}
.fade-in.two {
    -webkit-animation-delay: 0, 0.1s;
}

.fade-in.three {
    -webkit-animation-delay: 0, 0.2s;
}
.fade-in.four {
    -webkit-animation-delay: 0, 2s;
}
.fade-in.five {
    -webkit-animation-delay: 0, 3s;
}

#accordion h3 {
    border-bottom: 1px solid #EEE3E0;
}
#accordion h3.ui-corner-top, #accordion h3:last-child {
    border-bottom: none;
}
#accordion h3.ui-state-default:after, #accordion h3.ui-corner-top:after {
    float: right;
    position: absolute;
    right: 20px;
}
#accordion h3.ui-state-default:after {
    content: url("/img/faqs-arrows-right.png");
}
#accordion h3.ui-corner-top:after {
    content: url("/img/faqs-arrows-down.png");
}

.ui-accordion-content {
    height: auto!important;
    margin-bottom: 30px;
}

.webapp {
    padding: 30px 0 30px 30px !important;
}

.webapp-item {
    float: left;
    height: 120px;
    margin-bottom: 10px;
    margin-right: 15px;
    overflow: hidden;
    width: 180px;
    position: relative;
}
.webapp-item img {
    border: none;
    float: none;
    margin: 0;
    width: 180px;
}
.webapp-item h3, .webapp-item p {
    position: absolute;
}
.webapp-item h3 {
    left: 10px;
    bottom: 0px }
.webapp-item h3 a {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.webapp-item p {
    margin-bottom: 0;
    top: 5px;
    left: 10px;
    display: none;
}

.webapp-item:hover {
    background: #FF9900;
    border: 1px solid #FF9900;
}
.webapp-item:hover h3 a, .webapp-item p a {
    color: #fff;
}
.webapp-item:hover img {
    opacity: 0;
}
.webapp-item:hover p {
    display: block;
}


.donations {
    list-style-type: none;
    margin: 0px;
}

.donations a {
    background-color: #FCFCFC;
    border: 1px solid #EFEFEF;
    border-radius: 4px;
      display: inline-block;
    height: 100px;
    margin: 0 auto!important;
    padding-top: 30px;
    text-align: center;
    width: 48%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    
    background-image: linear-gradient(right top, rgb(239,239,239) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 60%, rgb(237,237,237) 100%);
    background-image: -o-linear-gradient(right top, rgb(239,239,239) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 60%, rgb(237,237,237) 100%);
    background-image: -moz-linear-gradient(right top, rgb(239,239,239) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 60%, rgb(237,237,237) 100%);
    background-image: -webkit-linear-gradient(right top, rgb(239,239,239) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 60%, rgb(237,237,237) 100%);
    background-image: -ms-linear-gradient(right top, rgb(239,239,239) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 60%, rgb(237,237,237) 100%);
    
}
.donations a:hover {
    text-decoration: none;
    background: #FF9900;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.donations a img {
    margin: 0px;
    border: none;
    float: none;
    height: 20px;
}

/*NF: OUR SUPPORTERS WEB APP - /OUR-SUPPORTERS AND /INDEX */

.supports-webapp {
    float: left;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
.supports-webapp img {
    float: right;
    margin: 0px 0px 30px 20px;
    max-width: 150px;
    
}
.supporters-webapp-home img {
    max-width: 70px;
}
.supporters-home-inner {
    height: 110px;
    overflow: hidden;
}
.supporters-home-inner p {
    margin-bottom: 15px;
    
}
#example1 {
    border-left: 1px solid #EEE3E0;
    height: 81px;
    overflow: hidden;
    padding: 20px 10px 0 20px;
}
#example1 ul {
    list-style-type: none;
    margin: 0px;
}
.user, .timePosted {
    display: none;
}



.thumb-right {
    float:right!important;
    margin-left:25px;
    margin-bottom:25px;
}



#header-white-text {
    color:#FFF!important;
}



.caption {
    float: right;
    width:220px!important;
    margin-left:20px;
    margin-bottom:20px;
    clear: both;
}



.caption img{
    margin-bottom:8px;
}


.caption em{
    display:block;
    margin-left:8px;
    margin-bottom:8px;
}



.hide-1 {
    display:none!important;
}


.team-profile {
    border: 4px solid #D5D1CA;
    padding: 10px;
    margin-bottom: 20px;
}

.team-profile p {
    margin-bottom: 0px!important;
}


#content .team-profile h2{
    font-size:22px!important;
}


.team-profile:hover {
    border: 4px solid #F49A01;
}


.team-profile img{
    float:right;
    border: 2px solid #D5D1CA;
    margin-left: 20px;
    max-height:80px;
}


#side-leaderboard {
    margin-bottom:40px;
    clear: both;
    
}


.hide-yes {
    display:block;
}

.hide-no {
    display:none;
}



#content.team-detail figure img {
    height:auto!important;
}


#content.team-detail figure {
    height:auto!important;
}




#content.team-detail .profile-detail-image1 {
    max-height:400px;
    overflow:hidden;
    position: relative;
    min-height: 220px;
    background: no-repeat url(/img/team-photo-holder.jpg);
    background-size: 610px 400px;
}

#content.team-detail .profile-detail-image1 .social-media {
    bottom: 15px;
    margin-bottom: 0;
    position: absolute;
    right: 20px;
}

.profile-detail-image1 .team-number {
    border: 18px solid #FFFFFF;
    border-radius: 150px;
    bottom: 20px;
    color: #FFFFFF;
    display: block;
    font-family: bebas;
    font-size: 88px;
    height: 180px;
    left: 20px;
    padding-top: 68px;
    position: absolute;
    text-align: center;
    width: 180px;
}


.event-sponsors {
    display: block;
    float: left;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.event-sponsors img{
    border: 1px solid #EFEFEF;
    margin-bottom: 10px;
    padding:10px;
    background-color:#FFF;
}



.loghide-0, .logshow-1 {
    display:none;
}
.loghide-1 {
    display:block;
}




.team-leaderboard {
    min-height: 30px;
    padding-bottom: 7px;
    padding-top: 7px;
    border-bottom: 1px solid #CCCCCC;
    clear:both;
}

.team-leaderboard .leader-col1,
.team-leaderboard .leader-col2,
.team-leaderboard .leader-col3,
.team-leaderboard .leader-colno
{
    float:left;
    
}

.team-leaderboard img{
    width:35px!important;
    
    
}


.team-leaderboard h4 a{
    font-size:13px!important;
    
    
}
.team-leaderboard h4 {
    line-height:13px!important;
    margin-bottom:0px!important;
    
}



.leader-colno{
    width:25px;
    font-weight:bold;
    font-size:18px;
    color:#999;
}


.leader-col1 {
    width:45px;
    float: left;
    display: block;
    height: 30px;
}


.leader-col2{
    width:165px;
    margin-right:10px;
    font-weight:bold;
}


.leader-col3 {
    width:45px;
    font-weight:bold;
}

.list-points {
    float:right;
    margin-right:15px!important;
    margin-bottom:8px!important;
    font-weight:bold;
}

.list-image img {
    clear:right;
    margin: 0 15px 0 0!important;
}


.right-section #webapp20564pagination li a{
    width:25px!important;
    height:25px!important;
    float:left!important;
    display:block!important;
    text-align:center!important;
    line-height:25px!important;
    padding:0px!important;
    font-size:12px!important;
    border:none!important;
}
.right-section #webapp20564pagination li {
    width:25px;
    height:25px;
    float:left;
    display:block;
    text-align:center;
    line-height:25px;
    font-size:12px!important;
    border:none!important;
}
.right-section #webapp20564pagination li a:after {
    
    content: none;
    float: none;
    position: static;
    right: 0px;
}


.right-section #webapp20564pagination   .pag-prev, 
.right-section #webapp20564pagination   .pag-next a,
.right-section #webapp20564pagination   .pag-prev a, 
.right-section #webapp20564pagination   .pag-next a 
{
    width:60px;
    ;
    !important;
}

#twin-town {
    overflow: hidden;
}
.twin-town-header {
    position: relative;
    height: 540px;
    border: 1px solid #FFB143;
    margin-bottom: 40px;
}
.twin-town-header .intro {
    position: absolute;
    margin-top: 10px;
}
.twin-town-header .intro h1, .twin-town-header .intro p {
    color: #fff;
}

.twin-town-header .intro p  {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.twin-town-header .intro a {
    color: #fff;
    text-decoration: underline;
}
.twin-town-header .intro .button {
    text-decoration: none;
}

#twin-town .sponsors {
    position: absolute;
    bottom: 0px;
}
#twin-town .sponsors p {
    color: #fff;
    font-size: 10px;
    margin-bottom: 0px;
}

hr.ttc {
    border-color: #ccc;
    margin-bottom: 40px;
}
ul.The-Itinerary {
    margin: 0 0 0 20px;
    list-style-type: none;
    font-size: 11px;
    line-height: 16px;
}
ul.The-Itinerary .grid_1 {
    font-weight: 600;
    display: block;
    width: 40px;
}
ul.The-Itinerary li {
    clear: both;
}
ul.The-Itinerary .grid_2 span {
    display: block;
}
.days {
    border-bottom: 1px dotted #EFEFEF;
    margin: 20px 0 20px 20px;
    padding-bottom: 5px;
}


.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    pointer-events: none;
}

.modalDialog p {
    color: #222;
}

.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    width: 640px;
    position: relative;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #222;
    text-align: left;
}

.close-holder {
    position: absolute;
    right: -10px;
    top: -10px;
}

.close {
    background: -moz-linear-gradient(center top , #FF9900 5%, #DF6400 100%) repeat scroll 0 0 #FF9900;
    border: 4px solid;
    border-radius: 50px;
    color: #fff !important;
    height: 30px;
    padding: 3px 0 0 8px;
    width: 30px;
    display:block;
}

.close:hover {
    background: #A8AF86;
    color: #fff !important;
    text-decoration: none;
}

.modalDialog2, .modalDialog3 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    pointer-events: none;
}



.modalDialog2 p, .modalDialog3 p {
    color: #222;
}

.modalDialog2:target, .modalDialog3:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog2 > div, .modalDialog3 > div {
    
    position: relative;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #222;
    text-align: left;
}

.modalDialog2 > div {
    width: 960px;
}
.modalDialog3 > div {
    width: 420px;
}

.scrolling {
    height: 600px;
    overflow: auto;
}



.Leaderboard .pagination.webapp {
    display: none;
}
.Leaderboard-title {
    color: #CCCCCC;
    font-family: Bebas;
    font-size: 14px;
    font-weight: 500;
    list-style-type: none;
    margin: 0;
}
.Leaderboard {
    margin: 0px;
    color: #CCCCCC;
    font-weight: 500;
}
.Leaderboard.otherone {
    margin-left: 20px;
}
.Leaderboard.otherone li img {
    border: none;
}
.Leaderboard li, .Leaderboard-title li {
    border-bottom: 1px solid #EFEFEF;
    clear: both;
}
.Leaderboard a {
    display: block;
    font-family: Bebas;
    font-size: 17px;
    height: 70px;
    line-height: 20px;
    padding: 10px 0;
}
.Leaderboard img {
    display: block;
    float: left;
    margin-right: 10px;
}
.Leaderboard a:hover {
    background: #FF9900;
    text-decoration: none;
    color: #fff;
}
.leader-points {
    display: block;
    margin-right: 5px;
    text-align: right;
}
.Leaderboard .leader-name, .Leaderboard-title .leader-name {
    display: block;
    float: left;
    width: 170px;
}

.main-teams {
    margin: 0px;
    list-style-type: none;
}
.main-teams li {
    height: 140px;
    margin-bottom: 20px;
}
.main-teams li:first-child, .main-teams li:nth-child(5n+6) {
    margin-left: 0;
}
.main-teams li:nth-child(5n+5) {
    margin-right: 0px;
}
.main-teams li a {
    background: none repeat scroll 0 0 #CCCCCC;
    display: block;
    height: 140px;
    position: absolute;
    width: 140px;
}
.main-teams li a:hover {
    background: #FF9900;
}
.main-teams li a:hover img {
    opacity: 0;
}
.main-teams li a:hover span.team-name {
    opacity: 1;
    color: #fff;
    font-size: 22px;
    line-height: 24px;
}
.main-teams li a span.team-name {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 120px;
    display: block;
    opacity: 0;
    font-family: Bebas;
}
.main-teams li a span.team-number {
    border: 8px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    display: block;
    font-family: bebas;
    font-size: 28px;
    height: 80px;
    margin: 30px 0 0 30px;
    padding-top: 25px;
    position: absolute;
    text-align: center;
    width: 80px;
}
.main-teams li a:hover span.team-number {
    display: none;
}

.team-socials {
    margin: -5px 0 0;
}
.team-socials li:last-child {
    float: right;
}


.team-socials li {
    float: left;
    list-style-type: none;
}
.team-socials li:hover {
    opacity: 0.8;
}
.team-socials li img {
    border: none;
    margin: 0px;
}
.edit-profile .team-socials li:first-child {
    margin-right: 10px;
}
.edit-profile {
    position: relative;
    background: none repeat scroll 0 0 #003959;
    display: block;
    padding: 20px;
    margin-bottom: 20px;
}

.edit-profile h3 {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.twin-town-social-media {
    list-style-type: none;
    position: absolute;
    right: 20px;
    top: 20px;
}
.twin-town-social-media li {
    float: left;
}
.delete-item a {
    text-transform: capitalize;
}










