@charset "UTF-8";

/* CSS Document */
body {
	background: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 21px;
	color: #223f51;
	margin: 0;
	padding: 0;
}

* {
	margin: 0;
	padding: 0;
}

img {
	border: none
}

a {
	color: #0082bb;
}

a:hover {
	color: black;
}

p {
	font-size: 14px;
	line-height: 21px;
	padding: 2px 0 7px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	word-wrap: break-word;
	margin-top: 7px;
}

h1 {
	font-weight: normal;
	font-size: 36px;
	line-height: 38px;
	padding: 3px 0 8px 0;
}

h2 {
	font-weight: normal;
	font-size: 29px;
	line-height: 30px;
	padding: 3px 0 6px 0;
}

h3 {
	font-weight: normal;
	font-size: 25px;
	line-height: 28px;
	padding: 3px 0 6px 0;
}

h4 {
	font-weight: normal;
	font-size: 20px;
	line-height: 26px;
	padding: 3px 0 6px 0;
}

h5 {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	padding: 3px 0 6px 0;
}

h6 {
	font-weight: bold;
	font-size: 15px;
	line-height: 20px;
	padding: 3px 0 6px 0;
}

ul {
	list-style: outside;
	padding: 2px 0 6px 20px;
	margin: 0;
}

ol {
	padding: 0 0 6px 20px;
	margin: 0;
}

.clear {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.center {
	margin: 0 auto;
	text-align: center;
}

.nomargin {
	margin: 0 !important;
}

.inline {
	display: inline;
}

hr {
	clear: both;
	border: none;
	border-top: 1px solid #d2d2d2;
	margin: 20px 0;
}

.right10 {
	padding-right: 10px;
}

.left10 {
	padding-left: 10px;
}

.right20 {
	padding-right: 20px;
}

.left20 {
	padding-left: 20px;
}

.red {
	color: #d93024;
}

.green {
	color: #00af5e;
}

.grey {
	color: #bbc3c7;
}

/* Container Styles
------------------------------------------------*/
#header {
	background: #fff;
	border-bottom: 2px solid #ebf0f1;
	padding-bottom: 5px;
}

#main {
	background: white;
	margin: 20px auto;
	padding: 20px 20px 30px 20px;
}

#partner-footer {
	background: #ebf0f1;
	padding-top: 22px;
	padding-bottom: 10px;
}

#footer {
	background: #223f51;
	padding: 20px 0;
}

#subfooter {
	background: #ebf0f1;
	padding: 7px 0 3px 0;
}

.container {
	margin: 0 auto;
	max-width: 1000px;
	width: 96%;
}

/* Header Styles 
------------------------------------------------*/
.logo {
	float: left;
}

.carticon a {
	background: #ebf0f1;
	border: 1px solid #bbc3c7;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	padding: 5px 4px 2px 3px !important;
	margin: 9px 0 0 5px;
}

.carticon a:hover {
	background: #fff;
	border: 1px solid #009add !important;
}

/*navigation*/
#cssmenu {
	float: right;
	padding: 14px 0 0 0;
}

#cssmenu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1;
}

#cssmenu>ul {
	position: relative;
	display: block;
	height: 32px;
	width: 100%;
	z-index: 500;
}

#cssmenu>ul>li {
	display: block;
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}

#cssmenu>ul>#menu-button {
	display: none;
}

#cssmenu ul li a {
	display: block;
	text-decoration: none;
}

#cssmenu ul li a:hover {
	border-bottom: 2px solid #009add;
}

#cssmenu>ul>li>a {
	font-size: 13px;
	padding: 15px 15px;
	color: #223f51;
	-webkit-transition: color 0.25s ease-out;
	-moz-transition: color 0.25s ease-out;
	-ms-transition: color 0.25s ease-out;
	-o-transition: color 0.25s ease-out;
	transition: color 0.25s ease-out;
}

#cssmenu>ul>li.has-sub>a {
	padding-right: 32px;
}

#cssmenu>ul>li:hover>a {
	color: #223f51;
}

#cssmenu li.has-sub::after {
	display: block;
	content: '';
	position: absolute;
	width: 0;
	height: 0;
}

#cssmenu>ul>li.has-sub::after {
	right: 10px;
	top: 20px;
	border: 5px solid transparent;
	border-top-color: #7a8189;
}

#cssmenu>ul>li:hover::after {
	border-top-color: #ffffff;
}

