/* media queries switches */
/* EightShapes responsive switches */
/* fixes */
/* page attributes */
/* small mobile screens switches */
/* Styles shared among all language versions - page layout elements */
/* 
MEDIA QUERIES
Default values (no media query) - used by all sizes
look at variables.scss
*/
/* resp US */
/* USED:*/
/* 30em	->	480px */
/* 37.5em -> 600px */
/* 48em	->	768px */
/* 60em	->	959px */
/* 64em	->	1024px	*/
/* 75em	->	1200px */
/* NOT USED: */
/* 15em -> 240px */
/* 20em	->	320px*/
/* 56.25	->	900px */
/* 68.75em	->	1100px */
/* 81.25	->	1300px */
/*@mixin hdpi-desktop($ratio: 1.3)*/
/*@mixin hdpi-tablet($ratio: 1.3)*/
/*@mixin hdpi-mobile($ratio: 1.3)*/
/* Styles shared among all language versions - CSS reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}
* {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
html, body {
	direction: ltr;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
th, td {

}
caption, th, td {
	text-align: left;
	font-weight: normal;
	padding:10px;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
body {
	font-family: arial, sans-serif;
	font-size: 12px;
}
p {
	color: #555555;
}
/* mixins and other SASS stuff*/
.clear {
	overflow: hidden;
	width: 100%;
}
 .clear::after {
 content: " ";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
.clear-no {
	width: 100%;
	overflow: visible;
}
 .clear-no::after {
 content: " ";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
.clear-min {
	overflow: hidden;
}
 .clear-min::after {
 content: " ";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
.menu-clearfix:before, .menu-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.menu-clearfix:after {
	clear: both;
}
.menu-clearfix {
	/* support: IE7 */
  min-height: 0;
}
.single-hero {
	border: 1px solid #ccc;
	display: table;
}
.cf {
	clear:both;
}
#hero-loader {
	width: 100%;
	background-image: url('../img/hero/loader.gif');
	display:block;
	background-position: 50% 40%;
	background-repeat: no-repeat;
	min-height: 60px;
}
#carousel {display:none; position:relative; margin-bottom:20px}

/*@media all and (min-width : $media-mobile + 1) and (max-width : $media-desktop - 1)*/
@media all and (max-width: 1024px) {
 .clear-mobile {
 overflow: hidden;
    /*width: 100%;*/
    width: auto;
}
 .clear-mobile::after {
 content: " ";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
}
@media all and (max-width: 600px) {
 .clear-mobile {
 overflow: hidden;
    /*width: 100%;*/
    width: auto;
}
 .clear-mobile::after {
 content: " ";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
}
/* default values for all page types*/
html {
	margin: 0;
	height: 100%;
}
body {
	font-size: 13px;
}
a {
	text-decoration: none;
	color: #007fc5;
}
p {
	padding-top: 0px;
}
.c32v3-pilot, .c11v6-pilot {
	margin-top: 16px;
	margin-bottom: 16px;
}
.c11v6-pilot img {
	height: auto;
}
.mlb-pilot th, .clb th {
	font-weight: bold;
}
.mlb-pilot h2, .clb h2 {
	font-size: 14px;
	font-weight: bold;
	color: #444;
	margin-bottom: 10px;
}
.mlb-pilot ul, .clb ul {
	list-style-position: outside;
	list-style-type: disc;
	margin: 0 0 20px 30px;
}
.mlb-pilot li, .clb li {
	line-height: 1.6600000000000001em;
	margin-bottom: 5px;
}
.n12v10-pilot tr > td:first-child {
	width: 165px;
}
.n12v10-pilot {
	margin-bottom: 16px;
}
#tabs-content .infotab .n12v10-pilot p {
	font-size: 13px;
}
.n12v10-pilot .pseudo-table-main {
	float: left;
	width: 75%;
}
.n12v10-pilot .pseudo-table-aside {
	float: right;
	width: 24%;
}
.n12v10-pilot.half .pseudo-table-main {
	float: left;
	width: 50%;
}
.n12v10-pilot.half .pseudo-table-aside {
	float: right;
	width: 49%;
}
.n12v10-pilot.thirds .pseudo-table-main {
	float: left;
	width: 65%;
}
.n12v10-pilot.thirds .pseudo-table-aside {
	float: right;
	width: 34%;
}
.box {
	padding: 4px 0;
	background-color: white;
}
.box h2 {
	font-size: 14px !important;
	font-weight: bold !important;
}
.box h2.bdr {
	border-bottom: 4px solid #ccc;
	padding-bottom: 4px;
	color: #444;
	margin-bottom: 10px;
}
.box h3 {
	font-size: 12px;
	margin-bottom: 4px;
}
.box p {
	padding-top: 0;
	margin-bottom: 16px;
}
.box img {
	margin: 0 auto;
}
.box.content-box {
	float: right;
	width: 220px;
	margin-left: 16px;
	padding: 16px;
	border: 1px solid #ccc;
}
.box.content-box h2 {
	margin-top: 0 !important;
}
.box.content-box p {
	margin-bottom: 10px !important;
}
.box.content-box p.compact {
	margin-bottom: 0 !important;
}
.box a {
	text-decoration: none;
	color: #007FC5;
}
.grey {
	background-color: #f0f0f0;
}
.dark-grey {
	background-color: #666666;
	color: white;
}
.dark-blue {
	background-color: #204a63;
	color: white;
}
.dark-grey h2, .dark-blue h2 {
	font-size: 16px;
}
.dark-grey h3, .dark-blue h3 {
	font-size: 16px;
	line-height: 1.25em;
	margin: 0px 0px 0.75em;
	font-weight: 700;
}
.dark-grey p, .dark-blue p {
	font-size: 13px;
	line-height: 1.4em;
	margin-bottom: 0.75em;
	color: #FFFFFF;
}
@media all and (max-width: 599px) {
 .dark-grey h3, .dark-blue h3 {
 font-size: 20px;
 font-weight: 400;
 line-height: 1.25em;
 margin: 0px 0px 0.25em;
}
 .dark-grey p, .dark-blue p {
 font-size: 14px;
 line-height: 1.4em;
 margin-bottom: 0.5em;
}
}
.noborders {
	border: none;
}
.cta {
	margin-top: 8px;
	margin-bottom: 8px;
}
.cta-blue {
	border-bottom: 1px solid #26689A;
	border-left: 1px solid #2970A6;
	border-right: 1px solid #2970A6;
	border-top: 1px solid #2970A6;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display:inline-block;
	overflow: hidden;
	margin-top: 12px;
}
.cta-blue a, #tabs-content .infotab .cta-blue a {
	font-weight: bold;
	padding: 10px 15px;
	display: inline-block;
	background-color: #0282d4;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00aae7), color-stop(100%, #0282d4));
	background: -webkit-linear-gradient(top, #00aae7 0%, #0282d4 100%);
	background: linear-gradient(to bottom, #00aae7 0%, #0282d4 100%);
	color: white;
	box-shadow: 0px 1px 0px 0px #4999CE inset;
	font-size: 13px;
	line-height: 13px;
	text-shadow: #215984 0px -1px 0px;
}
.cta-blue a:hover {
	box-shadow: none;
	background-color: #3295D3;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #37B9E5), color-stop(100%, #3295D3));
	background: -webkit-linear-gradient(top, #37B9E5 0%, #3295D3 100%);
	background: linear-gradient(to bottom, #37B9E5 0%, #3295D3 100%);
	text-decoration: none;
}
.cta-blue a:active, .cat-blue a:visited {
	background-color: #fdfdfd;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00aae7), color-stop(100%, #0282d4));
	background: -webkit-linear-gradient(top, #00aae7 0%, #0282d4 100%);
	background: linear-gradient(to bottom, #00aae7 0%, #0282d4 100%);
	text-decoration: none;
}
.cta-grey {
	border: 1px solid #444444;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display:block;
	overflow: hidden;
	margin-top: 12px;
}
.cta-grey a {
	text-align: center;
	text-shadow: #FFFFFF 0px 1px 0px;
	padding: 10px 0;
	font-weight: bold;
	display: inline-block;
	width: 100%;
	font-size: 13px;
	background-color: #EEEEEE;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FDFDFD), color-stop(100%, #BCBCBC));
	background: -webkit-linear-gradient(top, #FDFDFD 0%, #BCBCBC 100%);
	background: linear-gradient(to bottom, #FDFDFD 0%, #BCBCBC 100%);
	color: #444444;
}
.cta-grey a:hover {
	background-color: #bcbcbc;
	/* Chrome,Safari4+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EEEEEE), color-stop(100%, #BCBCBC));
	/* Chrome10+,Safari5.1+ */
  background: -webkit-linear-gradient(top, #EEEEEE 0%, #BCBCBC 100%);
	background: linear-gradient(to bottom, #EEEEEE 0%, #BCBCBC 100%);
	color: black;
	text-decoration: none;
}
.cta-grey a:active, .cta-grey a:visited {
	background-color: #fdfdfd;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdfdfd), color-stop(100%, #bcbcbc));
	background: -webkit-linear-gradient(top, #fdfdfd 0%, #bcbcbc 100%);
	background: linear-gradient(to bottom, #fdfdfd 0%, #bcbcbc 100%);
	color: #444444;
	text-decoration: none;
}
.techlevel {
	width: 150px;
	margin-bottom: 16px;
	color: white;
	background-color: white;
	border: 1px solid #c4c4c4;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
.techlevel .tech1, .techlevel .tech2, .techlevel .tech3 {
	text-align: center;
	background-color: #14aee0;
	-webkit-border-radius: 8px 0 0 8px;
	-moz-border-radius: 8px 0 0 8px;
	border-radius: 8px 0 0 8px;
}
.techlevel .tech1 {
	width: 33%;
}
.techlevel .tech2 {
	width: 66%;
}
.techlevel .tech3 {
	width: 100%;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
.ovp-video {
	position: relative !important;
	padding-top: 49px !important;
	padding-bottom: 56.25% !important;
	height: 0 !important;
}
.ovp-video div, .ovp-video embed, .ovp-video object, .ovp-video canvas, .ovp-video iframe {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
	left: 0 !important;
	top: 0 !important;
}
#mobile-detect {
	width: 1px;
	height: 1px;
	background-color: transparent;
	display: none;
}
audio {
	width: 50%;
	margin: 4px 0 4px 0;
	display: block;
}
.no-js #tabs-row ul.menu-clearfix {
	display: none;
}
.no-js #tabs-content {
	margin-top: 0;
}
.no-js #tabs-content .infotab, .no-js #tabs-content .infotab-active {
	display: block;
	border-bottom: 1px solid #ccc;
}
.no-js #tabs-content .infotab p.breacrumb-txt, .no-js #tabs-content .infotab-active p.breacrumb-txt {
	display: block;
	font-size: 18px;
	font-weight: bold;
}
.bx-wrapper {
	margin-bottom: 0;
}
.bx-controls {
	margin-top: -24px;
	position:absolute;
	bottom:-2px;
	left:10px;
	z-index:999;
}
#sponsors-rotator .bx-viewport {
	border: none;
}
ul.community li {
	padding-left: 24px;
	margin-bottom: 12px;
	background: url("../img/icons/icon-sprite.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
ul.community li.external {
	background-position: 3px -66px;
}
ul.community li.blog {
	background-position: 0 -320px;
}
ul.community li.community {
	background-position: 0 -464px;
}
ul.community li.twitter {
	background-position: 0 -304px;
}
ul.community li.facebook {
	background-position: 0 -352px;
}
ul.community li.linkedin {
	background-position: 0 -368px;
}
ul.community li.youtube {
	background-position: 0 -480px;
}
ul.community li.flickr {
	background-position: 0 -496px;
}
ul.community li.rss {
	background-position: 0 -512px;
}
ul.community li.google {
	background-position: 0 -528px;
}
ul.community li.slideshare {
	background-position: 0 -544px;
}
ul.community li.picasa {
	background-position: 0 -560px;
}
ul.community li.pinterest {
	background-position: 0 -800px;
}
ul.community li.vine {
	background-position: 0 -816px;
}
ul.community li.instagram {
	background-position: 0 -752px;
}
ul.community li a {
	height: 16px;
}
.dashline {
	padding-bottom: 4px;
	border-bottom: 1px dashed #ccc;
}
.dashline-imp {
	padding-bottom: 4px !important;
	border-bottom: 1px dashed #ccc !important;
}
.blue-bar {
	border-top: 4px solid #0C8CDD;
}
#msg-log {
	position:fixed;
	top:0px;
	left:0px;
	z-index: 9999999;
	background-color: tomato;
	padding:6px;
}
#page-bottom {
	height:1px;
	width:100%;
	display:block;
	position: fixed;
	bottom:0;
	left:0;
}
.back-to-top {
	position: absolute;
	right: 245px;
	right: 245px;
	top: 0;
	z-index: 80000;
	cursor: pointer;
}
.back-to-top span {
	background: none repeat scroll 0 0 #777777;
	border: 2px solid #FFFFFF;
	border-radius: 4px;
	bottom: 10px;
	color: #FFFFFF;
	display: block;
	font-size: 12px;
	padding: 9px 8px;
	position:fixed;
	z-index: 80000;
}
.back-to-top.static {
	bottom:-70px;
	top: auto;
	right: 6px;
}
.back-to-top.fixed {
	bottom:auto;
	top: 0;
	right: 105px;
}
/******************  *********************/
#main {
	width:1000px;
	margin: 0 auto;
	color: #444;
}
#titlebar {
	margin-bottom: 24px;
}
 @media all and (max-width: 599px) {
 #titlebar {
 margin-bottom: 0;
}
}
#titlebar-menu {
	display: none;
}
/* header + header + header + header + header + header + header + header + header + header + header */

header {
	display:block;
	border-top: 4px solid #0c8cdd;
	border-bottom: 1px solid #e2e2e2;
	height: 78px;
}
header div {
	max-width: 960px;
	min-width: 320px;
	margin: 0 auto;
}
header #logo {
	background-image: url('../img/logo/logo-cisco.png');
	background-size: 62px 33px;
	width: 62px;
	height: 33px;
	display:block;
	float:left;
	margin-top: 20px;
	margin-left:20px;
	margin-right:40px;
}
 @media all and (max-width: 479px) {
 header #logo {
 margin-right:20px;
}
}

/* retina header logo */
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
 header #logo {
 background-image: url('../img/logo/logo-cisco-retina.png');
}
}
header h1 {
	font-size:22px;
	line-height: 22px;
	display: block;
	float:left;
	font-weight: 100;
	color: #444;
	margin-top: 31px;
}
 @media all and (max-width: 479px) {
 header h1 {
 font-size:20px;
}
 header #logo {
 margin-top: 20px;
 margin-left:10px;
 margin-right:20px;
}
}
@media all and (max-width: 400px) {
 header h1 {
 font-size:16px;
}
}
#titlebar-title {
	padding-top: 25px;
	font-size: 22px;
	display: none;
}
#titlebar-share {
	float: right;
	position: relative;
}
#s10-pilot-cust {
	border: none;
	margin: 0;
}
#s10-pilot-cust a.s10-sh {
	display: block;
	width: auto;
	font-size: 14px;
	font-weight: bold;
	color: #444;
	float: left;
}
#s10-pilot-cust a.s10-sh .txt-long {
	margin-right: 4px;
}
#s10-pilot-cust .txt {
	display: none;
}
#s10-pilot-cust .share {
	list-style-type: none;
	float: right;
	margin: 0;
	padding: 0;
}
@media all and (min-width: 1025px) {
 #s10-pilot-cust .share li {
 display: inline;
}
}
#s10-pilot-cust .share li a {
	display: inline-block;
	width: 16px;
	margin: 0 1px;
	padding: 0;
	text-decoration: none;
}
#s10-pilot-cust .share li a img {
	border: none;
}
#top-content {
	margin-bottom: 0;
}
#top-content-left {
	float: left;
	width: 740px;
}
#event-info {
	background: white;
	border: 1px #ccc solid;
	color: #555555;
	margin-bottom: 24px;
}
#event-info ul {
	margin: 10px 20px 0px 20px;
	width: auto;
	text-align: justify;
	-ms-text-justify: distribute-all-lines;
	text-justify: distribute-all-lines;
}
#event-info ul li {
	vertical-align: top;
	display: inline-block;
 *display: inline;
