/* ---------------------------------------------------------------------------------- 
	Reset common element styles to better avoid browser inconsistencies.
	Based on http://www.maxdesign.com.au/articles/css-reset
---------------------------------------------------------------------------------- */
html, body, ul, ol, li, form, fieldset, legend { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
fieldset, img { border: 0; }
legend { color: #000; }
li { list-style: none; }
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
table { border-collapse: collapse; border-spacing: 0; }
caption, th, td { text-align: left; vertical-align: top; }
abbr, acronym { border-bottom: 1px dotted; cursor: help; }




/* ---------------------------------------------------------------------------------- 
	Restyle common elements, based on YUI Fonts and Base
	http://developer.yahoo.com/yui/3/cssfonts/
	http://developer.yahoo.com/yui/3/cssbase/
	
	For font size percentage to pixel values, see:
	http://developer.yahoo.com/yui/3/cssfonts/#fontsize
---------------------------------------------------------------------------------- */
body {
	background-color: #fff;
	font: 13px/1.385 'Segoe UI', Segoe, Arial, Helvetica, clean, sans-serif; /* 13px base font size with 18px line spacing */
}
p, fieldset, table
{
   margin-bottom: 1em; /* 18px */
}
h1 { font-size: 184.6%; /* 24px */ color: #5c727e; }
h2 { font-size: 138.5%; /* 18px */ }
h3 { font-size: 123.1%; /* 16px */ }
a { color: #0094de; } /* bright blue */
a:hover { color: #88c62a; } /* bright green */




/* ---------------------------------------------------------------------------------- 
   Common Page Structure and Styling
---------------------------------------------------------------------------------- */
#hd, #bd, #ft {
	min-width: 960px;
	max-width: 1260px;
	margin: 0 auto;
}
body.home #hd, 
body.home #bd, 
body.home #ft {
	width: 960px;
}
#hd #nav,
#hd .hd-lang,
#hd .hd-login,
#hd .hd-main,
#bd .bd-inner,
#ft ul {
	margin-left: 32px;
}
body.home #hd .hd-lang .hd-login
{
	margin-left: auto;
	margin-right: auto;
}

body.home #hd #nav,
body.home #hd .hd-main,
body.home #hd .hd-login,
body.home #bd .bd-inner,
body.home #ft ul {
	margin: 0 auto;
}

#hd,
#hd a {
	color: #fff;
}
#hd {
	margin-top: 16px;
}
#hd .hd-main {
	height: 96px;
	position: relative;
	background: url("/images/sprite-gradients.png") #495a63 0 0 repeat-x scroll;
	border-top-right-radius: 6px;
	border-top-left-radius: 6px;
	-moz-border-radius-topright: 6px;
	-moz-border-radius-topleft: 6px;
	-webkit-border-top-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	z-index:-1;
}
#hd .hd-sub {
	position: absolute;
	top: 0;
	left: 304px;
	right: 32px;
	text-align: right;
}
#hd #nav {
	text-align: center;
	background: url("/images/sprite-gradients.png") #4f626c 0 -160px repeat-x scroll;
	height: 32px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
}
#hd #nav ul.nav-level-1 {
	padding-top: 3px;
	margin: 0 auto;
}
#hd #nav ul.nav-level-1 li {
	position: relative; /* allows subnav items to be absolutely positioned based on li position */
	display: inline;
	line-height: 29px;
}
#hd #nav ul.nav-level-1 a {
	font-weight: bold;
	font-size: 108%; /* 14px */
	line-height: 29px;
	text-decoration: none;
	padding: 4px 0 7px;
	text-shadow: #2a353b 1px 1px 1px;
}
#hd #nav ul.nav-level-1 a span {
	line-height: 29px;
	padding: 2px 22px 6px;
}
#hd #nav ul.nav-level-1 a:hover span {
	color: #fff;
	text-decoration: underline;
}
#hd #nav a.active { /* highlight active section */
	background: url("/images/sprite-gradients.png") #fff 0 -256px repeat-x scroll;
	border: 1px solid #fff;
	border-bottom: none medium;
	color: #0094de;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	text-shadow: #fff 1px 1px 0px !important;
}
#hd #nav a.active:hover span {
	color: #88c62a !important;
}
#hd #nav a.parent span { /* add down arrows to level 1 nav links with children */
	background: url("/images/sprite-common.png") right 0 no-repeat scroll;
}
#hd #nav a.parent:hover span { /* add down arrows to level 1 nav links with children */
	background-position: right -32px;
}
#hd #nav ul.nav-level-2,
#hd #nav ul.nav-level-3 {
	background-color: #F2F2F2;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
	-moz-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
	-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
	border: 1px solid #a9d2e8;
	visibility: hidden;
}
#hd #nav ul.nav-level-2 {
	position: absolute;
	top: 22px;
	left: 0px;
	border-top: medium none;
	z-index: 101;
}
#hd #nav ul.nav-level-2 li { /* styles all li items in level 2 and 3 */
	display: block;
	padding: 0;
	text-align: left;
	line-height: 20px;
	width: 225px;
	border-bottom: 1px dotted #fff;
}
#hd #nav ul.nav-level-2 a { /* styles all a items in level 2 and 3 */
	font-size: 100%;
	font-weight: normal;
	text-decoration: none;
	display: block;
	padding: 4px 22px;
	line-height: 1.231em;
	text-shadow: #fff 0 0 0;
}
#hd #nav ul.nav-level-2 a:hover { /* styles all a hover items in level 2 and 3 */
	background-color: #daedfc;
	text-decoration: underline;
}
#hd #nav ul.nav-level-2 a span {
	line-height: 1.231em;
	padding: 0;
	color: #0094de;
}
#hd #nav ul.nav-level-2 a:hover span {
	color: #88c62a;
}
#hd #nav ul.nav-level-2 li.parent a { /* add right arrow to level 2 links with children */
	background: url("/images/sprite-common.png") 200px -396px no-repeat scroll;
}
#hd #nav ul.nav-level-2 li.parent a:hover {
	background-position: 210px -92px;
	background-color: #daedfc;
}
#hd #nav ul.nav-level-2 li.parent a span {
	display: block;
}
#hd #nav ul.nav-level-3 {
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 101;
	visibility: hidden;
}
#hd #nav ul.nav-level-3 a {
	background-image: none !important;
}