#indicatorContainer {
	position: absolute;
	height: 12px;
	width: 100%;
	bottom: 0px;
	overflow: hidden;
	z-index: -1;
}

#pIndicator {
	position: absolute;
	height: 0;
	width: 100%;
	border: 12px solid transparent;
	border-top-color: #2b2f3a;
	z-index: -2;
	-webkit-transition: left .25s ease;
	-moz-transition: left .25s ease;
	-ms-transition: left .25s ease;
	-o-transition: left .25s ease;
	transition: left .25s ease;
}

#cIndicator {
	position: absolute;
	height: 0;
	width: 100%;
	border: 12px solid transparent;
	border-top-color: #2b2f3a;
	top: -12px;
	right: 100%;
	z-index: -2;
}

#cssmenu ul ul {
	position: absolute;
	left: -9999px;
	top: 70px;
	opacity: 0;
	-webkit-transition: opacity .3s ease, top .25s ease;
	-moz-transition: opacity .3s ease, top .25s ease;
	-ms-transition: opacity .3s ease, top .25s ease;
	-o-transition: opacity .3s ease, top .25s ease;
	transition: opacity .3s ease, top .25s ease;
	z-index: 1000;
}

#cssmenu ul ul li {
	position: relative;
}

#cssmenu>ul>li:hover>ul {
	left: auto;
	top: 46px;
	opacity: 1;
}

#cssmenu ul ul li:hover>ul {
	left: 170px;
	top: 0;
	opacity: 1;
}

#cssmenu ul ul li a {
	width: 120px;
	border-bottom: 1px solid #fff;
	padding: 10px 15px;
	font-size: 12px;
	color: #223f51;
	background: #ebf0f1;
	-webkit-transition: all .35s ease;
	-moz-transition: all .35s ease;
	-ms-transition: all .35s ease;
	-o-transition: all .35s ease;
	transition: all .35s ease;
}

#cssmenu ul ul li:hover>a {
	background: #fff;
	color: #223f51;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last>a {
	border-bottom: 0;
}

.submenuArrow {
	border: 6px solid transparent;
	width: 0;
	height: 0;
	border-bottom-color: #fff;
	position: absolute;
	top: -12px;
}

#cssmenu ul ul li.has-sub::after {
	border: 4px solid transparent;
	border-left-color: #9ea2a5;
	right: 10px;
	top: 12px;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}

#cssmenu ul ul li.has-sub:hover::after {
	border-left-color: #fff;
	right: -5px;
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

#cssmenu ul ul ul li {
	top: 0;
	padding-left: 5px;
	left: -20px;
}

/*language dropdown*/
.dropdown {
	float: right;
	background: #ebf0f1;
	border: 1px solid #bbc3c7;
	font-size: 12px;
	margin: 23px 0 0 15px;
	padding: 2px 10px;
}

.dropdown span {
	font-size: 10px;
	line-height: 18px;
}

.dropdown li {
	list-style: none;
}

.dropdown li a {
	display: block;
	text-decoration: none;
	color: #223f51;
}

.dropdown li ul {
	display: none;
	z-index: 1000;
}

.dropdown li:hover ul {
	display: block;
	position: absolute;
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
	margin: 0;
	padding: 0;
}

.dropdown li:hover li {
	float: none;
}

.dropdown li:hover li a {
	background: #ebf0f1;
	font-size: 11px;
	line-height: 18px;
	padding: 1px 10px;
	margin: 0;
}

.dropdown li li a:hover {
	background-color: #fff;
}

/* Button Styles 
------------------------------------------------*/
/* moved to site wide styles, anything below here will be specific to this section only */

.button.ja span {
	font-size: 15px;
}

.button-topper {
	background: #ebf0f1;
	display: inline-block;
	-webkit-border-radius: 6px 6px 0px 0px;
	-moz-border-radius: 6px 6px 0px 0px;
	border-radius: 6px 6px 0px 0px;
	font-size: 12px;
	padding: 0 15px;
	margin-left: 7px;
}

/* Intro Styles 
------------------------------------------------*/
.intro {
	clear: both;
	list-style: none;
	font-size: 17px;
	font-weight: bold;
	padding: 13px 0;
}

.intro li {
	background: url(../png/icon-minicheck-3.png) no-repeat top left;
	padding: 0 0 7px 40px;
}

.intro.pt {
	font-size: 15px;
}

.intro.ru {
	font-size: 14px;
	padding: 7px 0;
}

.intro.el {
	font-size: 15px;
	padding: 7px 0;
}