/* eventype code*/
}
.stretch {
	width: 100%;
	display: inline-block;
	font-size: 0;
	line-height: 0
}
#event-info ul li > img {
	float: left;
	margin-top: 6px;
}
#event-info ul li .label {
	font-weight: bold;
	display: block;
	font-size: 14px;
	margin-right: 10px;
}
#event-info ul li:first-child {
	border-left: none;
}
#event-info ul li div {
	padding: 4px 8px 4px 30px;
}
#top-content-right {
	width: 190px;
	float: right;
}
#registration-top {
	padding: 16px;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
#registration-top h2 {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: normal;
}
#middle-content {
	margin-bottom: 0;
	min-height: 240px;
}
#middle-content-left {
	float: left;
	width: 740px;
}
#middle-content-left .tab:first-child {
	margin-left: 6px;
}
#tabs a#menu-link {
	display: none;
}
#tabs-row .tab a {
	color: #444;
	display:block;
	padding: 4px 10px 6px 10px;
	border: 1px #ccc solid;
	border-bottom: 0;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	border-bottom: 4px solid #cccccc;
}
#tabs-row .tab.tab-active a {
	border-bottom: 4px solid #ffffff;
}
#tabs-row > ul {
	padding: 0;
	border: none;
}
#tabs-content {
	border: 1px #ccc solid;
	border-top: 4px solid #ccc;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	padding-top: 4px;
	z-index: 1;
	margin-top: -8px;
}
#tabs-content .infotab, #tabs-content .infotab-active {
	padding: 16px;
	padding-top: 0px;
	display: none;
	position: relative;
	margin-top: 2px;
}
#tabs-content .acc {
	display: none;
}
#tabs-content .infotab.active {
	display: block;
}
#tabs-content .infotab .breacrumb-txt {
	display: none;
}
#tabs-content .infotab .subtab {margin-bottom:16px; padding-left:16px; padding-right:16px; border-bottom:1px solid #ccc; padding-top:2px}
#tabs-content .infotab .subtab ul {
	font-size: 12px;
	margin: 0 0 10px;
	padding: 0;
}
#tabs-content .infotab .subtab ul li {
	list-style-type: none;
	display: inline;
}
#tabs-content .infotab .subtab ul li:after {
	content: " | ";
}
#tabs-content .infotab .subtab ul li:last-child:after {
	content: "";
}
#tabs-content .infotab .subtab h1 {
	margin-bottom: 4px;
}
#tabs-content .infotab .c11v6-pilot h2 {
}
#tabs-content .infotab table.small-only {
	display: none;
}
#tabs-content .infotab table.large-only {
	display: table;
}
#tabs-content .infotab table p:last-child {
	margin-bottom: 4px;
}
#tabs-content .infotab table p q {
	font-style: italic;
}
#tabs-content .infotab #agenda-table caption {
	display: none;
}
#tabs-content .infotab #agenda-table th.col1 {
	width: 128px;
}
#tabs-content .infotab #agenda-table th.col2 {
	width: 220px;
}
#tabs-content .infotab #agenda-table th.col3 {
	width: 100px;
}
#tabs-content .infotab #agenda-table th.col4 {
	width: 220px;
}
#tabs-content .infotab h1 {
	font-size: 20px;
	font-weight: bold;
	color: #444;
	line-height: 1.4em;
	margin-bottom: 12px;
}
#tabs-content .infotab h2 {
	margin-bottom: 0.63em;
	margin-top: 1.26em;
	font-weight: normal;
	font-size: 20px;
	line-height: 1.25;
}
#tabs-content .infotab h3.compact {
	margin-bottom: 0;
}
#tabs-content .infotab p {
	font-size: 13px !important;
	margin-bottom: 16px;
	padding-top: 0;
}
#tabs-content .infotab p.compact {
	margin-bottom: 0;
}
#tabs-content .infotab a {
	color: #007fc5;
	text-decoration: none;
}
#tabs-content .infotab a:hover {
	text-decoration: underline;
}
#tabs-content .infotab .mlb-pilot {
	margin: 0 0 20px 0;
}
#tabs-content .infotab .map-container {
	width: 100%;
	height: 250px;
	float: left;
}
#tabs-content .infotab .map-container div.map {
	width: 100%;
	height: 100%;
	border: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