#hd .social-networking li {
	display: inline;
}
#hd .social-networking a {
	color: #e3e3e3;
	font-size: 85%; /* 11px */
	font-wieght: bold;
	text-decoration: none;
	line-height: 32px;
	margin-left: 18px;
}
#hd .social-networking a:hover {
	color: #fff;
	text-decoration: underline;
}
/*
#hd .search {
	width: 224px;
	height: 32px;
	background: url("/images/sprite-common.png") -304px 0 no-repeat scroll;
	position: relative;
	float: right;
	text-align: left;
}
#hd .search input {
	margin: 7px 3px 7px 7px;
	padding: 1px 7px;
	font-size: 93%;  //12px 
	border: 1px solid #fff;
	background: url("/images/sprite-gradients.png") #fff 0 -912px repeat-x scroll;
	width: 170px;
	height: 15px;
	text-align: left;
}
#hd .search button {
	margin: 4px 4px 4px 0;
	padding: 0;
	border: medium none;
	width: 24px;
	height: 24px;
	text-indent: 32px;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	text-align: left;
	background: url("/images/sprite-common.png") #1b2225 -304px -52px no-repeat scroll;
}
#hd .search button:hover {
	cursor: pointer;
	background-position: -336px -52px;
	background-color: #a3e240;
}
*/

#bd {
	margin: 16px auto;
}
#bd .bd-inner {
	
}
#bd .sidebar {
	width: 208px;
	float: left;
	margin-left: -100%;
}
#bd .sidebar.right {
	width: 208px;
	float: left;
	margin-left: -208px;
}
#bd .content {
	float: left;
	width: 100%;
}
#bd .content .content-inner {
	margin: 0 222px;
}
body.details-page #bd .content .content-inner {
	margin-right: 0;
}
#bd #sub-navigation {
	background-color: #d9e5eb;
	padding: 15px 0;
}
#sub-navigation ul {
	border-top: 1px solid #c5dceb;
	border-bottom: 1px solid #f1f6f8;
}
#sub-navigation li {
	background: url("/images/sprite-gradients.png") 0 -816px repeat-x scroll #d9e5eb;
}
#sub-navigation li.active {
	background-position: 0 -720px;
	background-color: #f8f9fb;
}
#sub-navigation li.active ul li a:hover {
	cursor: pointer;
}
#sub-navigation a {
	color: #5d727e;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 5px 16px 5px 32px;
	border-top: 1px solid #f1f6f8;
	border-bottom: 1px solid #c5dceb;
	text-shadow: #fff 1 1 1;
	background: url("/images/sprite-common.png") 11px -394px no-repeat scroll;
}
#sub-navigation li.active a {
	background-color: #eef3f6;
	border-bottom: medium none !important;
}
#sub-navigation a:hover {
	color: #88c62a;
	background-position: 11px -90px;
	text-decoration: underline;
}
#sub-navigation li.active a {
	color: #2e95e7;
}
#sub-navigation li.active a:hover {
	color: #2e95e7;
	cursor: default;
	text-decoration: none;
}
#sub-navigation ul ul {
	border: medium none;
}
#sub-navigation ul ul a {
	background-image: none;
	color: #5d727e;
	font-weight: normal;
	padding: 1px 16px 2px 32px;
}
#sub-navigation ul ul a:hover {
	color: #88c62a !important;
	text-decoration: underline;
}