.intro.hu {
	font-size: 15px;
}

.intro.ar li {
	background: url(../png/icon-minicheck-3.png) no-repeat top right;
	padding: 0 40px 7px 0px;
}

.intro.pl {
	font-size: 16px;
}

.intro-left {
	float: left;
	width: 435px;
}

.video {
	float: right;
	border: 3px solid #aeaeae;
	margin-top: 10px;
	height: 240px;
}

/* Page Styles Home, Features, Landing
------------------------------------------------*/
.headspace {
	padding: 25px 0;
}

p.disclaimer {
	clear: both;
	font-size: 10px;
	line-height: 13px;
	padding: 8px 0 10px 0;
}

.greybox {
	background: none repeat scroll 0 0 #EBF0F1;
	margin-bottom: 10px;
	padding: 15px 15px 10px;
}

.windows-comp-box {
	background: url(../png/windows-sm-white-2.png) no-repeat 9px 7px #8fa5a6;
	border: 2px solid #8fa5a6;
	margin-top: 10px;
	padding-left: 50px;
}

.windows-comp-box p {
	background: #fff;
	color: #8fa5a6;
	font-size: 12px;
	line-height: 16px;
	padding: 5px 5px 5px 10px;
}

h2.ex {
	background: url(../png/icon-ex.png) no-repeat top left;
	margin-top: 10px;
	padding: 0 0 6px 38px;
}

h2.check {
	background: url(../png/icon-check.png) no-repeat top left;
	margin-top: 10px;
	padding: 0 0 6px 38px;
}

.fileopen {
	float: right;
	background: url(../jpg/fileopen.jpg) no-repeat top left;
	margin-left: 10px;
	width: 251px;
	height: 163px;
}

.cannotopen1 {
	padding: 45px 0 0 60px;
}

.fileopen p {
	color: #c6020a;
	font-weight: bold;
	padding: 0 0 0 60px;
}

.cannotopen2 {
	padding: 10px 0 0 25px;
}

.home-column1 {
	float: left;
	padding-right: 15px;
	width: 235px;
}

ul.files {
	padding: 8px 0;
}

.home-column2 {
	float: left;
	border-left: 1px solid #d7d7d7;
	padding-left: 20px;
	width: 330px;
}

.icon {
	float: left;
	width: 60px;
}

.feature {
	padding-bottom: 20px;
}

.feature p {
	padding: 0;
}

.sidebar {
	float: right;
	width: 250px;
}

.ddimgtooltip {
	background: #fff;
	border: 1px solid #8d8d8d;
	box-shadow: 3px 3px 5px #818181;
	/*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 3px 3px 5px #818181;
	-moz-box-shadow: 3px 3px 5px #818181;
	display: none;
	position: absolute;
	background: white;
	color: #505050;
	z-index: 2000;
	padding: 8px 10px 10px 10px;
	width: 300px;
}

.ddimgtooltip h4 {
	padding-bottom: 8px;
}

input#fileviewpro_windows7,
input#fileviewpro_intel {
	visibility: hidden;
	width: 5px;
}

.sidebar-screenshot {
	padding: 5px 0;
}

p.enlarge {
	background: url(../png/icon-minisearch-2.png) no-repeat 50px 0 transparent;
	text-align: center;
	font-size: 12px;
	padding: 0 0 6px 20px;
}

/*TABS*/
.hide {
	position: absolute;
	top: -9999px;
	left: -9999px;
}

#example-one .nav {
	background: #ebf0f1;
	overflow: hidden;
	list-style: none;
	padding: 9px 0 0 0;
	margin: 0 0 20px 0;
	width: 100%;
}

#example-one .nav li {
	float: left;
	margin: 0;
	padding: 0 0 0 6px;
}

#example-one .nav li a {
	display: block;
	background: #8fa5a6;
	border: 1px solid #8fa5a6;
	border-bottom: none;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	color: white;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	padding: 2px 10px;
}

#example-one .nav li a:hover {
	background: #223f51;
	border: 1px solid #223f51;
	border-bottom: none;
	color: #fff;
}

#example-one ul li a:hover,
#example-one ul li a:focus,
#example-one li a.current {
	background: #fff;
	color: #0082bb;
	border: 1px solid #bbc3c7;
	border-bottom: none;
}

#screenshots .sidebar-screenshot {
	float: left;
	margin: 10px 25px;
	width: 230px;
}

/* SLIMBOX on Features Page ---------------------------- */
#lbOverlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	cursor: pointer;
}