#tabs-content .infotab .map-link p {
	font-size: 12px;
}
#tabs-content .infotab .map-caption {
	float: left;
	margin-left: 20px;
}
#middle-content-right {
	/*width: 190px;*/
  float: right;
}
#sponsors {
	padding: 0;
}
.fs11 {
	font-size: 11px; /* trademark text under sponsor logo */
}
#important-event-info {
	font-size: 14px;
}
#important-event-info h3 {
	font-size: 14px;
}
#important-event-info li {
	margin-bottom: 7px;
}
#framework-footer {
	position: relative;
	z-index: 0;
}
#framework-footer a {
	color: #007fc5;
	padding-right: 2px;
	padding-left: 2px;
	font-size: 11px;
}
#home-footer {
	margin: 20px 0px 40px;
	padding: 10px 0px;
	font-size: 12px;
	line-height: 14px;
	border-top: #eaeaea 1px solid;
}
#home-footer ul li {
	display: inline;
	border-right: 1px solid #ddd;
	padding: 0px 6px 0px 0px;
	margin: 0px 6px 0px 0px;
}
#home-footer ul li.trademarks {
	border: 0px solid #fff;
}
#home-footer ul li + li + li + li + li + li span:first-child {
	display: none;
}
img.noborder {
	border: none;
}

