/*------------------------------------------------------------------
[ STYLE.CSS ] Main Stylesheet
--------------------------------------------------------------------

[Table of contents]

1.	RESET

2.	MAIN STYLES
2.a  Tags defaults
2.b  Base layout
2.c  Navigations
2.d  Elements, ID's & Classes

3.	FORMS
3.a  General form styles
3.b  Individual forms

4.	PLUGINS

5. PRINT


/*------------------------------------------------------------------

1.	RESET
    Global reset for all HTML elements

------------------------------------------------------------------*/

@media handheld, projection, screen, print {

    * {
        font-family: inherit;
        font-size: 100%;
        font-style: inherit;
        font-weight: inherit;
        margin: 0;
        outline: 0;
        padding: 0;
        vertical-align: baseline
    }

    html {
        height: 100%
    }

    body {
        background: #fff;
        color: #000;
        font-size: 100.01%;
        min-height: 101%;
        text-align: left
    }

    img, fieldset, abbr, acronym {
        border: 0
    }

    ul, ol {
        list-style: none;
        list-style-position: outside
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%
    }

    address, caption, cite, code, dfn, em, strong, th, var {
        font-style: normal;
        font-weight: normal
    }

    caption, th {
        text-align: left
    }

    q:before, q:after, blockquote:before, blockquote:after {
        content: ''
    }

    input, select, textarea, button {
        font-size: 1em;
        line-height: normal;
        width: auto;
        vertical-align: middle
    }

    textarea {
        height: auto;
        overflow: auto
    }

    option {
        padding-left: 0.6em
    }

    button {
        background: none;
        border: 0;
        text-align: center
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: normal;
        line-height: normal
    }

}

