/* Normalize */
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;

    background-color:#008041;
    filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#c2d363, endColorstr=#008041);
    background-image:-moz-linear-gradient(top, #c2d363 0%, #008041 100%);
    background-image:linear-gradient(top, #c2d363 0%, #008041 100%);
    background-image:-webkit-linear-gradient(top, #c2d363 0%, #008041 100%);
    background-image:-o-linear-gradient(top, #c2d363 0%, #008041 100%);
    background-image:-ms-linear-gradient(top, #c2d363 0%, #008041 100%);
    background-image:-webkit-gradient(linear, right top, right bottom, color-stop(0%,#c2d363), color-stop(100%,#008041));
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

@media print {
    * {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;

        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    select {
        background: #fff !important;
    }

    .navbar {
        display: none;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: ciscosansthin, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
    font-weight: 400;
    color: #555555;
    position: relative;
}

@media only screen and (max-width: 767px) {
    body {
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
        width: 100%;
        min-width: 0;
    }
}

a#main-title {
    text-decoration: none;
}
.clear {
    float: none;
    clear: both;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.fixed {
    position: fixed;
}

.fixed.pinned {
    position: absolute;
}

.unfixed {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.container {
    position: relative;
}

#box-1 h3 {
    color: #f27b1f;
    font-family: ciscosansextralight, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
}

#box-1 strong{
    font-family: ciscosansregular, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
}

#box-1 .logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

#box-1 .content-3 p{
    background: #003A5E;
}

#box-2 .content-1 {
    font-family: ciscosansoblique, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
}

#box-4 {
    padding: 0 10px;
}

#box-3 .content-1{
    font-family: ciscosansextralightoblique, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
}

#box-3 .content-2 .accordion-head{
    font-family: ciscosansextralight, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
}

#box-3 .content-2 .accordion-head .title {
    color: #f27b1f;
    font-weight: bold;
}

#box-3 .content-2 .accordion-head-3 .desc {
    line-height: normal;
    padding: 6px 0 0 !important;
}

#box-3 .content-2 .accordion-content{
    -webkit-transform: translate3d(0,0,0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}

#box-3 .content-2 .accordion-content-1 .desc,
#box-3 .content-2 .accordion-content-2 .desc,
#box-3 .content-2 .accordion-content-3 .desc,
#box-3 .content-2 .accordion-content-4 .desc {
    font-weight: bold;
}

#box-3 .content-2 .accordion-content-1 .col,
#box-3 .content-2 .accordion-content-2 .col,
#box-3 .content-2 .accordion-content-3 .col,
#box-3 .content-2 .accordion-content-4 .col {
    font-weight: normal;
}

#accordion{
    position: relative;
}

#accordion .container #box-3 .content-2 [class*="accordion-content-"] .col{
    padding-bottom: 25px;
}

#box-4 p {
    padding: 0;
    margin: 0;
}

#box-4 {
    background-color: #003A5E;
    padding: 15px 0;
    color: #FFFFFF;
    position: relative;
}

#box-4 .content-2 p.find-out {
    float: left;
    line-height: 48px;
    font-size: 24px;
}

#box-4 .content-2 #find-out-btn {
    float:right;
    text-decoration: none;
    text-shadow: 0 -1px 0 #666666;
    -webkit-text-shadow: 0 -1px 0 #666666;
    -moz-text-shadow: 0 -1px 0 #666666;
    -o-text-shadow: 0 -1px 0 #666666;
    background-color: #78ac00;
    background: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #8fc200), color-stop(100%, #629700));
    background: -webkit-linear-gradient(top, #8fc200 0%, #629700 100%);
    background: -moz-linear-gradient(top, #8fc200 0%, #629700 100%);
    background: -o-linear-gradient(top, #8fc200 0%, #629700 100%);
    background: linear-gradient(top, #8fc200 0%, #629700 100%);
    background: -ms-linear-gradient(top, #8fc200 0%, #629700 100%);
    font-family: arial;
    border-radius: 5px;
}

#box-4 .content-2 #find-out-btn:hover {
    background-color: #6e9c00;
    background: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #8fc200), color-stop(100%, #4d7700));
    background: -webkit-linear-gradient(top, #8fc200 0%, #4d7700 100%);
    background: -moz-linear-gradient(top, #8fc200 0%, #4d7700 100%);
    background: -o-linear-gradient(top, #8fc200 0%, #4d7700 100%);
    background: linear-gradient(top, #8fc200 0%, #4d7700 100%);
    background: -ms-linear-gradient(top, #8fc200 0%, #4d7700 100%);
    text-decoration: none;
}

#box-4 .content-2 .share {
    list-style: none;
    float: right;
    padding: 0;
    margin: 5px 20px 0 0;
}

#box-4 .content-2 .share li {
    float: left;
}

#box-4 .content-2 .share li a {
    width: 40px;
    height: 40px;
    display: block;
}

#box-4 .content-2 .share li a.facebook {
    background: url('../img/facebook.png') no-repeat center center;
}
#box-4 .content-2 .share li a.twitter {
    background: url('../img/twitter.png') no-repeat center center;
}
#box-4 .content-2 .share li a.linkedin {
    background: url('../img/linkedin.png') no-repeat center center;
}
#box-4 .content-2 .share li a.link {
    background: url('../img/link.png') no-repeat center center;
}
#clipboard-dialog {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: -9px;
    right: 225px;
}
#clipboard-dialog .clipboard-container {
    background-color: #000000;
    padding: 10px;
    float: left;
    width: 270px;
    height: 68px;
}
#clipboard-dialog .clipboard-container .icon.close {
    background: url('../img/clipboard-popup-sprite.png') no-repeat;
    float:left;
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 8px;
    margin-top: 13px;
    text-decoration: none;
}
#clipboard-dialog .clipboard-container .icon.close:hover {
    background: url('../img/clipboard-popup-sprite.png') no-repeat 0 -22px;
}
#clipboard-dialog .clipboard-container .icon.copy {
    background: url('../img/clipboard-popup-sprite.png') no-repeat center -50px;
    width: 40px;
    height: 48px;
    display: block;
    float: right;
    text-decoration: none;
}
#clipboard-dialog .clipboard-container .icon.copy.hover {
    background: url('../img/clipboard-popup-sprite.png') no-repeat center -100px;
}
#clipboard-dialog .clipboard-container #clipboard-input {
    color: #000000;
    margin-top: 11px;
}
#clipboard-dialog .clipboard-container .small-text {
    display: none;
    font-size: 12px;
    text-align: center;
}
#clipboard-dialog .arrow {
    height: 0;
    width: 0;
    border-bottom: 15px solid transparent;
    border-top: 15px solid transparent;
    border-left: 20px solid #000000;
    display: block;
    float: right;
    margin-top: 19px;
}
#box-5{
    font-family: ciscosansregular, "Helvetica Neue", Helvetica, Arial, "Sans Serif";
}

/**Different breakpoint on widescreen.css**/

@media screen and (min-height: 985px){
    html {
        height: 100%;
    }
}