#bd .sidebar-banners {
	margin: 64px 0 0;
}
#bd .sidebar-banners img {
	margin-bottom: 16px;
}


.content h1 {
	font-weight: normal;
	background: url("/images/sprite-gradients.png") 0 -448px repeat-x scroll;
	padding: 48px 32px 0;
	margin-bottom: 4px;
	min-height: 80px;
}
.content h1 img {
	float: left;
	margin: -5px 0 -5px -13px;
}
.content h2 {
	color: #88c62a;
	font-size: 123.1%; /* 16px */
	margin: 0 32px;
}
.content h3 {
	margin: 0 32px;
}
.content table {
	margin: 0 32px;
}
.contentlbl {
	margin: 0 32px;
}
.content p,
.content ul {
	font-size: 108%; /* 14px */
	line-height: 1.5em;    /* line spacing for paragraphs */
	margin: 0 32px 28px;
}
.content ul {
	margin-left: 64px;
}
.content ul li {
	margin-bottom: 0.5em;
	list-style: outside square;
}
.content .inline-image {
	position: relative;
	float: right;
	padding: 0 0 32px 32px;
	vertical-align: bottom;
}
.content .inline-image .enlarge-icon {
	position: absolute;
	bottom: 0;
	left: 0;
}


#ft {
	margin: 0px auto 16px;
	text-align: center;
	/*width: 960px;*/
	height: 32px;
}
#ft ul {
	padding: 4px 0;
	background: url("/images/sprite-gradients.png") #475962 0 -352px repeat-x scroll;
	line-height: 24px;
	color: #fff;
}
#ft li {
	display: inline;
}
#ft li a {
	padding: 0 18px;
	color: #d9e2e7;
	font-weight: bold;
	text-decoration: none;
	text-shadow: #2a353b 1px 1px 1px;
}
#ft li a:hover {
	color: #fff;
	text-decoration: underline;
}





