/* HTML5 for IE */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav,
section {
    display: block;
}

/* CSS RESETS AND DEFAULTS */
body, div, ul, li, a, fieldset, nav, header, footer, h1, h2, h3, h4, h5, h6,
table, th, tr, td, img, span, label, p, button, input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}

*,
*::after,
*::before {
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

ul { list-style: none; }

body {
    width: 100%;
    height: 100%;
    background-color: #e5e5e5;
    overflow-x: hidden;
}

/* effects ------------------------------------------------------------------ */
.bdr-r3 { border-radius: 3px; }
.bdr-r6 { border-radius: 6px; }
.bdr-r9 { border-radius: 9px; }

.sdw-b1 { box-shadow: 0px 1px 1px #000; }
.sdw-b2 { box-shadow: 0px 1px 2px #000; }
.sdw-b3 { box-shadow: 0px 1px 5px #000; }

.sdw-t1 { text-shadow: 0 1px 1px #000; }
.sdw-t2 { text-shadow: 0 2px 2px #000; }

/* width -------------------------------------------------------------------- */
.w25,
.w33,
.w50,
.w66,
.w75,
.w100 {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 20px;
    width: 100%;
}

@media only screen and (min-width: 600px) {
    .w25  { width:  50%; }
}

@media only screen and (min-width: 1280px) {
    .w25  { width:  25%; }
    .w33  { width:  33.3333333333%; }
    .w50  { width:  50%; }
    .w66  { width:  66.6666666667%; }
    .w75  { width:  75%; }
    .w100 { width: 100%; }
}

/* typography --------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
    font: normal normal 700 16px/20px "Open Sans", sans-serif;
    color: #424242;
    margin-bottom: 20px;
    display: block;
}

h1, h2      { line-height: 40px; }
h3, h4, h5  { line-height: 20px; }

h1 { font-size: 32px; color: #fff; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }

p, ul { font: normal normal normal 15px/20px "Open Sans", sans-serif; }

p { margin-bottom: 40px; }

.section-title { margin-left: 20px; }

/* containers --------------------------------------------------------------- */
header,
section,
footer {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 15%;
    font-size: 0;
    /**/
    /*border: 1px dashed #f03;*/
}

.content-wrap {
    position: relative;
    margin: 0 -20px;
    padding: 20px 0 0 0;
    font-size: 0;
    /*overflow: hidden;*/
    max-width: 1366px;
    margin: 0 auto;
}

/* home link ---------------------------------------------------------------- */
.img-home { width: 18px; height: 18px; }
.link-home { position: absolute; top: 20px; right: 20px; }

/* custom hr ---------------------------------------------------------------- */
.custom-hr {
    display: block;
    margin: 0 20px 0 20px;
    border-width: 0;
    border-top: 1px solid rgba(0,0,0,.15) ;
    border-bottom: 1px solid rgba(255,255,255,.75);
}

/* header ------------------------------------------------------------------- */
header {
    border-bottom: 1px solid #fff;
    text-align: center;
    background:
        url(../img/gloss.png) 50% 0% no-repeat,
        url(../img/defBackground.jpg) top left repeat;
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,.75) inset;
}

@media only screen and (min-width: 1280px) {
    header { text-align: left; }
}

header .content-wrap { margin-top: 0; }

header h1 { margin-top: 80px; }

.header-logo {
    display: inline-block;
    text-align: left;
    color: #fff;
    margin-top: 18px;
    padding-left: 72px;
    line-height: 60px;
    background: url(../img/comet_logo_small.png) top left no-repeat;
}

.spacer {
    width: 100%;
    height: 40px;
}

#mainNav {
    position: relative;
    top: 0;
    right: 0;
}

@media only screen and (min-width: 1280px) {
    #mainNav  {
        position: absolute;
        top: 36px;
        right: 0;
    }
}

#mainNav li {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 5px 0;
}

#mainNav li a {
    display: block;
    padding: 2px 7px;
    font: normal normal 700 14px/18px 'Open Sans', sans-serif;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    /* CSS3 */
    border-radius: 3px;
}

#mainNav a:hover {
    color: #000;
    background-color: #fff;
    border-bottom: 2px solid #999;
    text-shadow: none;
    /* CSS3 */
    box-shadow: 0px 1px 2px #000;
}

/* slider ------------------------------------------------------------------- */
.slider {
    position: relative;
    height: 500px;
}

.img-monitor {
    position: absolute;
    bottom: -30px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 630px;
    height: 500px;
}

@media only screen and (min-width: 1280px) {
    .img-monitor {
        right: 0;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
/*
.slideshow {
    position: absolute;
    top: 61px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 570px;
    height: 352px;

}

@media only screen and (min-width: 960px) {
    .slideshow {
        right: 30px;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

.slideshow img {
    width: 570px;
    height: 352px;
    background: #000;
    border: 2px solid #000;
}
*/

.slideshow {
    position: absolute;
    top: 91px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 600px;
    height: 425px;

}

@media only screen and (min-width: 1280px) {
    .slideshow {
        right: 15px;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

.slideshow img {
    width: 600px;
    height: 425px;
    background: #000;
    border-radius: 0 0 3px 3px;
    overflow: hidden;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #333;
}

/* reference list ----------------------------------------------------------- */
.list {
    list-style: circle;
    list-style-position: outside;
    margin-top: -20px;
}
.list li { margin-left: 40px; }

/* sign up banner ----------------------------------------------------------- */
.signup {
    text-align: center;
    margin: 40px 20px;
    padding: 20px 40px;
    background-color: #ccc;
    border: 1px solid #aaa;
    background: #ccc url(../img/tex-4.png) top left repeat;
    /*box-shadow: 0 5px 10px -5px rgba(0,0,0,.75);*/
}

.signup > h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
}

.signup > p {
    margin-bottom: 0;
}

.big-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 7px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font: normal small-caps 700 18px/20px "Open Sans", sans-serif;

    color: #fff;
    background-color: #008ad9;
    border-bottom: 2px solid #005ab9;
}

.big-btn:hover {
    color: #000;
    background-color: #fff;
    border-bottom: 2px solid #999;
}

/* system requirements ------------------------------------------------------ */
.img-sysreq {
    display: block;
    width: 220px;
    height: 128px;
}

@media only screen and (min-width: 1280px) {
    .img-sysreq { margin: 0 auto; }
}

/* footer ------------------------------------------------------------------- */
footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #676767 url(../img/defBackground.jpg) top left repeat;
    box-shadow: 0 5px 10px -5px rgba(0,0,0,.75) inset;
}

footer .content-wrap {
    margin-bottom: 20px;
}

footer p {
    font-size: 13px;
    line-height: 18px;
    margin: 0 auto;
    float: none;
    color: #aaa;
    position: relative;
}

.footer-logo {
    position: absolute;
    top: 75%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

/* features ----------------------------------------------------------------- */
.img-feature {
    width: 210px;
    height: 90px;
    margin-bottom: 18px;
    /* CSS3 */
    box-shadow: 0px 1px 1px #999;
}
