/* Main */
html,
body {
    overflow: auto;
}
body {
    background-color: #dbe4eb;
    background-repeat: no-repeat;

    background: -webkit-gradient(linear, 0% 0%, 0% 15%, from(#fff), to(#dbe4eb));
    background: -webkit-linear-gradient(top, #fff, #dbe4eb 15%);
    background: -moz-linear-gradient(top, #fff, #dbe4eb 15%);
    background: -ms-linear-gradient(top, #fff, #dbe4eb 15%);
    background: -o-linear-gradient(top, #fff, #dbe4eb 15%);
}
a {
    color: #169ef4;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h1, h2, h3 {
    color: #7a8792;
    font-weight: normal;
}
h1 {
    font-size: 26px;
    font-weight: bold;
}
h2 {
    font-size: 20px;
    font-weight: bold;
}
h3 {
    font-size: 18px;
    font-weight: bold;
}
/* end Main */

/* Buttons */
.btn-group .btn {
    margin-right: 10px;
}
.btn-center {
    text-align: center;
}
.btn {
    display: inline-block;
    width: 140px;
    margin: 0;
    padding: 10px 0;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;

    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);

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

    -moz-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-small {
    width: auto;
    padding: 5px 10px;
    font-size: 14px;
}
.btn-buynow {
    background-color: #e6491e;

    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#faad99), to(#e6491e));
    background: -webkit-linear-gradient(top, #faad99, #e6491e);
    background: -moz-linear-gradient(top, #faad99, #e6491e);
    background: -ms-linear-gradient(top, #faad99, #e6491e);
    background: -o-linear-gradient(top, #faad99, #e6491e);
}
.btn-download {
    background-color: #6c95b3;

    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bad5ec), to(#618cab));
    background: -webkit-linear-gradient(top, #bad5ec, #618cab);
    background: -moz-linear-gradient(top, #bad5ec, #618cab);
    background: -ms-linear-gradient(top, #bad5ec, #618cab);
    background: -o-linear-gradient(top, #bad5ec, #618cab);
}
.btn-video {
    background-color: #ffbb00;

    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fee988), to(#f4a601));
    background: -webkit-linear-gradient(top, #fee988, #f4a601);
    background: -moz-linear-gradient(top, #fee988, #f4a601);
    background: -ms-linear-gradient(top, #fee988, #f4a601);
    background: -o-linear-gradient(top, #fee988, #f4a601);
}
/* end Buttons */

.header-wrapper {
    margin-top: 15px;
    border: 1px solid #e9edf0;

    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#e9edf0));
    background: -webkit-linear-gradient(top, #fff, #e9edf0);
    background: -moz-linear-gradient(top, #fff, #e9edf0);
    background: -ms-linear-gradient(top, #fff, #e9edf0);
    background: -o-linear-gradient(top, #fff, #e9edf0);
}
.content-wrapper,
.header-wrapper {
    margin-bottom: 15px;
    background-color: #fff;

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

    -webkit-box-shadow: 0 2px 1px 0px #bdc6cf;
    -moz-box-shadow: 0 2px 1px 0px #bdc6cf;
    box-shadow: 0 2px 1px 0px #bdc6cf;
}
.wrapper {
    margin: 20px;
}

/* Header */
.logo {
    float: left;
}
.logo a {
    display: block;
    width: 196px;
    height: 50px;
    background-image: url("../img/logo.png");
    text-indent: -9000px;
}
.menu {
    float: right;
    text-align: right;
    text-shadow: #fff 1px 1px 0;
}
.menu ul {
    display: inline-block;
    margin-bottom: 0;
    line-height: 50px;
}
.menu ul li {
    display: inline;
}
.menu a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #7a8792;
}
.menu .buynow {
    color: #f03b58;
}
/* end Header */

/* Content */
.product {
    margin: 50px;
}
.product-box {
    float: left;
    margin-right: 40px;
}
.product-box img {
    display: block;
}
.product .quote {
    font-family: Georgia, sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 16px;
    color: #7a8792;
}
article {
    font-size: 14px;
    margin: 50px;
    color: #333;
}
/* end Content */

/* Footer */
footer {
    font-size: 12px;
    text-align: center;
    color: #7a8792;
    text-shadow: #fff 1px 1px 0;
}
footer p {
    margin-bottom: 5px;
}
footer a {
	text-decoration: underline;
	color: #7a8792;
}
/* end Footer */

table.screenshots {
    width: 100%;
}
table.screenshots td {
    padding: 10px;
    text-align: center;
}
table.screenshots td p {
    color: #333;
    font-weight: bold;
    font-size: 12px;
    margin-top: 20px;
}
table.screenshots td a:hover {
    text-decoration: none;
}
table.screenshots-mac img,
table.screenshots-ts img {
    width: auto;
}
table.screenshots-mac td p,
table.screenshots-ts td p {
    margin-top: 5px;
}