/* desktop ONLY */
/* all with width above 1024px */
@media all and (min-width: 1025px) {
  /*********** ************/
  .col-two .c11v6-pilot {
 width: 33%;
 float: left;
}
 #s10-pilot-cust a.s10-sh {
 padding-top: 3px;
}
 #s10-pilot-cust .share li {
 display: inline;
}
 #s10-pilot-cust .share li a {
 width: auto;
}
 #main-content {
 margin: 0;
}
 #top-content-left {
 width: 75%;
 padding-right: 20px;
 padding-left: 20px;
}
 #event-info ul li .label {
 display: block;
}
 #top-content-right {
 width: 25%;
 padding-right:20px;
}
 #middle-content-left {
 width: 75%;
 padding-left: 20px;
 padding-right: 20px;
}
 #middle-content-left .tab {
 background-color: #f5f5f5;
 display: block;
 float: left;
 position: relative;
 top: 0;
 text-align: center;
 margin-right: 4px;
}
 #middle-content-left .tab:hover {
 background-color: #ffffff;
}
 #tabs-row .tab-active {
 border-bottom: 4px white solid;
 background-color: white;
 position:relative;
 z-index:1;
}
 #tabs-row .tab-active a {
 font-weight: bold;
}
 #gallery img {
 width: 20%;
}
 #middle-content-right {
 width: 25%;
 padding-right: 20px;
 position:relative;
}
/*********** ************/
}
/* tablet only */
/* between 600px and 1024px */
/*@media all and (min-width : $media-mobile + 1) and (max-width : $media-desktop - 1)*/
@media all and (max-width: 1024px) {
  /********** *************/
  .box {
 margin-bottom: 8px;
}
 .col-two .c11v6-pilot {
 width: 33%;
 float: left;
}
 #main {
 width: 100%;
}
 #titlebar {
 padding-left: 14px;
 padding-right: 18px;
}
 #s10-pilot-cust a.s10-sh {
 padding-top: 3px;
}
 #s10-pilot-cust .share li {
 display: inline;
}
 #s10-pilot-cust .share li a {
 width: auto;
}
 #main-content {
 margin: 0;
}
 #top-content {
 margin-bottom: 0;
}
 #top-content-left {
 float: left;
 width: 75%;
 padding-left:20px;
 padding-right: 20px;
}
 #event-info ul {
 padding: 16px;
}
 #event-info ul li .label {
 display: block;
}
 #top-content-right {
 float: right;
 width: 25%;
 padding-right:20px;
}
 #registration-top {
 display: block;
}
 #registration-top p.cta {
    /*float:right*/
    /*padding-right:$minimal-margin;*/
    padding-right: 0;
 margin-top: 0;
}
 #middle-content-left {
 width: 75%;
 margin-bottom: 8px;
 padding-right: 20px;
 padding-left: 20px;
}
 #middle-content-left .tab {
 background-color: #f5f5f5;
 display: block;
 float: left;
 position: relative;
 top: 0;
 text-align: center;
 margin: 1px 2px 0 0;
}
 #tabs-row .tab-active {
 border-bottom: 4px white solid;
 background-color: white;
}
 #tabs-row .tab-active a {
 font-weight: bold;
}
 #tabs-content .infotab p, #tabs-content .infotab ul {
 font-size: 14px;
}
 #tabs-content .infotab table, #tabs-content .infotab table ul {
 font-size: 13px;
}
 #gallery img {
 width: 25%;
}
 #middle-content-right {
 float: right;
 width: 25%;
 padding-right: 20px;
}
 #home-footer {
 padding: 8px;
 font-size: 11px;
 line-height: 16px;
}
 #home-footer ul li {
 float: left;
 display:block;
 margin: 5px 3px 8px 0px;
 padding: 0px 6px 0px 6px;
}
 #home-footer ul li.help, #home-footer ul li.sitemap {
 display:none;
}
 #home-footer ul li.terms {
 clear: left;
}
/********** *************/
}
@media all and (max-width: 959px) {
 #top-content-left {width:100%; float:left}
 #top-content-right {
 width: 97.5%;
 float: right;
}
 #event-info ul {
 margin: 0;
}
 #event-info ul li {
 width: 90%;
 padding: 0;
}
 #event-info ul li div {
 padding: 12px 16px 10px 34px;
}
 #event-info ul li div br {
 display: none;
}
 #event-info ul li .label {
 display: inline;
}
 #middle-content-left {
 width: 66%;
}
 #middle-content-right {
 width: 34%;
 float: right;
}
 #tabs-row > ul {
 display: none;
}
 #tabs-content {
 border-top-width: 1px;
 padding-top: 0;
}
 #tabs-content .acc {
 display: table;
 margin: 0;
 padding: 0;
 width: 100%;
 background-color: #e8e8e8;
 background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
 border-bottom: 1px solid #ccc;
}
 #tabs-content .acc a {
 color: inherit;
 text-decoration: none;
 display: table-cell;
 vertical-align: middle;
 padding-left: 20px;
 padding-top: 10px;
 padding-bottom: 10px;
 font-size: 20px;
}
 #tabs-content .acc a:before {
 content: '';
 background-image: url("../img/icons/arrow_right.png");
 background-position: 0px 3px;
 background-repeat: no-repeat;
 float: left;
 height: 24px;
 width: 24px;
 display:block;
}
 #tabs-content .acc a.extended:before {
 background-image: url("../img/icons/arrow_down.png");
}
}
@media all and (max-width: 900px) {
 .n12v10-pilot .pseudo-table-main, .n12v10-pilot.half .pseudo-table-main, .n12v10-pilot.thirds .pseudo-table-main {
 float: none;
 width: auto;
}
 .n12v10-pilot .pseudo-table-aside, .n12v10-pilot.half .pseudo-table-aside, .n12v10-pilot.thirds .pseudo-table-aside {
 float: none;
 width: auto;
}
 #tabs-content .infotab .n12v10-pilot table .pseudo-table-main p {
 margin-bottom: 16px;
}
 .n12v10-pilot tr > td:first-child {
 width: 25%;
}
}
/*
@media all and (max-width: 800px) {
  .n12v10-pilot tr > td:first-child {
    width: 25%;
  }
}
*/
@media all and (max-width: 700px) {
 .n12v10-pilot tr > td:first-child {
 width: 30%;
}
 #event-info ul li .label {
 display: block;
}
}
@media all and (max-width: 599px) {
 .n12v10-pilot tr > td:first-child {
 width: 165px;
}
}
@media all and (max-width: 479px) {
 .n12v10-pilot tr > td:first-child {
 width: 25%;
}
}
@media all and (max-width: 599px) {
 #top-content-left {
 width: 100%;
 float: none;
}
 #top-content-right {
 width: 100%;
 float: none;
}
 #registration-top {
 display: block;
 height: auto;
}
 #registration-top p {
 float:left;
}
 .cta-grey {
 float: left;
 margin:0;
 clear: both;
 display: inline-block;
 margin-top:10px;
}
 .cta-grey a {
 float: left;
 margin:0;
 padding: 10px 15px;
 display:block;
 width:auto;
}
 #registration-top p.cta {
 margin-right: 16px;
 padding-right: 0;
 clear: both;
}
 #registration-top p.cta a {
 padding: 8px;
}
}
/* mobile only */
/* below 600px 
li.mobile-only {
  display: none;
}
@media all and (max-width: 599px) {
  li.mobile-only {
    display: inline;
  }
}*/