#lbCenter,
#lbBottomContainer {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	background-color: #fff;
}

.lbLoading {
	background: #fff url(../gif/loading-2.gif) no-repeat center;
}

#lbImage {
	position: absolute;
	left: 0;
	top: 0;
	border: 10px solid #fff;
	background-repeat: no-repeat;
}

#lbPrevLink,
#lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
}

#lbPrevLink:hover {
	background: transparent url(../gif/prevlabel-2.gif) no-repeat 0 15%;
}

#lbNextLink {
	right: 0;
}

#lbNextLink:hover {
	background: transparent url(../gif/nextlabel-2.gif) no-repeat 100% 15%;
}

#lbBottom {
	font-size: 10px;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	border: 10px solid #fff;
	border-top-style: none;
}

#lbCloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	background: transparent url(../gif/closelabel-2.gif) no-repeat center;
	margin: 5px 0;
	outline: none;
}

#lbCaption,
#lbNumber {
	margin-right: 71px;
}

#lbCaption {
	font-weight: bold;
}

/* Ratings Styles (Located In Intro)
------------------------------------------------*/
.rating_wrapper {
	margin-top: 5px;
	height: 20px;
	width: 100%;
}

.sp_rating {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.7em;
	color: #5f5f5f;
	display: block;
	width: 100%;
}

.rating {
	float: left;
	padding-right: 4px;
}

.base {
	background: url(../gif/ratings-2.gif) 0 0 no-repeat;
	width: 85px;
	height: 16px;
	float: left;
	padding-right: 4px;
	overflow: hidden;
}

.average {
	background: url(../gif/ratings-2.gif) 0 -16px no-repeat;
	text-indent: -9999px;
}

.votes {
	float: left;
	padding-right: 4px;
}

.score {
	background: url(../gif/ratings-2.gif) 0 0 no-repeat;
	width: 85px;
	height: 100%;
	float: left;
	position: relative;
}

.score a {
	display: block;
	height: 100%;
	float: left;
	text-indent: -9999px;
	position: absolute;
	overflow: hidden;
	line-height: 1em;
}

.score1 {
	width: 20%;
	z-index: 55;
}

.score2 {
	width: 40%;
	z-index: 54;
}

.score3 {
	width: 60%;
	z-index: 53;
}

.score4 {
	width: 80%;
	z-index: 52;
}

.score5 {
	width: 100%;
	z-index: 51;
}

.score a:hover {
	background: url(../gif/ratings-2.gif) bottom right no-repeat;
}

.status {
	height: 17px;
	width: 200px;
	overflow: hidden;
	position: relative;
}

.score_this {
	height: 100%;
	overflow: hidden;
}

/* Page Styles for Purchase and Sale Ended
------------------------------------------------*/
h1.purchasepage {
	font-weight: bold;
	font-size: 24px;
	line-height: 26px;
	text-align: center;
}

h3.product-title {
	border-bottom: 1px solid #d2d2d2;
	color: #012C67;
	font-size: 19px;
	padding: 3px 0 5px 0;
	margin-bottom: 10px;
}

#coupon {
	border: 3px dashed black;
	padding: 10px 15px 10px 15px;
}

.purchasepage-introleft {
	float: left;
	padding: 10px 20px 0 0;
	width: 500px;
}

.purchasepage-introright {
	float: left;
	padding: 0 0 0 0;
}

.purchasepage-introright p {
	font-size: 14px;
	line-height: 20px;
}

.greyarea {
	background: none repeat scroll 0 0 #EBF0F1;
	width: 100%;
}

strong.productid {
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
}

.column1 {
	padding: 0 5px 0px 15px;
	width: 14%;
}

.column2 {
	padding: 0 10px 0px 5px;
	width: 52%;
}

.column3 {
	padding: 0 10px 0px 15px;
	width: 17%;
}

.column4 {
	padding: 0 10px 0px 15px;
	width: 17%;
}

.yellowarea {
	background-color: #fff3cc;
	margin: 0 auto;
	margin-bottom: 10px;
	height: 33px;
	width: 100%;
}

.yellowarea p {
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
}

.yellowarea .column3 p {
	font-size: 14px;
}

.yellowarea .column4 p {
	font-size: 14px;
}

table.eds p {
	font-size: 12px;
}