/* ---------------------------------------------------------------------------------- 
   Common Misc.
---------------------------------------------------------------------------------- */
.hide-content { /* hide content that is included for screen readers */ 
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.radius-box {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
.sidebar .callout {
	margin-bottom: 16px;
	width: 208px;
}
.callout {
	float: right;
	color: #999933;
	background-color: #e7e7cb;
	box-shadow: inset 0 0 40px #dedeb4;
	-moz-box-shadow: inset 0 0 40px #dedeb4;
	/*-webkit-box-shadow: inset 0 0 40px #dedeb4;*/
}
.sidebar .callout-content {
	margin: 16px 16px 0;
}
.callout-content h2 {
	color: #d28c36;
	font-size: 100%;
	margin: 0;
	padding: 0 0 4px;
	text-transform: uppercase;
	text-shadow: #fff 1px 1px 1px;
	line-height: 1.1em;
	border-bottom: 1px solid #d7d7af;
}
.callout-content h3 {
	color: #666633;
	font-size: 123.1%;
	line-height: 1.1em;
	padding: 10px 0 0;
	border-top: 1px solid #fff;
	margin: 0;
}
.callout-content p {
	margin: 4px 0 13px;
}
.callout-action {
	position: relative;
	text-align: right;
}
.sidebar .callout-action {
	margin: -0.5em 1em 1em;
}
.sidebar .callout-action a {
	color: #666633;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: #fff 1px 1px 1px;
	text-decoration: none;
	line-height: 22px;
	height: 22px;
	display: block;
	padding: 0 28px 0 0;
	background: url("/images/sprite-common.png") right -96px no-repeat scroll;
}
.sidebar .callout-action a:hover {
	color: #d28c36;
	background-position: right -160px;
}
.column-1-of-4 {
	width: 25%;
	float: left;
	background: url("/images/home-links-bg.png") 0 0;
}
.column-1-of-4 h2 {
	margin-left: 40px;
	font-style: italic;
}
.last {
	display: table-cell !important;
	float: none !important;
	width: auto !important;
}
.home .learn-more-action a {
	background: url("/images/sprite-common.png") -304px -224px no-repeat scroll;
	height: 38px;
	width: 165px;
	float: right;
	position: relative;
	left: -29px;
	top: -54px;
}
.home .learn-more-action a:hover {
	background-position: -304px -288px;
}
.home .try-it-out-action a {
	background: url("/images/sprite-common.png") -304px -352px no-repeat scroll;
	height: 38px;
	width: 200px; /* 192 */
	float: right;
	position: relative;
	left: -26px;
	top: -54px;
}
.home .try-it-out-action a:hover {
	background-position: -304px -416px;
}
a.gmstudio-banner
{
	float: right;
}



/* ---------------------------------------------------------------------------------- 
   Page-specific styles
---------------------------------------------------------------------------------- */
.home .home-features {
	width: 288px;
	height: 320px;
	float: left;
}
.home .callout {
	width: 656px;
	height: 320px;
	margin-left: 16px;
}
.home .callout-content {
	margin: 16px;
	height: 224px;
	overflow: hidden;
}
.home .callout-action {
	background-color: #dcdcae;
	height: 64px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
}

.home .home-links {
	background-color: #e2ebef;
	padding: 16px 0;
	margin: 16px auto 0;
	width: 960px;
}
.home .home-links h3,
.home .home-links a {
	display: block;
	padding: 0px 32px 4px;
	margin: 0;
	font-size: 100%;
}
.home .home-links a {
	background: url("/images/sprite-common.png") 11px -398px no-repeat scroll;
	font-weight: bold;
	/*text-decoration: none;*/
}
.home .home-links a:hover {
	background-position: 11px -94px;
	text-decoration: underline;
}
.home .home-links a.partner-logo {
	background-image: none;
	margin: 8px 16px;
	padding: 0;
}
.home .callout-content h2 {
	color: #666633;
	font-size: 138.5%;
	margin: 0;
	padding: 0;
	border: medium none;
	text-transform: none;
	text-shadow: none;
}
.home .callout-action a {
	background: url("/images/sprite-common.png") -304px -83px no-repeat scroll;
	display: block;
	height: 51px;
	width: 163px;
	line-height: 51px;
	margin: 0 467px;
}
.home .callout-action a:hover {
	background-position: -304px -147px;
}
/* modal window styling */
#simplemodal-overlay {
	background-color: #000;
}
#simplemodal-container {
	background-color: #333; 
	border: 4px solid #fff; 
	padding: 1px;
	box-shadow: 0 0 16px #000;
	-moz-box-shadow: 0 0 16px #000;
	-webkit-box-shadow: 0 0 16px #000;
}
#simplemodal-container a.modalCloseImg {
	background:url("/images/sprite-common.png") -758px -214px no-repeat scroll; /* adjust url as required */
	width:41px;
	height:41px;
	display:inline;
	z-index:3200;
	position:absolute;
	top:-23px;
	right:-23px;
	cursor:pointer;
}
.modal-markup { /* content to display in modal window */
	display: none; /* hide markup on page until modal link is clicked */
}
.simplemodal-container .modal-markup {
	display: block; /* show markup only when inside modal window */
}

.hd-login
{
    float:left;  
    margin-bottom: 3px;
}

.hd-login div
{
    color: #0094de;
    font-family: "Segoe UI", Segoe, Arial, Helvetica, clean, Sans-Serif;
    line-height: 1.5em;
    font-size: 14px;
}

.hd-login input[type=text],
.hd-login input[type=password]
{
    border-bottom-color: #b3b3b3;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: #b3b3b3;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: #b3b3b3;
    border-right-style: solid;
    border-right-width: 1px;
    border-top-color: #b3b3b3;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-top-style: solid;
    border-top-width: 1px;
    
    width: 100px;
}

.hd-login_link
{
    cursor: pointer;
    font-size: 14px;
    color:#0094de;
}

.hd-lang
{
    text-align: right;
    margin-bottom: 3px;
    margin-right: -23px;
}

.hd-lang span
{
    color: black;
    font-family: "Segoe UI", Segoe, Arial, Helvetica, clean, Sans-Serif;
    line-height: 1.5em;
    font-size: 108%;
}

.hd-lang img 
{
    border: 1px solid #888888;
    vertical-align: text-bottom;
    margin-left: 3px;
    height: 13px;
    width: 19px;
}

.hd-lang input 
{
    border: 1px solid #888888;
    vertical-align: text-bottom;
    margin-left: 5px;
}

.hd-main img
{
	position:absolute;
	left:0px;
}

.translation-links
{ 
    cursor: hand; 
    cursor: pointer;
}