.zebra .mobile-only, #event-info .mobile-only, #tabs-content .mobile-only {
	display:none;
}
@media all and (max-width: 959px) {
 #event-info .mobile-only, #tabs-content .mobile-only {
 display:inline;
}
}
@media all and (max-width: 767px) {
 .zebra .hide-on-mobile {
 display:none;
}
 .zebra .mobile-only {
 display:inline-block;
}
 .box.content-box {
 float: none;
 margin: 4px 0 8px 0;
 width: auto;
}
 .box.content-box h2 {
 padding-top: 0 !important;
}
 .box.content-box p {
 margin: 0 0 10px 0 !important;
}
 .box.content-box p.compact {
 margin: 0 !important;
}
}
.n12-pilot td, .n12-pilot .zebra td, .n12-pilot th, .n12-pilot .zebra th {
	border-bottom: 1px solid #ccc;
}
#footer-nav .mobile-only {
	display:none;
}
@media all and (max-width: 479px) {
 #footer-nav .hide-on-mobile {
 display:none;
}
 #footer-nav .mobile-only {
 display:inline-block;
}
}
 @media all and (max-width: 599px) {
  
  /********* ************/
  /* below 600px */
  #middle-content-left {
 float: left;
}
 #mobile-detect {
 display: block;
}
 .show-mobile {
 display: inherit;
}
 .box {
 margin-bottom: 8px;
}
 #main {
 width: 100%;
}
 #tabs-content .infotab h2 {
 padding-top: 14px;
 margin-top: 0;
}
 .c11v6-pilot img, .c11v6-alt1-pilot img {
 padding-top: 44px;
}

/*???
  #tabs-content .infotab p{ 
  margin-bottom:0px;
  margin-top: 16px;
  }
*/  
  #tabs-content .infotab ul {
 margin-bottom:0px;
 margin-top: 16px;
}
 .mobile-logo {
 display: block;
 margin: 0 auto;
}
 .desktop-logo {
 display: none;
}
/*
  #titlebar-title {
    display: none;
  }
*/
  #titlebar-menu {
 display: block;
 float: left;
 width: 33%;
}
 #titlebar-menu a.menu-link {
 display: block;
 padding: 4px;
 background-color: #f0f0f0;
 background: -moz-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f1));
 background: -webkit-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -o-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -ms-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: linear-gradient(to bottom, white 0%, #f1f1f1 100%);
 width: 70px;
 color: #444;
 font-weight: bold;
 font-size: 16px;
 height: 20px;
 border: 1px solid #ccc;
}
 #titlebar-menu a.menu-link img {
 float: left;
 margin-right: 4px;
}
 #titlebar-menu a.menu-link.no-menu-border {
 border-bottom: none;
}
 #menu-row {
 position: relative;
}
 #menu-row > ul {
 top: 0;
 background-color: #f0f0f0;
 border: 1px solid #ccc;
 position: absolute;
 z-index: 100;
 height: auto;
}
 #menu-row > ul li {
 float: none;
 display: block;
 position: relative;
 margin: 0 8px;
 padding: 4px 0;
 font-weight: bold;
 font-size: 14px;
}
 #menu-row > ul li a, #menu-row > ul li a:visited {
 color: #1874ba;
}
 #menu-row > ul.menu-hidden {
 display: none;
}
 #menu-row > ul.menu-hshown {
 display: block;
}
 #menu-row > ul {
 background: -moz-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f1));
 background: -webkit-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -o-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -ms-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: linear-gradient(to bottom, white 0%, #f1f1f1 100%);
 padding: 4px;
}
 #titlebar-share {
 float: right;
 padding: 0;
 margin-right: 16px;
}
 #s10-pilot-cust {
 position: relative;
}
 #s10-pilot-cust a.s10-sh {
 display: block;
 float: none;
 padding: 4px;
 background-color: #f0f0f0;
 background: -moz-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f1));
 background: -webkit-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -o-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -ms-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: linear-gradient(to bottom, white 0%, #f1f1f1 100%);
 width: 70px;
 color: #1874ba;
 font-weight: bold;
 font-size: 16px;
 height: 20px;
 border: 1px solid #ccc;
}
 #s10-pilot-cust a.s10-sh .txt-long {
 color: #444;
}
 #s10-pilot-cust a.s10-sh .txt > img {
 float: right;
}
 #s10-pilot-cust a.s10-sh.no-menu-border {
 border-bottom: none;
}
 #s10-pilot-cust .txt {
 display: inline;
}
 #s10-pilot-cust .share {
 position: absolute;
 width: auto;
 z-index: 100;
 display: none;
 top: 100%;
 right: 0px;
 background-color: #f0f0f0;
 background: -moz-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f1));
 background: -webkit-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -o-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: -ms-linear-gradient(top, white 0%, #f1f1f1 100%);
 background: linear-gradient(to bottom, white 0%, #f1f1f1 100%);
 border: 1px solid #ccc;
 padding: 4px;
}
 #s10-pilot-cust .share li {
 float: none;
 display: block;
 position: relative;
 margin: 0 8px;
 padding: 4px 0;
 font-weight: bold;
 font-size: 14px;
}
 #s10-pilot-cust .share li a {
 color: #1874ba;
 width: auto;
}
 #s10-pilot-cust .share li a img {
 display: none;
}
 #s10-pilot-cust .share li a .txt-short {
 display: none;
}
 #s10-pilot-cust .share.menu-hidden {
 display: none;
}
 #s10-pilot-cust .share.menu-shown {
 display: block;
}
 #main-content {
 margin: 0;
 padding-left: 0;
 padding-right: 0;
}
 #middle-content {
 margin-top: 6px;
}
 #top-content-left {
 float: none;
 width: 100%;
 padding: 0;
}
 #event-info {
 border:none;
 margin: 0;
}
#top-content-right {float:none; width:100%; padding-right:0}
#registration-top p {
}
 #registration-top p.cta {
 width: auto;
}
 #sponsors .centering {
 margin: 0 auto;
 width: 100px;
}
 #middle-content-left {
 float: none;
 width: 100%;
 margin-bottom: 8px;
 padding:0;
}
 #event-info ul li .label {
 display: inline;
}
 #tabs {
 position: relative;
}
 #tabs a#menu-link {
 display: block;
 padding: 4px;
 background-color: #f0f0f0;
 width: 80px;
 color: #1874ba;
 font-weight: bold;
 font-size: 16px;
 height: 20px;
 border: 1px solid #ccc;
 border-bottom: none;
}
 #tabs-row {
 position: relative;
 width: auto;
 z-index: 1;
 border-top: 1px solid #ccc;
}
 #tabs-row > ul {
 display: none;
 top: 0;
 background-color: #f0f0f0;
 -webkit-border-radius: 0 5px 5px 5px;
 -moz-border-radius: 0 5px 5px 5px;
 border-radius: 0 5px 5px 5px;
 border: 1px solid #ccc;
 position: absolute;
 z-index: 100;
 height: auto;
}
 #tabs-row > ul li.tab {
 float: none;
 position: relative;
 margin: 0 8px;
 padding: 4px 8px;
 font-weight: bold;
 font-size: 14px;
 text-align: left;
}
 #tabs-row > ul li.tab a {
 color: #1874ba;
}
 #tabs-row > ul li.tab a br {
 display: none;
}
 #tabs-row > ul.menu-hidden {
 display: none;
}
 #tabs-row > ul.menu-shown {
 display: block;
}
 #tabs-content {
 margin-top: -1px;
 border-left: none;
 border-right: none;
}
 #tabs-content .infotab, #tabs-content .infotab-active {
 padding: 8px;
}
 #tabs-content .infotab .breacrumb-txt {
    /*display: block;*/
    display: none;
 font-style: italic;
 margin-bottom: 8px;
}
 #tabs-content .infotab p, #tabs-content .infotab ul {
 font-size: 14px;
}
 #tabs-content .infotab table {
 font-size: 13px;
}
 #tabs-content .infotab table.small-only {
 display: table;
}
 #tabs-content .infotab table.large-only {
 display: table;
}
 #tabs-content .infotab table ul {
 margin-left: 16px;
 font-size: 13px;
}
 #tabs-content .infotab h1 {
 font-size: 16px;
 font-weight: bold;
}
 #tabs-content .infotab .map-container {
 float: none;
 width: 100%;
}
 #tabs-content .infotab .map-caption {
 float: none;
 margin-left: 0px;
 margin-top: 30px;
}
 #tabs-content .acc {
 display: table;
 margin: 0;
 padding: 0;
 width: 100%;
 background-color: #e8e8e8;
 background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
 border-bottom: 1px solid #ccc;
}
 #tabs-content .acc a {
 color: inherit;
 text-decoration: none;
 display: table-cell;
 vertical-align: middle;
 padding-left: 20px;
 padding-top: 10px;
 padding-bottom: 10px;
 font-size: 20px;
}
 #tabs-content .acc a:before {
 content: '';
}
 #tabs-content .acc a.extended:before {
 content: '';
}
 #middle-content-right {
 float: none;
    /*width: 100%;*/
    width: auto;
 padding-left: 20px;
 padding-right: 20px;
}
 #home-footer {
 padding: 8px;
 font-size: 12px;
 line-height: 16px;
}
/********* ************/
}
#bottom-content {
	position:relative;
	z-index: 0;
	padding: 0 20px;
}
 @media all and (max-width: 480px) {
 #registration-top p {
 float: none;
 width: auto;
}
 #registration-top p.cta {
 float: none;
 text-align: left;
}
 #registration-top p.cta a {
 text-align: center;
}
}
@media all and (max-width: 260px) {
 #event-info ul li {
 width: 100%;
}
}
@media all and (max-width: 230px) {
 #titlebar-logo-mob {
 display: none;
}
 body {
 min-width: 230px;
 width: auto !important;
    /* Firefox will set width as auto */
    width: 230px;
/* As IE ignores !important it will set width as min-width; */
  }
 #titlebar {
 width: 230px;
}
 #event-info ul li {
 width: 100%;
}
}
@media all and (max-width: 320px) {
/*#banner {
  	background-image: url("../img/header_mobile_fix.jpg");
  	
  	h2 {
  		font-size:18px;
  		padding-bottom:8px;
  	}
  	p {
  		padding-top:0;
  	}
  }*/
}
/* line 154, ../sass/base/_buttons.scss */
.button {
	display: inline-block;
	position: relative;
	padding: 9px 34px 11px;
	background: #00a6fc;
	text-align: center;
	color: white;
	font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: none;
	outline: none;
	margin: 0;
}
/* Don't use native buttons on iOS */
/* line 174, ../sass/base/_buttons.scss */
input[type=submit].button, button.button {
	-webkit-appearance: none;
}