.subscription-disclaimer {
	font-size: 12px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.purchase-page {
	float: left;
	font-size: 14px;
	line-height: 20px;
	padding: 0 0 20px 30px;
	width: 450px;
}

.purchase-page li {
	padding: 3px 0 4px 0;
}

.purchase-page li.screenshots {
	list-style: none;
}

.yellowarea-large {
	background-color: #fff3cc;
	margin: 0 auto;
	margin-bottom: 10px;
	height: 100%;
	width: 100%;
}

.yellowarea-large p {
	padding: 10px;
}

.counter {
	background: #013e6b;
	text-align: center;
	padding: 5px 10px 0px 10px;
	margin-bottom: 10px;
}

.counter h4 {
	color: #ffea8a;
	margin-bottom: 5px;
}

.counter p {
	color: #fff;
	text-transform: uppercase;
	margin-top: 8px;
}

.counter ul {
	background: #00060a;
	list-style: none;
	color: white;
	font-size: 38px;
	line-height: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 1px black;
	padding: 2px 0 2px 0;
}

.counter .time_remaining {
	background: url(../png/counter-dots-2.png) no-repeat center center #00060a;
	padding: 0;
}

.counter .time_remaining li {
	display: inline;
	padding: 0 4px;
}

.counter .quantity_left li {
	display: inline;
	padding: 0 0 0 0;
}

.small-coupon {
	float: left;
	border: 2px dashed black;
	padding: 10px;
	margin: 10px 15px 0 15px;
	width: 285px;
	height: 160px;
}

ul.checklist-post {
	float: left;
	list-style: none;
	padding: 10px 0 20px 14px;
	width: 310px;
}

.checklist-post li {
	background: url(../png/icon-minicheck-3.png) no-repeat scroll 0 0 transparent;
	font-size: 15px;
	font-weight: bold;
	padding: 2px 0 9px 36px;
}

.retailprices {
	float: left;
	font-weight: bold;
	text-align: center;
	padding: 0 0 0 75px;
	width: 200px;
}

/* Upgrade Checkout page styles 
------------------------------------------------*/
.microsoft_gold {
	float: right;
	padding-top: 17px;
}

.upgradepage .dropdown {
	background: #fff;
	margin: 7px 0 0 0;
}

.breadcrumb-bg {
	background: #ebf0f1;
	padding: 0;
}

ul.breadcrumbs {
	list-style: none;
	padding: 0;
}

.breadcrumbs li {
	background: url(../jpg/breadcrumb-arrow.jpg) no-repeat right center;
	float: left;
	display: inline-block;
	color: #7a8c8d;
	padding: 8px 26px 8px 16px;
	margin: 0;
}

.breadcrumbs li span {
	display: inline-block;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background: #bbc3c7;
	color: #fff;
	text-align: center;
	line-height: 25px;
	margin-right: 6px;
	width: 25px;
	height: 25px;
}

.breadcrumbs li.active {
	background: url(../jpg/breadcrumb-arrow-active.jpg) no-repeat right center #d8dfe1;
	color: #223f51;
}

.breadcrumbs li.previous {
	background: url(../jpg/breadcrumb-arrow-active1.jpg) no-repeat right center;
}

.breadcrumbs li.active span {
	background: #00af5e;
}

.upgradepage .right15 {
	padding-right: 15px;
}

.upgrade-form {
	margin-right: 20px;
}

.ru .upgrade-form td {
	font-size: 13px;
	font-size: 19px;
}

.upgrade-form input {
	background: #ebf0f1;
	border: 1px solid #bbc3c7;
	padding: 5px 6px;
	width: 100%;
}

.upgrade-form input.error {
	background: #f7d6d3;
	border: 1px solid #d93024;
}

.upgrade-form .disclaimer {
	font-size: 12px;
	line-height: 15px;
}

input#cart_email {
	visibility: hidden;
	width: 5px;
}

.upgradepage #footer p,
#footer a {
	color: #ebf0f1;
}

.searching_lightbox {
	background: #fff;
	border: 1px solid #fff;
	-webkit-border-radius: 110px;
	-moz-border-radius: 110px;
	border-radius: 110px;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	position: absolute;
	z-index: 2001;
	margin: 80px auto 0 auto;
	padding: 25px;
	width: 150px;
	height: 150px;
}

.searching_lightbox_shadow {
	background: rgba(0, 0, 0, 0.75);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2000;
}

/* Language Detection Popup 
------------------------------------------------*/

#language_shadow {
	display: block;
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1005;

}