@media handheld, projection, screen {

    /*------------------------------------------------------------------

    2.	MAIN STYLES
        General definitions

    --------------------------------------------------------------------

    /*-------------------------------
    2.a Tags defaults
    ---------------------------------
    [?] Tags only. No classes or ID's here.
    */

    body {
        background: #fff url(../images/bg.gif) repeat-x;
        color: #000;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 18px;
        text-align: center;
    }

    p, ul, ol, table, dl, dd, pre {
        margin: 0 0 18px
    }

    strong {
        font-weight: bold
    }

    em {
        font-style: italic
    }

    code, pre {
        font-family: "Courier New", Courier, monospace
    }

    dt {
        font-weight: bold
    }

    dd {
        font-style: italic
    }

    cite {
        font-style: italic
    }

    q {
        font-style: italic
    }

    blockquote {
        font-style: italic;
        padding: 0 2.67em
    }

    abbr, acronym {
        border-bottom: 1px dotted;
        cursor: help
    }

    /* Headlines
    -------------------------------
    [?] Always define: font-size - line-height - margin
    */

    h1 {
        font-size: 3em;
        margin: 1em 0 .4em;
    }

    h2 {
        font-size: 2em;
        margin: 1em 0 .4em;
    }

    h3 {
        font-size: 1.5em;
        margin: 1em 0 .4em;
    }

    h4 {
        font-size: 1.33em;
        margin: 1em 0 .4em;
    }

    h5 {
        font-size: 1em;
        font-weight: bold;
        margin: 1em 0 .4em;
    }

    h6 {
        font-size: .92em;
        margin: 1em 0 .4em;
    }

    /* Anchors
    -------------------------------*/

    a, a:link, a:visited {
        color: #3088bc;
        cursor: pointer;
        text-decoration: underline;
    }

    a:hover, a:active, a:focus {
        text-decoration: none;
    }

    /*-------------------------------
    2.b Base layout
    ---------------------------------
    [?] Mostly ID's. Classes & tags allowed.
    */

    #bg {
        background: url(../images/bg_home.jpg) no-repeat center 78px;
        margin: auto;
        overflow: hidden;
    }

    #wrap {
        margin: auto;
        text-align: left;
        width: 1000px;
        position: relative;
    }

    #header, #banner, #content, #footer {
        float: left;
        display: inline;
        clear: both;
        width: 100%;
        position: relative;
    }

    #header {
        background: url(../images/bg-header.png) no-repeat;
        height: 78px;
    }

    #logo {
        margin: 0
    }

    #logo a {
        background: url(../images/logo.png) no-repeat;
        display: block;
        text-indent: -9999px;
        width: 168px;
        height: 28px;
        position: absolute;
        top: 21px;
        left: 0;
        z-index: 10;
    }

    #tagline {
        color: #fff;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 16px;
        font-style: italic;
        text-align: right;
        text-shadow: 0 -1px 0 #c87417;
        margin: 0;
        width: 893px;
        position: absolute;
        top: 30px;
        left: 0;
    }
    #tagline a {
        position: absolute;
        top: -2px;
        right: -106px;
        display: block;
        width: 100px;
        height: 21px;
        background: url(../images/techcrunch-logo.png) no-repeat;
    }
    #tagline a span {
        display: none;
    }

    #content {
        background: url(../images/bg_content.png) no-repeat;
        margin: 0 -3px;
        padding: 30px 23px 0px;
        width: 960px;
    }

    #footer {
        height: 95px;
        padding: 10px 0 0;
    }

    /*-------------------------------
    2.c Navigations
    -------------------------------*/





    /*-------------------------------
    2.d Elements, ID's & Classes
    -------------------------------*/


    /* Header
    -------------------------------*/

    p#beta {
        color: #ffe082;
        font-size: 11px;
        line-height: 11px;
        position: absolute;
        top: 52px;
        left: 93px;
    }

    /* Home
    -------------------------------*/

    div#banner {
        padding: 55px 0 0;
        overflow: hidden;
        min-height: 480px;
    }

    div#banner div.left {
        float: left;
        width: 670px;
    }

    div#banner div.right {
        float: right;
        width: 314px;
    }

    div#banner div.left h1 {
        font-size: 48px;
        font-weight: bold;
        letter-spacing: -1px;
        text-shadow: 0 1px 0 #fff;
        margin: 15px 0 20px;
    }

    div#banner div.left h2 {
        color: #206a94;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 28px;
        font-style: italic;
        letter-spacing: -1px;
        text-shadow: 0 1px 0 #fff;
        margin: 0 0 10px;
    }

    div#banner div.left ol.steps {
        margin: 0 0 0 -18px;
        overflow: hidden;
    }

    div#banner div.left ol.steps li {
        float: left;
        background: url(../images/bg-steps.png) no-repeat;
        margin: 0 0 0 16px;
        padding: 170px 0 0 18px;
        width: 190px;
    }

    div#banner div.left ol.steps li.step-2 {
        background-position: -249px 0
    }

    div#banner div.left ol.steps li.step-3 {
        background-position: -498px 0
    }

    div#banner div.left ol.steps li h3 {
        color: #ee6a00;
        font-size: 23px;
        font-weight: bold;
        letter-spacing: -1px;
        text-shadow: 0 1px 0 #fff;
        margin: 0 0 5px;
    }

    div#banner div.left ol.steps li p {
    /*-*/
    }

    div#banner div.right {
        float: right;
        width: 314px;
    }

    div#banner div.right div.form-container-top, div#banner div.right div.form-container {
        background: url(../images/bg_form-container.png) no-repeat
    }

    div#banner div.right div.form-container-top {
        padding: 7px 0 0
    }

    div#banner div.right div.form-container {
        background-position: right bottom;
        padding: 30px;
    }

    /* Content
    -------------------------------*/

    h3.private-beta {
        color: #56a7bf;
        font-size: 18px;
        text-align: center;
        margin: 0 0 30px;
        padding: 16px 0;
    }

    h3.private-beta span.ico {
        background: url(../images/ico_beta.png) no-repeat;
        padding: 25px 0 25px 76px;
    }

    /* Footer
    -------------------------------*/

    p#copy {
        font-family: Georgia, "Times New Roman", Times, serif;
        text-align: center;
        margin: 0;
    }

    p#copy span.block {
        display: block;
        margin: 4px 0 0;
    }

    /*------------------------------------------------------------------

    3.	FORMS
        Styles for forms only

    --------------------------------------------------------------------

    /*-------------------------------
    3.a General form styles
    -------------------------------*/

    /* Form elements
    -------------------------------*/

    input.text, select.select, textarea.textarea {
        border: 1px solid #999;
        color: #000;
        font-family: Arial, Helvetica, sans-serif;
        padding: 5px;
    }

    input.text {
        width: 200px
    }

    select.select {
        width: 200px
    }

    textarea.textarea {
        height: 10em;
        width: 195px
    }

    select.select.free {
        width: auto
    }

    input.submit {
        background: #ec4d0e url(../images/bg_submit.gif) repeat-x;
        border: 0;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -khtml-border-radius: 5px;
        -webkit-border-radius: 5px;
        color: #fff;
        cursor: pointer;
        font-size: 11px;
        text-transform: uppercase;
        padding: 3px 15px;
    }

    /* General forms
    -------------------------------*/

    form.form ol.fieldset {
        margin: 0 0 10px
    }

    form.form ol.fieldset li.field {
        margin: 0 0 7px;
        position: relative;
    }

    form.form ol.fieldset li.field label {
        display: block;
        margin-bottom: 5px;
    }

    form.form p.submit {
    /* nothing here */
    }

    /*-------------------------------
    3.b Individual forms
    -------------------------------*/

    form#joinForm {
    /*-*/
    }

    form#joinForm h3 {
        color: #1e7ab1;
        font-size: 20px;
        font-weight: bold;
        text-shadow: 0 1px 0 #fff;
        margin: 0 0 10px;
    }

    form#joinForm p.fields {
        margin: 0 0 10px;
        padding: 0 0 0 65px;
        position: relative;
    }

    form#joinForm p.fields label, form#signForm ol.fieldset li.field label {
        text-align: right;
        width: 58px;
        position: absolute;
        top: 3px;
        left: 0;
    }

    form#joinForm p.fields input.text, form#signForm ol.fieldset li.field input.text {
        background: url(../images/bg_input-text.png) no-repeat;
        border: 0;
        width: 151px;
    }

    form#joinForm p.submit, form#signForm p.submit {
        margin: 0;
        padding: 0 0 0 65px;
    }

    form#signForm {
    /*-*/
    }

    form.form + form#signForm {
        background: url(../images/bg_line.gif) repeat-x;
        margin: 25px 0 0;
        padding: 25px 0 0;
    }

    form#signForm h3 {
        font-size: 18px;
        font-weight: bold;
        text-shadow: 0 1px 0 #fff;
        margin: 0 0 18px;
    }

    form#signForm ol.fieldset {
    /*-*/
    }

    form#signForm ol.fieldset li.field {
        padding: 0 0 0 65px
    }

    form#signForm ol.fieldset li.field input.checkbox {
    /*-*/
    }

    form#signForm ol.fieldset li.field input.checkbox + label {
        display: inline;
        font-size: 11px;
        position: static;
    }

    form#signForm ol.fieldset li.field input.checkbox ~ p {
        font-size: 11px;
        margin: 0 0 0 16px;
    }

    /*------------------------------------------------------------------

    4.	PLUGINS
        Predefined utilities

    --------------------------------------------------------------------

    /*-------------------------------
    Utility classes
    -------------------------------*/

    .skip {
        position: absolute;
        top: 0;
        left: -9999px
    }

}