/* Hide inner focus effect in Firefox */
/* line 183, ../sass/base/_buttons.scss */
button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
 border: none;
}
/* Disabled ---------- */
/* line 189, ../sass/base/_buttons.scss */
.button.disabled, .button[disabled] {
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
	opacity: 0.6;
	cursor: default;
}

/* Correct FF button padding */
@-moz-document url-prefix(http://) {
  /* line 197, ../sass/base/_buttons.scss */
  input[type=submit].button::-moz-focus-inner,  button.button::-moz-focus-inner {
 border: 0;
 padding: 0;
}

  /* line 202, ../sass/base/_buttons.scss */
  input[type=submit].tiny.button {
 padding: 5px 14px 7px;
}

  /* line 205, ../sass/base/_buttons.scss */
  input[type=submit].small.button {
 padding: 7px 20px 8px;
}

  /* line 208, ../sass/base/_buttons.scss */
  input[type=submit].medium.button {
 padding: 8px 34px 9px;
}

  /* line 211, ../sass/base/_buttons.scss */
  input[type=submit].large.button {
 padding: 9px 48px 10px;
}
}
/* line 5, ../sass/letushelp.scss */
.letushelp {
	margin: 0;
}
/* line 8, ../sass/letushelp.scss */
.letushelp a:hover {
	text-decoration: underline;
}
/* line 11, ../sass/letushelp.scss */
.letushelp h2 {
	font-size: 14px;
	font-weight: bold;
	color: #444;
	padding-bottom:10px;
	border-bottom: #ccc 4px solid;
}
/* line 17, ../sass/letushelp.scss */
.letushelp h2:first-child {
}
/* line 20, ../sass/letushelp.scss */
.letushelp h2 .s01v8-title {
	margin-bottom: 0;
}
/* line 24, ../sass/letushelp.scss */
.letushelp ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
/* line 29, ../sass/letushelp.scss */
.letushelp li {
	padding: 3px 0 8px 41px;
	border-bottom: #e5e5e5 1px solid;
	position: relative;
	min-height: 16px;
	line-height: 1.4;
	margin-bottom: 5px;
}
/* line 37, ../sass/letushelp.scss */
.letushelp li.first_li {
	padding-top: 8px;
}
/* line 40, ../sass/letushelp.scss */
.letushelp li.first_li .s01v8-icon {
	top: 8px;
}
/* line 45, ../sass/letushelp.scss */
.letushelp .no-border {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}
/* line 50, ../sass/letushelp.scss */
.letushelp .s01v8-icon {
	background: transparent url("http://www.static-cisco.com/assets/pilot/s01/luh_sprite.gif") center center no-repeat;
	color: #666;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 3px;
	left: 7px;
}
/* line 59, ../sass/letushelp.scss */
.letushelp .s01v8-email {
	background-position: 0 -92px;
}
/* line 62, ../sass/letushelp.scss */
.letushelp .s01v8-phone {
	background-position: 0 -160px;
}
/* line 66, ../sass/letushelp.scss */
.letushelp .s01v8-chat_button {
	padding: 10px 0;
}
 @media (min-width: 48em) {
  /* line 66, ../sass/letushelp.scss */
  .letushelp .s01v8-chat_button {
 background: transparent url("http://www.static-cisco.com/assets/pilot/s01/luh_sprite.gif") center center no-repeat;
 background-position: 0 0;
 padding: 0 0 0 72px;
 height: 39px;
}
}
@media (min-width: 48em) {
  /* line 76, ../sass/letushelp.scss */
  .letushelp .s01v8-chat_gray_bar {
 background: transparent url("http://www.static-cisco.com/assets/pilot/s01/luh_sprite.gif") center center repeat-x;
 background-position: 0 -222px;
 height: 39px;
 margin-top: -3px;
 padding-top: 0;
}
}
/* line 85, ../sass/letushelp.scss */
.letushelp .phonenumber {
	white-space: nowrap;
}
.letushelp .cta {
	padding: 9px 34px 11px;
	border: 1px solid #444;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	font-size: 15px;
	margin-right: 8px;
	text-align: center;
	font: normal 13px/1 Arial, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	color: #fff;
	background-color: #0282d4;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00aae7), color-stop(100%, #0282d4));
	background: -webkit-linear-gradient(top, #00aae7 0%, #0282d4 100%);
	background: linear-gradient(to bottom, #00aae7 0%, #0282d4 100%);
	border-color: #2970a6 #2970a6 #26689a;
	-webkit-box-shadow: 0 1px 0 0 #4999ce inset;
	-moz-box-shadow: 0 1px 0 0 #4999ce inset;
	box-shadow: 0 1px 0 0 #4999ce inset;
	text-shadow: 0 -1px 0 #215984;
	display: block;
	margin-right: 0;
}
 @media (min-width: 600px) {

 /* line 88, ../sass/letushelp.scss */
  .letushelp .cta {
 padding: 10px 15px;
 font-size: 13px;
}
}
 @media (max-width: 599px) {
 .letushelp .cta {
 display: inline-block;
 padding: 10px 15px;
 margin: 0 10px;
}
}
 @media (max-width: 479px) {
 .letushelp .cta {
 display: block;
 padding: 10px 15px;
 margin: 0 8px;
}
}
/* line 27, ../sass/base/_buttons.scss */
.letushelp .cta:hover {
	cursor: pointer;
	text-decoration: none !important;
}
/* line 73, ../sass/base/_buttons.scss */
.letushelp .cta:hover {
	background-color: #3295D3;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #37B9E5), color-stop(100%, #3295D3));
	background: -webkit-linear-gradient(top, #37B9E5 0%, #3295D3 100%);
	background: linear-gradient(to bottom, #37B9E5 0%, #3295D3 100%);
	-webkit-box-shadow: inset 0 1px 0 0 #629ac8;
	-moz-box-shadow: inset 0 1px 0 0 #629ac8;
	box-shadow: inset 0 1px 0 0 #629ac8;
}
/* line 93, ../sass/letushelp.scss */
.letushelp .cta i {
	font-style: normal;
}
.letushelp .cta a {
	color: #fff;
}
.letushelp .cta a:hover {
	color: #fff;
	text-decoration: none;
}
 @media (min-width: 48em) {
  /* line 88, ../sass/letushelp.scss */
  .letushelp .cta {
 display: inline-block;
 padding: 5px 12px;
 font-size: 11px;
 color: #fff;
}
}
/* line 104, ../sass/letushelp.scss */
.letushelp .compact {
	margin-bottom: 0;
}
#letushelp-top {
	padding-top: 0;
}
 @media (min-width: 48em) {
 #letushelp-top {
 margin-bottom: 0;
}
}
/*carousel styling */
/* all resolutions */
#carousel .carousel-vert {
	display: block;
	display: table-cell;
	vertical-align: middle;
}
#carousel .carousel-text {
	display: table-cell;
	vertical-align: middle;
	padding: 16px;
}
#carousel .carousel-text h2 {
	font-size: 24px;
	font-weight: normal;
	line-height: 1.25em;
	margin: 0px 0px 0.25em;
}
#carousel .carousel-text p {
	font-size: 16px;
	line-height: 1.54em;
	margin: 0;
	padding: 0;
}
#carousel .carousel-text p.cta {
	font-size: 13px;
	margin-top: 12px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	vertical-align: bottom;
}
/* Themed Hero */
#carousel.blue .carousel-vert {
	/*  background: #204a63;
  background: -moz-linear-gradient(right, #2496d53 0%, #204a6 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2496d53), color-stop(100%,#204a6));
  background: -webkit-linear-gradient(left, #2496d5 0%, #204a6 100%);
  background: -o-linear-gradient(right, #2496d53 0%, #204a6 100%);
  background: -ms-linear-gradient(right, #2496d53 0%, #204a6 100%);
  background: linear-gradient(to right, #2496d53 0%, #204a6 100%);
*/
  background: #2496d5;
	background: -moz-linear-gradient(right, #2496d5 0%, #204a63 100%);
	background: -webkit-linear-gradient(left, #2496d5 0%, #204a63 100%);
	background: linear-gradient(to right, #2496d5 0%, #204a63 100%);
}
#carousel.blue-solid .carousel-vert {
	background: #004baf;
}
#carousel.blue .carousel-text h2, #carousel.blue-solid .carousel-text h2 {
	color: #ffffff;
}
#carousel.blue .carousel-text p, #carousel.blue-solid .carousel-text p {
	color: #ffffff;
}
#carousel.blue .carousel-vert .cta a, #carousel.blue-solid .carousel-vert .cta a {
	border: 1px solid #444444;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-top: 12px;
}
#carousel.blue .carousel-vert .cta a, #carousel.blue .carousel-vert .cta a:active, #carousel.blue .carousel-vert .cta a:visited, #carousel.blue-solid .carousel-vert .cta a, #carousel.blue-solid .carousel-vert .cta a:active, #carousel.blue-solid .carousel-vert .cta a:visited {
	font-weight: bold;
	text-align: center;
	text-shadow: #FFFFFF 0px 1px 0px;
	padding: 10px 15px;
	display: inline-block;
	background-color: #fdfdfd; /* Old browsers */
	background: -moz-linear-gradient(top, #fdfdfd 0%, #bcbcbc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdfdfd), color-stop(100%, #bcbcbc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fdfdfd 0%, #bcbcbc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fdfdfd 0%, #bcbcbc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fdfdfd 0%, #bcbcbc 100%); /* IE10+ */
	background: linear-gradient(to bottom, #fdfdfd 0%, #bcbcbc 100%); /* W3C */
	color: #444444;
	box-shadow: 0px 1px 0px 0px #4999CE inset;
	font-size: 13px;
	line-height: 13px;
	text-decoration: none;
}
#carousel.blue .carousel-vert .cta a:hover, #carousel.blue-solid .carousel-vert .cta a:hover {
	color: #000;
	background-color: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top, #eeeeee 0%, #bcbcbc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #bcbcbc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #eeeeee 0%, #bcbcbc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #eeeeee 0%, #bcbcbc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #eeeeee 0%, #bcbcbc 100%); /* IE10+ */
	background: linear-gradient(to bottom, #eeeeee 0%, #bcbcbc 100%); /* W3C */
}
 @media all and (max-width: 959px) {
 #carousel .carousel-text h2 {
 font-size: 20px;
 line-height: 1.25em;
 margin: 0px 0px 0.25em;
}
 #carousel .carousel-text p {
 font-size: 14px;
 line-height: 1.4em;
}
}
/* img */
/* all resolutions*/
img.img-r {
	float:right;
	padding: 0 0 10px 15px;
}
 @media all and (max-width: 767px) {
 img.img-r {
 display: block;
 float:none;
 margin: 0 auto;
 padding: 0 0 15px;
}
}
/* DEFAULT ALIGN LEFT 33% */