#language_popup {
	background: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);

	position: absolute;
	z-index: 1006;
	top: 50%;
	left: 50%;
	margin-left: -440px;
	margin-top: -330px;
	width: 880px;
	height: 700px;
	padding: 20px;
}

#language_popup h1 {
	font-size: 38px;
	font-weight: normal;
}

#language_popup span {
	border-left: 3px solid #00af5e;
	font-size: 28px;
	padding-left: 18px;
	margin-left: 6px;
}

#language_popup .button {
	font-weight: normal !important;
}

.language-column {
	float: left;
	text-align: center;
	width: 20%;
}

.language-column img {
	width: 100%;
}

.language-column h2 {
	font-size: 21px;
	font-weight: normal;
}

.language-column ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 90%;
}

.language-column li {
	font-size: 15px;
	margin-bottom: 3px;
	width: 100%;
}

.language-column a {
	display: block;
	border: 1px solid #b0bbc0;
	color: #223f51;
	text-decoration: none;
	padding: 6px 0;
	width: 100%;
}

.language-column li.active a {
	border: 1px solid #223f51;
	background: #223f51;
	color: #fff;
}

.language-column a:hover {
	background: #e2e7e9;
}

/* Microsoft Popup
------------------------------------------------*/
#microsoft_popup {
	background: #fff;
	border: 1px solid #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	position: absolute;
	z-index: 2001;
	margin: 0 auto;
	padding: 20px;
	width: 875px;
}

#microsoft_popup_shadow {
	background: rgba(0, 0, 0, 0.75);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2000;
}

#microsoft_popup img {
	margin-top: 8.25rem;
}

.microsoft_popup_pdfcontainer {
	display: flex;
	flex-direction: row-reverse;
}

.pdf_wrapper {
	height: 580px;
	padding-right: 2rem;
}

.pdf_wrapper object {
	margin-top: 2rem;
	height: 100%;
}

.verify_link {
	margin-top: 3rem;
}

/* Guarantee Popup
------------------------------------------------*/
#guarantee_popup,
#eds_popup {
	background: #fff;
	border: 1px solid #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	position: absolute;
	z-index: 2001;
	margin: 0 auto;
	padding: 20px;
	width: 730px;
}

#guarantee_popup_shadow,
#eds_popup_shadow {
	background: rgba(0, 0, 0, 0.75);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2000;
}

.cancel {
	background: #fff;
	border: 1px solid #bbc3c7;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	display: block;
	position: absolute;
	top: 2px;
	right: 2px;
	color: #bbc3c7;
	font-size: 20px;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	height: 20px;
	width: 20px;
}

/* Footer Styles 
------------------------------------------------*/
#partner-footer a {
	float: left;
	display: block;
	opacity: 0.4;
	text-align: center;
	width: 20%;
}

#partner-footer img {
	margin: 0 10px;
}

#partner-footer a:hover {
	opacity: 1;
}

.footer-column {
	float: left;
	list-style: none;
	color: #4b6f8e;
	margin: 0 10px 0 0;
	padding: 0;
	width: 100%;
}

.footer-column li {
	padding-bottom: 3px;
	line-height: 12px;
	padding: 2px 0 8px 0;
}

.footer-column h4 {
	color: #fff;
	padding-bottom: 6px;
}

.footer-column a {
	font-size: 12px;
	text-decoration: none;
	color: #bbc3c7;
}

.footer-column a:hover {
	color: #0082bb;
}

#subfooter p {
	font-size: 12px;
}

#subfooter a {
	text-decoration: none;
	color: #223f51;
	padding-right: 8px;
}

#subfooter a:hover {
	color: #0082bb;
}

#subfooter p.float-right {
	text-align: right;
}


/* .fb_iframe_widget iframe {
	width: 110px !important
} */

iframe#twitter-widget-0 {
	margin-left: 50px
}

/* Medium */
@media screen and (max-width: 64em) {

	#footer .container_12 .grid_3,
	#footer .container_12 .grid_2 {
		width: 45%;
	}

	.footer-column {
		width: 100%;
	}
}

/* Small */
@media screen and (max-width: 40em) {
	#partner-footer a {
		width: 30%;
	}
}

#cookies {
	position: fixed;
	bottom: 0;
	background: #fff;
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	padding: 8px 0 4px 0;
	width: 100%;
}

#cookies p {
	text-align: center;
	font-size: 13px;
}

#cookies button {
	background: #bbc3c7;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	color: #000;
	padding: 3px 8px;
}

#cookies button:hover {
	background: #223f51;
	color: #fff;
}