@media print {

    /*------------------------------------------------------------------

    5.	PRINT
        Styles for print

    ------------------------------------------------------------------*/

    body {
        background: none;
        color: #000;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 10pt
    }

    code, pre {
        font-family: "Courier New", Courier, mono
    }

    img {
        float: left;
        clear: left;
        page-break-inside: avoid;
        page-break-after: avoid
    }

    a, a:link, a:visited {
        color: blue;
        text-decoration: underline
    }

    blockquote, table, pre {
        page-break-inside: avoid
    }

    ul, ol, dl {
        page-break-before: avoid
    }

    h1, h2, h3, h4, h5, h6 {
        display: block;
        font-weight: bold;
        page-break-after: avoid
    }

    #footer, .ad, #nav, .nav, form, .skip {
        display: none
    }

    h1 {
        font-size: 3em;
        margin: .67em 0;
    }

    h2 {
        font-size: 2em;
        margin: .83em 0;
    }

    h3 {
        font-size: 1.5em;
        margin: 1em 0;
    }

    h4 {
        font-size: 1em;
        margin: 1.33em 0;
    }

    h5 {
        font-size: 0.92em;
        margin: 1.67em 0;
    }

    h6 {
        font-size: 0.83em;
        margin: 2.33em 0;
    }

    /*------------------------------------------------------------------
        END CSS
    ------------------------------------------------------------------*/

}

/* end @media */

div#flashes #js-flashes {
  position: fixed;
  top: 0;
	left: 0;
  width: 100%;
  z-index: 50;
}
div.flash {
  padding: 6px 10px;
  background-color: black;
	opacity: .8;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: white;
}
div.notice span,
div.alert span {
	font-size: 14px;
	padding-left: 20px;
}
div.notice span {	background: url(../images/icon-notice.png) no-repeat; }
div.alert span  { background: url(../images/icon-alert.png) no-repeat; }

div.temporary_account_errors { color: white; }

.errorExplanation {
    border: 1px solid maroon;
    margin-top: 5px;
    padding: 10px;
}

.errorExplanation h2 {
    margin: 0;
    color: maroon;
}

/* Footer */

#footer {
    margin-top: -5px;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-align: center;

}

#footer a {
    color: black;
}

#footer p {
    margin-top: 10px;
}

#footer-inside {
    position: relative;
    width: 998px;
    padding: 16px 0;
    margin: 0 auto;
    background-color: white;
}

#footer-inside #border-left {
    position: absolute;
    width: 3px;
    height: 46px;
    top: 0;
    left: -3px;
    background: url(../images/footer-border-left.png) no-repeat;
}

#footer-inside #border-right {
    position: absolute;
    width: 3px;
    height: 46px;
    top: 0;
    right: -3px;
    background: url(../images/footer-border-right.png) no-repeat;
}