#carousel .carousel-image {
	width: 33%;
	height: auto;
	margin: 0;
	display:table-cell;
	padding:16px;
}
#carousel .carousel-image .img-small {
	display: none;
}

/*
@media all and (max-width: 959px) {
  #carousel .carousel-image {
    width: 180px;
    height: 150px;
  }
}
*/

/* SMALLER ALIGN LEFT 45% */

@media all and (max-width: 959px) and (min-width: 766px) {
 #carousel .carousel-image {
 width: 45%;
 height: auto;
 margin: 0;
 display:table-cell;
 padding:16px;
}
}

/* WIDE 100% */

@media all and (max-width: 767px) and (min-width: 600px) {
 #carousel .carousel-image {
 width: 100%;
 height: 220px;
 margin: 0;
 float: none;
 display:block;
 vertical-align: middle;
 padding: 0;
 overflow: hidden;
}
 .carousel-text {
 display: block !important;
}
 #carousel .carousel-vert {
 display: block;
}
 #carousel .carousel-image img {
 width: 100%;
 height: auto;
 margin: 0;
 display:block;
 padding:0;
 margin-top: -15%;
}
}
 @media all and (max-width: 599px) and (min-width: 480px) {
 #carousel .carousel-image {
 width: 45%;
 height: auto;
 margin: 0;
 display:table-cell;
 padding:16px;
}
}
 @media all and (max-width: 479px) {
 #carousel .carousel-image {
 width: 100%;
 max-height: 220px;
 margin: 0;
 float: none;
 display:block;
 vertical-align: middle;
 padding: 0;
 overflow: hidden;
}
 .carousel-text {
 display: block !important;
}
 #carousel .carousel-vert {
 display: block;
}
 #carousel .carousel-image img {
 width: 100%;
 height: auto;
 margin: 0;
 display:block;
 padding:0;
 margin-top: -15%;
}
 .bx-wrapper .bx-viewport {
 border: 0;
}
 .carousel-text {
 padding-bottom: 6px !important;
}
}
 @media all and (max-width: 599px) {
 .bx-wrapper .bx-viewport {
 border-left: none;
 border-right: none;
 border-top:0;
}
 #carousel {
 margin-right: 0;
}
 #carousel .carousel-text h2 {
 font-size: 20px;
}
}
@media all and (max-width: 479px) {
 .bx-wrapper img.img-small {
 display: block;
}
 .cta-blue {
 width:100%;
 display: block;
}
 .cta-blue a {
 display: block;
 text-align: center;
}
 .cta-grey {
 width:100%;
 display: block;
}
 .cta-grey a {
 text-align: center;
 display:block;
 width: 100%;
 padding: 10px 0;
}
 #carousel .carousel-vert {
 display: block;
}
 #carousel .carousel-text {
 float: none;
}
 #carousel .carousel-text h2 {
 font-size: 20px;
}
 #carousel .carousel-text p {
 font-size: 14px;
}
 #carousel .carousel-text p.cta {
 width: auto;
 margin-right: 16px;
 font-size: 14px;
}
 #carousel .carousel-text p.cta a {
 width: 100%;
 text-align: center;
 padding: 8px;
 display: inline-block;
}
 #footer-nav {
 font-size: 11px;
 line-height: 11px;
}
}
/* img */

.retina-image {
	display: none !important;
}
#carousel-1 {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}
#carousel-2 {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}
#carousel-3 {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}
 @media all and (min-width: 600px) {
 #carousel-1 {
 background-image: url("../img/carousel/car_desktop_01.jpg");
}
 #carousel-2 {
 background-image: url("../img/carousel/car_desktop_02.jpg");
}
 #carousel-3 {
 background-image: url("#");
}
}
/*
@media all and (max-width: 959px) {
  #carousel-1 {
    background-image: url("../img/carousel/car_tablet_01.jpg");
  }

  #carousel-2 {
    background-image: url("../img/carousel/car_tablet_02.jpg");
  }

  #carousel-3 {
    background-image: url("../img/carousel/car_tablet_03.jpg");
  }
}
*/

/* 480px < x <= 959px */
@media only screen and (-webkit-min-device-pixel-ratio: 1.3) and (min-width: 481px) and (max-width: 959px), only screen and (min--moz-device-pixel-ratio: 1.3) and (min-width: 481px) and (max-width: 959px), only screen and (-o-min-device-pixel-ratio: 1.3 / 1) and (min-width: 481px) and (max-width: 959px), only screen and (min-resolution: 125dpi) and (min-width: 481px) and (max-width: 959px), only screen and (min-resolution: 1.3dppx) and (min-width: 481px) and (max-width: 959px) {
 #carousel-1 {
 background-image: url("../img/carousel/car_tablet_retina_01.jpg");
}
 #carousel-2 {
 background-image: url("../img/carousel/car_tablet_retina_03.jpg");
}
}
/* x <= 480px */
@media only screen and (-webkit-min-device-pixel-ratio: 1.3) and (max-width: 480px), only screen and (min--moz-device-pixel-ratio: 1.3) and (max-width: 480px), only screen and (-o-min-device-pixel-ratio: 1.3 / 1) and (max-width: 480px), only screen and (min-resolution: 125dpi) and (max-width: 480px), only screen and (min-resolution: 1.3dppx) and (max-width: 480px) {
 #carousel-1 {
 background-image: url("../img/carousel/car_mobile_retina_01.jpg");
}
 #carousel-2 {
 background-image: url("#");
}
}
/* EightShapes - two boxes variations */
#letushelp-top {
	display: block;
}
#registration-top {
	display: none;
}
a:hover {
	text-decoration: underline;
}
#tabs-row li.tab a:hover {
	text-decoration: none;
}

/* quick margin fix for tablets */

@media all and (max-width: 600px) {
 #letushelp-top h2.s01v8-title {
 padding-left: 8px;
 padding-right: 8px;
}
 #letushelp-top ul li.s01v8-chat_button {
 padding-left: 8px;
 padding-right: 8px;
}
 #twitter-box iframe {
 width: 100%;
}
}
 @media (max-width: 959px) {
 .linkTab, .cta-tab {
display:none;
}
}
@media (min-width: 960px) {
 .linkAcc, .cta-acc {
display:none;
}
}
.goHome {
	margin: 0 0 24px 0;
}
@media (max-width: 599px) {
 .goHome {
margin: 10px 0 24px 10px;
}
}
.goHome span {
	background: url(http://www.cisco.com/assets/services/back_arrow.png) no-repeat left center;
	padding-left: 15px !important;
}
/* responsive youtube videos */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	margin: 20px 0;
}
.videoWrapper iframe, .videoWrapper embed, .videoWrapper object {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
