/*-  LAYOUT
----------------------------------------------------------------------*/
/* natural box layout model to all elements */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hide {
    display: none;
}

.center {
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}
/*-  STRUCTURE
----------------------------------------------------------------------*/
/* HYPERLINK OVERRIDES */

.primary a {
    text-decoration: underline;
}

.secondary a:hover {
    text-decoration: underline;
}
/* COLUMN LAYOUTS */
/* COLUMN LAYOUTS - layout-two-column */

.layout-two-column .internal .primary {
    width: 66%;
}

.layout-two-column .internal .secondary {
    width: 160px;
}

.layout-three-column {}
/* COLUMN LAYOUTS - layout-two-column */

.layout-full-width {}

.layout-full-width .internal .primary {
    width: 83.2%;
}

.lt-ie8 .layout-full-width .internal .primary {
    width: 81.2%;
}

.layout-no-sub-menu .internal .primary {
    width: 100%;
}
/* end column layouts */

#page {
    margin-right: auto;
    margin-left: auto;
    max-width: 980px;
    padding: 0px 10px;
}

.lt-ie9 #page {
    padding: 0;
}

.home #page {
    margin-top: 12px;
}

.inner {
    max-width: 980px;
    width: 980px;
    margin: 0px auto;
}

.lt-ie8 header .inner,
.ie8 header .inner {
    max-width: 980px;
    width: 980px;
}

.lt-ie8 .m-footer .inner,
.lt-ie8 .global-footer .inner,
.ie8 .m-footer .inner,
.ie8 .global-footer .inner {
    max-width: 980px;
}

.internal {
    height: 100%;
    clear: both;
}

.lt-ie8 .internal,
.lt-ie8 #page {
    height: auto;
}

.internal .primary {
    clear: none;
    float: left;
    margin: 0px;
    width: 50.3%;
    padding-top: 6px;
    padding-left: 14px;
    border-top: 1px solid #E5E5E5!important;
    border-left: 1px solid #e5e5e5;
    min-height: 795px;
}

.internal .submenu {
    float: left;
    width: 160px;
    height: auto;
    /* border-top: 1px solid #E5E5E5; */
    margin-top: -57px;
    z-index: 999;
}

.lt-ie9 .internal .submenu {
    border-top: none;
    margin-top: -37px;
}

.lt-ie8 .internal .submenu {
    border-top: none;
}

.internal nav.submenu h2 {
    font-family: 'RotisSemiSansPro', arial, tahoma, sans-serif;
    font-size: 1.8em;
    /* background: url("../images/sprite.png") no-repeat 112px -558px;  */
    
    padding-top: 10px;
    margin-bottom: 10px;
}

.internal nav.submenu ul {
    margin: 0;
    padding: 0;
}

.internal nav.submenu li {
    float: none;
    width: 100%;
}

.internal nav.submenu > ul > li > a {
    color: #1F3C73;
    font-size: 1.1em;
    margin: 3px 0px 3px 0px;
    display: inline-block;
    /*font-weight: bold;*/
    border-bottom: 1px solid #E5E5E5;
    width: 100%;
    padding: 3px 5px 3px 6px;
}

.lt-ie8 .internal nav.submenu > ul > li > a {
    padding: 3px 1px 0px 0px;
}

.internal nav.submenu li.selected a {
    /* border-bottom: none; */
}

.internal nav.submenu li ul {
    display: none;
    position: inherit;
    padding: 12px 0px 0 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.internal nav.submenu li.selected ul {
    display: block;
    margin: -22px 0 6px 0px;
    font-size: 0.9em;
}

.internal nav.submenu li.selected a {
    color: #008bc3;
    padding-bottom: 10px;
    display: inline-block;
}

.internal nav.submenu li.selected ul li a {
    display: inline-block;
    margin: 6px 0px;
    background: #FFFFFF url("../images/sprite.png") no-repeat 0px -623px;
    padding: 4px 12px 4px 20px;
    color: #585858;
    width: 100%;
}

.internal nav.submenu li.selected ul li a.selected {
    background: #008bc3 url("../images/icon_arrow_right_grey.png") no-repeat 8px 8px;
    color: #FFFFFF;
    border-radius: 2px 0px 0px 2px;
}

.internal nav.submenu li.selected ul li a.selected:hover {
    color: #FFFFFF;
}

.internal nav.submenu li.selected ul li a:hover {
    color: #008bc3;
}

.internal nav.submenu > ul > li > a:hover {
    color: #008bc3;
}

.internal nav.submenu li.selected ul ul li a {
    padding-left: 30px;
    background: url("../images/icon_arrow_right_blue.png") no-repeat 18px 8px;
}

.internal nav.submenu li.selected ul ul li a.selected {
    background: #E5E5E5 url("../images/icon_arrow_right_grey.png") no-repeat 8px 8px;
    color: #666;
}

.internal nav.submenu li.selected ul ul li a.selected:hover {
    color: #666;
}

.lt-ie8 #page,
.lt-ie9 #page {
    max-width: 960px;
}

.secondary {
    clear: both;
    margin: 0;
    padding-top: 0px;
    width: 300px;
    float: right;
    clear: right;
}

.lt-ie8 .secondary {
    margin-left: 14px;
}

.home .secondary {
    padding-top: 0;
}

.primary {
    clear: left;
    float: left;
    margin: 0 0 20px;
    width: 99%;
}

.secondary .module {
    background-color: #fff;
    margin: 0 0 14px 0;
}

.secondary .module ul {
    padding-left: 0px;
}

.primary .module {
    background-color: #fff;
    margin: 0 0 14px 0;
}

.leftfloat {
    float: left;
    margin: 0 14px 14px 0;
}
/*-  SELF-CLEARING FLOATS
----------------------------------------------------------------------*/

.module:after,
.row:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.lt-ie8 .row {
    float: left;
}
/* ALIGNMENT */

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}
/*-  FORMS
----------------------------------------------------------------------*/

form label {
    margin-bottom: 4px;
    display: inline-block;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    display: inline-block;
    height: 30px;
    padding: 4px 6px;
    /*margin-bottom: 10px;*/
    font-size: 14px;
    line-height: normal;
    color: #555555;
    vertical-align: top;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

form input[type="submit"],
form button,
button,
form input#go,
.actionbutton,
a.submit,
input[type="image"],
.close img {
    display: inline-block;
    margin-top: 1px;
    *display: inline;
    padding: 4px 12px 5px 12px;
    margin-bottom: 0;
    *margin-left: .3em;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF !important;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color:  rgba(213, 63, 100, 1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    *zoom: 1;
    border: none;
}

.actionbutton,
a.actionbutton {
    margin-right: 0.1em;
    text-decoration: none;
}

.right_container {
    font-size: 11px;
}

.right_container a.actionbutton {
    border: none !important;
    margin-left: 10px;
}

form input[type="submit"]:hover,
form button:hover,
button:hover,
form input#go:hover,
.actionbutton:hover,
a.actionbutton:hover,
a.submit:hover,
input[type="image"]:hover,
.close img:hover {
    background-color: #C83C5F;
    color: #FFF;
    text-decoration: none;
}

input[type="image"] {
    padding: 9px 12px;
}

.content-education .actionbutton {
    background-color: #EC9000;
    color: #FFFFFF !important;
}

.content-education .actionbutton:hover {
    background-color: #DC6815;
    text-decoration: none !important;
}

.form-description {
    font-size: 0.9em;
    color: #666;
    line-height: 0.7em;
}

.form-controls {
    text-align: right;
}

.form-controls input[type="submit"] {
    /* margin-bottom: 1em; */
    
    font-size: 13px;
}

.form-controls a {
    margin-left: 2em;
    text-decoration: underline;
    font-size: 12px;
}

.page-3682 form#command {
    border: 1px solid #E5E5E5;
    padding: 18px 8px 12px 8px;
    border-radius: 0px;
    width: 64%;
    float: left;
    background-color: #F5F5F5;
    overflow: auto;
    margin-bottom: 12px;
}

form#command input#password {
    float: left;
    margin-left: 10px;
    display: block;
}

form#command input[type="image"] {
    clear: both;
    float: left;
    display: inline-block;
    padding: 14px 32px;
    margin-left: 10px;
}

form#command input[type="submit"] {
    width: 300px;
    margin-left: 10px;
    padding: 10px 12px;
    margin-top: 18px;
    border-radius: 4px;


    background: rgba(213,63,100,1);
background: -moz-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(213,63,100,1)), color-stop(80%, rgba(213,63,100,1)), color-stop(80%, rgba(200,60,95,1)), color-stop(100%, rgba(200,60,95,1)));
background: -webkit-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: -o-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: -ms-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: linear-gradient(105deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d53f64', endColorstr='#c83c5f', GradientType=1 );

}

form#command th,
form#command td {
    vertical-align: top;
}

form#command td br {
    display: none;
}

form#command .plain {
    margin-top: 10px;
}

form#command .plain th {
    width: 37px;
    text-align: right;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
}

form#command .plain td label.label-floatlabel {
    top: -20px !important;
    font-size: 13px !important;
    left: 12px !important
}

form#command .plain td label.placeholder {
    line-height: inherit !important;
}

form#command #rememberMe {
    margin-left: 10px;
    margin-top: 35px;
}

.page-3682 a[href^="/home/forgotten.do"] {
    display: inline-block;
    margin-left: 48px;
}

input#username,
input#password {
    margin-left: 10px;
    height: 40px;
    width: 300px;
    padding-top: 6px !important;
}

input#username {
    margin-bottom: 28px;
}
/* STICKY CONTROLS */

.sticky {
    background-color: #FFF;
    width: 618px;
}

.sticky h2 {
    display: inline;
}

.sticky.scrolling {
    border-bottom: 1px solid #ccc;
    -webkit-box-shadow: 0px 3px 0px 0px #eee;
    box-shadow: 0px 3px 0px 0px #eee;
    padding: 0.5em;
}

.sticky .control-bar {
    margin-left: 460px;
    display: inline-block;
}

.sticky .form-controls {
    display: inline-block;
    float: right;
    margin: 0 0 10px 0;
}

.layout-full-width .sticky {
    width: 782px;
	max-width: 100%;
    margin: 0px auto;
}

.lt-ie8 .layout-full-width .sticky.scrolling {
    width: 768px;
    margin-left: -780px;
}
/* FORMS - PRICES*/

select {
    height: auto;
}

.search-again form label {
    margin-bottom: 0px;
}

.search-again,
.searchagain {
    background-color: #D7E4EA;
    padding: 1em;
}

.search-again input[type="text"] {
    margin-bottom: 0;
}

.search-again input#go {
    padding: 9px;
}

.search-again ul {
    margin: 0;
    padding: 0 0 0 1em;
}

.search-again .options li {
    display: inline-block;
    list-style-type: none;
    margin-right: 10px;
    margin-top: -1em;
}

.search-again .options li.detailed {
    border-left: 1px solid #FFF;
    padding-left: 10px;
}
/* FORM - MARGIN ESTIMATOR */

.calculator-inner {
    padding: 0 0 1em 0;
    /*border-bottom: 1px solid #eee;
    box-shadow: 0px 3px 2px -3px rgba(0, 0, 0, 0.1);*/
}

.calculator-inner .form-description {
	padding: 10px 0px 0px 5px;
}

.calculator-inner input[type="submit"] {
    margin-left: 1em;
}

.margin-estimator h2 button {
    margin: 0 1em 0 2em;
}

.margin-estimator h2 a.btn-start-again {
    font-size: 0.65em;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
}

.margin-estimator table {
    font-size: 0.9em;
}

.margin-estimator table a {
    text-decoration: underline;
}

.margin-estimator table button {
    background-color: #999999;
    font-size: 0.8em;
    padding: 2px 6px;
}

.margin-estimator table th {
    vertical-align: top;
}

.margin-estimator table th span {
    display: block;
    font-size: 0.8em;
}

.margin-estimator .col-underlying {
    width: 6em;
}

.margin-estimator .col-price-security {
    width: 8em;
}

.margin-estimator .col-button-find-options {
    width: 6.7em;
}

.margin-estimator .col-button {
    padding: 4px;
    text-align: center;
}

.margin-estimator table input[type="text"] {
    width: 100%;
    margin-bottom: 0;
    border: 1px solid #E5E5E5;
    font-size: 1em;
}

.margin-estimator table .col-div-one-amount,
.margin-estimator table .col-div-two-amount {
    width: 7em;
}

.margin-estimator table .col-div-two-psr {
    width: 5em;
}

.margin-estimator .col-button .delete {
    padding: 3px 9px;
    font-size: 1.1em;
    font-weight: bold;
}

.margin-estimator .ui-tabs .ui-tabs-panel {
    padding: 0 !important;
    overflow: auto;
    border: none !important;
}

.margin-estimator input[disabled] {
    background: rgb(183, 183, 183);
    /* Old browsers */
    
    background: -moz-linear-gradient(top, rgba(183, 183, 183, 1) 0%, rgba(127, 127, 127, 1) 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(183, 183, 183, 1)), color-stop(100%, rgba(127, 127, 127, 1)));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, rgba(183, 183, 183, 1) 0%, rgba(127, 127, 127, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, rgba(183, 183, 183, 1) 0%, rgba(127, 127, 127, 1) 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, rgba(183, 183, 183, 1) 0%, rgba(127, 127, 127, 1) 100%);
    /* IE10+ */
    
    background: linear-gradient(to bottom, rgba(183, 183, 183, 1) 0%, rgba(127, 127, 127, 1) 100%);
    /* W3C */
    
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#b7b7b7', endColorstr='#7f7f7f', GradientType=0);
    /* IE6-9 */
}

#import_file_dialog {
    display: block;
    border: 1px solid #bbb;
    padding: 0px 20px 20px 20px;
    border-radius: 2px;
    background-color: #e5e5e5;
    margin-top: -2px;
    color: #333;
}

#import_file_dialog h3 {
    color: #333;
    margin-bottom: 5px;
}
/* JQUERYUI OVERRIDES*/

.ui-widget-content {
    border: none !important;
}

.ui-tabs {
    overflow: auto;
}

.ui-tabs table th {
    font-size: 0.9em;
}

.ui-tabs .ui-tabs-nav {
    padding: 0 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #e5e5e5 !important;
    border-bottom: none !important;
}

.ui-state-active a {
    background-color: #FFFFFF;
}

.ui-widget-header {
    background: none !important;
    border: none !important;
    font-size: 0.9em;
}

.ui-tabs .ui-tabs-panel {
    padding: 0 1em !important;
}
/* FORM VALIDATION */

.error {
    border: 1px solid #dd4b39;
    background-color: #F5F5F5;
    color: #dd4b39;
    padding: 8px;
    margin: 0px auto 8px auto;
    /* width: 320px;  position: relative; */
    
    overflow: auto;
    border-radius: 2px;
}

.section-dynamic ul.error-summary {
    border: 1px solid #dd4b39;
    background-color: #F5F5F5;
    color: #dd4b39;
    padding: 8px;
    margin: 0px auto 8px auto;
    /* width: 320px;  position: relative; */
    
    overflow: auto;
    border-radius: 2px;
}

.error input {
    color: #dd4b39;
}

.home-warning {
    border-bottom: 1px solid #F9E4B0;
    background-color: #FDF5E3;
    /*color: #E4701E;
    padding: 4px;*/
    margin: 0px auto;
    overflow: auto;
    /*font-size: 11.5px;*/
    text-align: center;
	color: red;
	padding: 10px;
	font-size: 14px;
	border: 1px solid red;
}

.home-warning a {
    color: red;
    text-decoration: underline;
}
/* Price pages - accommodating error pages without recode */

.section-dynamic .error,
.codelookup .error {
    border: none;
    background: none;
    padding: 0;
}

.section-dynamic span.error {
    border: 1px solid #dd4b39;
    background-color: #F5F5F5;
    color: #dd4b39;
    padding: 8px;
    margin: 0px auto 8px auto;
    /* width: 320px;  position: relative; */
    
    overflow: auto;
    border-radius: 2px;
    display: inline-block;
}
/* Announcements */

#secondnav {
    float: right;
    margin: 0 0 1em 1em;
    background-color: #f6fafd;
    padding: 0.2em 1em;
}

#secondnav ul {
    padding: 0;
    margin: 0;
}

#secondnav li {
    list-style-type: none;
}

#secondnav li.active {
    font-weight: bold;
}

#secondnav li ul {
    margin-left: 1em;
    font-weight: normal;
}

#secondnav li ul a {
    margin: 0.2em;
    display: inline-block
}

div #announcements input[type="text"] {
    margin-bottom: 0;
}

div #announcements .contenttable {
    border: 1px solid #e5e5e5;
}

div #announcements .contenttable td {
    padding: 1em;
    vertical-align: top;
}

div #announcements .contenttable td span {
    font-size: 0.9em;
    display: block;
    margin-left: 2em
}

div #announcements .contenttable td span.red {
    display: inline;
    color: #F00;
    margin-left: 0;
}

div #announcements .contenttable th {
    background: #d7e4ea;
    color: #003876;
    text-align: left;
    padding: 10px 3px 4px 3px;
    border-right: 1px solid #D7E4EA;
    vertical-align: bottom;
}

div #announcements .contenttable .or {
    background-color: #e5e5e5;
}

div #announcements .contenttable .search {
    line-height: 2.5em;
}

.pricesens img {
    display: block;
    margin: 0px auto;
}

#announcements-search .contenttable {
    width: 35.8em;
}

form[name='searchAnnouncementsForm2'] td {
    text-align: left;
}

.search-submit {
    padding: 1em 1em 1em 0em
    /*9em; */
}
/*-  SEARCH RESULTS
----------------------------------------------------------------------*/

.search-results {}

.search-results .internal .primary {
    width: 66%;
}

.search-results nav.submenu {
    margin-top: 0;
}

.search-results nav.submenu .category {
    border-bottom: 1px solid #e5e5e5;
    padding: 0.3em
}

.search-results nav.submenu > ul {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.search-results nav.submenu > ul:last-child {
    border-bottom: none;
}

.search-results nav.submenu > ul > li {
    font-size: 0.9em;
    display: inline-block;
    width: 100%;
    padding: 3px 0px 3px 0px;
}

.search-results nav.submenu > ul > li > a {
    margin: 0px;
    border-bottom: none;
    padding: 0;
}

.search-results nav.submenu li ul {
    display: block;
    padding-left: 6px;
    line-height: 1.3em;
}

.search-results nav.submenu li ul li {
    margin-bottom: 6px;
}

.search-results dt {
    margin-top: 20px;
    border-top: 1px solid #EDEDED;
    padding-top: 12px;
}

.search-results dd {
    margin-left: 0;
    line-height: 1.3em;
}

.search-results dd a {
    color: #666666
}

.search-results dd.search-type a {
    color: #666666;
    float: right;
    font-size: 0.8em;
    padding: 4px;
    border: 1px solid #CCC;
    margin: -12px 0px 12px 12px;
}

.search-results dd.search-type a:hover {
    color: #333;
    border: 1px solid #999
}

.search-results .pagination {
    border-top: 1px solid #EDEDED;
    text-align: right;
    padding: 6px 0px;
    margin: 12px 0px;
}

.search-results .pagination a {
    display: inline-block;
    margin-right: 6px;
}
/* TABLE STYLES */

.contenttable {
    width: 100%;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.contenttable input,
.contenttable select {
    margin-bottom: 0;
}

.contenttable th div.ui-dt-c,
.contenttable td div.ui-dt-c {
    padding: 0px;
}

.contenttable th {
    background: #d7e4ea;
    color: #333;
    text-align: left;
    padding: 4px 3px;
    border-right: 1px solid #D7E4EA
}

.contenttable tr:nth-child(even) {
    background: #f6fafd;
}

.contenttable.reverse tr:nth-child(even) {
    background: #fff;
}

.contenttable.reverse tr:nth-child(odd) {
    background: #f6fafd;
}

.contenttable td {
    padding: 4px 3px;
    border: solid 1px #dadada;
    vertical-align: middle;
}

.contenttable.no-inner-borders td {
    border-left: 1px solid transparent;
}

.contenttable .right-align {
    text-align: right;
}

.contenttable td.icon-left .ui-dt-c {
    padding-left: 20px;
}
/* Feedback legacy table styles*/

#feedback table {
    /* float:left; */
    
    width: 100%;
    margin-bottom: 1em;
    font-size: 0.9em;
    border: none;
}

#feedback table th {
    color: #333;
    text-align: left;
    padding: 4px 3px;
    width: 100px;
    vertical-align: top;
}

#feedback table td {
    padding: 4px 3px;
    border: none;
    vertical-align: middle;
}

#feedback table .right-align {
    text-align: right;
}

#feedback textarea {
    height: 80px;
    min-width: 290px;
}
/* SFE legacy table styles*/

.table-sfe {
    /* float:left; */
    
    width: 100%;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.table-sfe input,
.table-sfe select {
    margin-bottom: 0;
}

.table-sfe th div.ui-dt-c,
.table-sfe td div.ui-dt-c {
    padding: 0px;
}

.table-sfe th {
    background: #d7e4ea;
    color: #333;
    text-align: left;
    padding: 4px 3px;
    border-right: 1px solid #D7E4EA
}

.table-sfe tr:nth-child(even) {
    background: #f6fafd;
}

.table-sfe.reverse tr:nth-child(even) {
    background: #fff;
}

.table-sfe.reverse tr:nth-child(odd) {
    background: #f6fafd;
}

.table-sfe td {
    padding: 4px 3px;
    border: solid 1px #dadada;
    vertical-align: middle;
}

.table-sfe.no-inner-borders td {
    border-left: 1px solid transparent;
}

.table-sfe .right-align {
    text-align: right;
}

.table-sfe td.icon-left .ui-dt-c {
    padding-left: 20px;
}

.table-section-start {
    border-top: 3px solid #ccc !important;
}

.table-section-end {
    border-bottom: 3px solid #ccc !important;
}

table caption {
    font-size: 0.9em;
    font-weight: bold;
    color: #930;
    text-align: left;
}

.table-sfeVol-summary {
    width: 46%;
}

.table-sfeVol-summary .col-footer {
    text-align: right;
}
/* GENERAL TABLE STYLES 2*/

.tableborderzero {
    /* float:left; */
    
    width: 100%;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.tableborderzero th div.ui-dt-c,
.tableborderzero td div.ui-dt-c {
    padding: 0px;
}

.tableborderzero th {
    background: #d7e4ea;
    color: #333;
    text-align: left;
    padding: 4px 3px;
    border-right: 1px solid #D7E4EA
}

.tableborderzero tr:nth-child(even) {
    background: #f6fafd;
}

.tableborderzero.reverse tr:nth-child(even) {
    background: #fff;
}

.tableborderzero.reverse tr:nth-child(odd) {
    background: #f6fafd;
}

.tableborderzero td {
    padding: 4px 3px;
    border: solid 1px #dadada;
    vertical-align: middle;
}

.tableborderzero.no-inner-borders td {
    border-left: 1px solid transparent;
}

.tableborderzero .right-align {
    text-align: right;
}

.tableborderzero td.icon-left .ui-dt-c {
    padding-left: 20px;
}
/* COMPANY INFORMATION */

.page-3345 .search-again {
    float: right;
    background-color: inherit;
    border: 1px solid #E5E5E5;
    margin: 0 0 1em 1em;
    padding: 0;
    width: 184px;
}

.page-3345 .search-again label {
    line-height: 2.5em;
    font-size: 0.9em;
}

.page-3345 .search-again h3 {
    background-color: #D7E4EA;
    margin: 0;
    padding: 0.5em
}

.page-3345 .search-again .module {
    padding: 0.5em 0.5em 0em 0.5em;
    /* width: 158px; */
    
    margin-bottom: 0;
}

.page-3345 .search-again .module a {
    text-decoration: underline;
    margin-top: -0.1em;
}

.page-3345 .search-again .module p a {
    text-decoration: underline;
    margin-top: -0.1em;
    text-align: center;
    display: block;
}

.page-3345 .search-again input[type="text"] {
    margin-bottom: 0;
    width: 60px
}

.page-3345 .search-again .module div span {
    font-size: 0.9em;
    padding: 0.3em;
    margin: 0.8em 0em;
    text-align: center;
    display: block;
}

.page-3345 .search-again .module div span.left {
    margin-right: 1em;
}

.page-3345 #page-contents {
    line-height: 1.8em;
    vertical-align: top;
    width: 415px;
    /*display: inline; */
    
    clear: none;
    margin-bottom: 1em;
}

.page-3345 .adfloat {
    display: none;
}

.page-3345 #page-contents td {
    vertical-align: top;
    padding: 0;
}

.page-3345 #page-contents img {
    width: 80%;
}
/* PRICE LOKOUP */

.page-3449 .search-again {
    /*width: 76%;*/
}
/*** Videos ***/

.video-container-responsive {
    min-width: 320px;
    min-height: 180px;
    margin-bottom: 0.5em;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* BLOCKS - Photo*/

.block-photo {
    border: 1px solid #E5E5E5;
    width: 219px;
    margin: 0.5em 1em 0.5em 0;
    position: relative;
    display: inline-block;
    float: left;
    padding-bottom: 0.2em;
    overflow: visible;
    height: 300px;
}

.lt-ie9 .block-photo {
    width: 216px;
}

.block-photo img {
    z-index: 99;
}

.block-photo h3 {
    background: #034E8C;
    color: #fff;
    font-family: arial;
    font-size: 18px;
    line-height: 1.4em;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.9;
    padding: 10px;
    text-align: left;
    width: 100%;
    position: absolute;
    top: 2.55em;
    z-index: 9;
    left: 0;
    margin-bottom: 0;
}

.block-photo p {
    padding: 0.3em 1em 0 1em;
}

.block-photo ul {
    padding-right: 0.5em;
    padding: 0.3em 1em 0 2.5em;
    margin-bottom: 1em;
}

.block-photo a.more {
    padding: 0.5em 1em;
    display: block;
}

.block-photo a.more:after {
    content: ">";
    margin-left: 0.2em;
    vertical-align: middle;
    font-family: "Arial Narrow", Arial, sans-serif;
}

.content-education .block-photo {
    background-color: #ECECEC;
}
/*-  EDUCATION
----------------------------------------------------------------------*/

.content-education .primary a {
    color: #DC6815;
}

.content-education .primary a:hover {
    text-decoration: underline;
}

.listBox {
    border-bottom: 1px solid #E5E5E5;
    overflow: auto;
    margin-bottom: 1em;
    padding-bottom: 1em;
}

.listBox:last-child {
    border-bottom: none;
}

.listBox p {
    float: left;
    padding: 0;
    display: inline-block;
    width: 23em;
}

.listBox ul {
    display: inline;
    float: right;
    font-size: 0.9em
}

.listBox h3 {
    margin: 0;
}

.listBox h3.bg1 {
    color: #EC9000;
}

.listBox .bg3 ul {
    color: #EC9000;
}

.listBox ul li {
    list-style-type: none;
}

.listBox ul em {
    font-style: normal;
    font-weight: bold;
    padding-right: 0.2em;
}

.listBox a.btnBig {
    color: #EC9000;
    font-weight: bold;
    margin-top: -12px;
    float: left;
}

.listBox a.btnBig:after {
    content: ">";
    margin-left: 0.2em;
    vertical-align: middle;
    font-family: "Arial Narrow", Arial, sans-serif;
    bottom: 1px;
    position: relative;
}

.block-logo-group {
    overflow: auto;
}

.block-logo-group .block-logo {
    float: left;
    height: 140px;
    text-align: center;
    font-size: 0.85em;
    /* width: 150px; */
    
    border: 1px solid #e5e5e5;
    margin: 0 1.1em 1.5em 0;
    padding: 0.1em;
    overflow: hidden;
}

.block-logo-group .block-logo img {
    display: block;
}

.block-logo-group .block-logo a {
    clear: both;
}
/* Sharemarket game page */

.page-1774 .block-photo {
    height: 530px;
}

.page-1774 .block-photo h3 {
    font-size: 16px;
    top: 3.2em;
}
/* Sharemarket game page */

.page-981 .block-photo {
    height: 240px;
}
/* MyASX */

.section-myasx .icon {
    width: 100px;
    vertical-align: top;
    padding: 1em 0.5em 0.5em 0.5em;
}

.page-3682 #command > h2 {
    display: inline-block;
    margin-left: 44px;
    margin-bottom: 20px;
}
/* MyASX page creation */

.page-3816 a[href^="/home/watchlist/edit.do"] {
    margin-right: 38%
}

.page-3816 a[href^="/home/watchlist/edit.do"] img, .page-3816 #watchlist p a img{
    display: inline-block;
    margin: 0px auto;
    *display: inline;
    padding: 10px 12px 10px 12px;
    margin-bottom: 0;
    *margin-left: .3em;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #0081C6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    *zoom: 1;
    border: none;
}

.page-3816 a[href^="/home/watchlist/edit.do"] img:hover {
    background-color: #0265B6;
    color: #FFF;
}
/* BOND CALC UPDATED EXISTING LAYOUT */

.module_container {
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 2px #666666;
    color: #003366;
    margin: 0 auto 4px;
    max-width: 480px;
    min-height: 20px;
    min-width: 480px;
}

.module_inner {
    border: medium none;
    margin: 0 auto;
}

.module_inner div {
    border-radius: 0 0 0 0;
}

.module_container h2 {
    background: url("../images/logo.png") no-repeat scroll 98% center;
    background: url("../images/logo.png") no-repeat scroll 98% center, -moz-linear-gradient(center top, #393939 50%, #292929 50%) repeat scroll 0 0 transparent;
    border-bottom: 1px solid #232323;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 1px 4px #000000;
    color: #CCCCCC;
    font-size: 1.32em;
    font-weight: normal;
    line-height: 1.5em;
    margin: 0 1px;
    padding: 9px;
    text-shadow: -1px 0 1px #000000;
}

.module_contents_all_columns {
    clear: both;
    overflow-x: hidden;
}

.module_contents_all_columns a {
    color: #E5E5E5;
    display: block;
    margin: 6px 12px;
    text-decoration: none;
}

.module_contents_all_columns a:hover {
    text-decoration: underline;
}

.module_end {
    text-align: center;
}

.module_contents_left_column {
    clear: left;
    float: left;
    padding-left: 2% !important;
    width: 46%;
}

.module_contents_right_column {
    float: left;
    padding-right: 2% !important;
    width: 46%;
}

.module_container .module_section {
    border-bottom: 1px solid #000000;
    box-shadow: 1px 1px 0 #585858;
    padding: 14px 0px 14px 18px !important;
}

.module_two_column .module_field_outer {
    float: left;
    width: 50%;
}

.module_container h3 {
    border-bottom: medium none;
    color: #BEBEBE;
    font-weight: normal;
    margin: 0;
    padding: 1% 0 2%;
    text-shadow: 0 0 1px #000000;
    text-transform: none;
}

.module_container h3.prompt {}

.module_container .module_two_column {
    overflow: visible;
    padding: 2% 9%;
}

.module_container .module_three_column {
    padding: 2% 3%;
    position: relative;
}

.module_container .module_three_column .module_field_outer {
    float: left;
    xwidth: 33%;
}

.module_container .module_three_column .module_contents_left_column,
.module_container .module_three_column .module_contents_center_column {
    float: left;
    padding: 0 3%;
    width: 27.3%;
}

.module_container .module_three_column .module_field_outer input {
    width: 100px;
}

.module_container .module_two_column input {
    width: 100px;
}

.module_two_column .error {
    background-color: #AC3531;
    border: 1px solid #8D1515;
    clear: both;
    color: #FFFFFF;
    display: none;
    font-weight: normal;
    overflow: auto;
    padding: 6px;
}

.module_container .module_field_outer {
    padding: 6px 0;
    text-align: left;
}

.module_container .module_field_outer.text-right {
    position: absolute;
    right: 9%;
    text-align: right;
    width: 54% !important;
}

.module_container .module_field_outer.errors {
    background-color: #F5F5F5;
    border: 1px solid #DD4B39;
    margin: 0 auto 8px;
    overflow: auto;
    padding: 8px;
}

.module_container .module_field_outer.errors label {
    color: #DD4B39;
}

.module_container .module_field_outer.errors input {
    border: 1px solid #DD4B39;
}

.module_container .module_field_outer.errors .input-guide-error {
    bottom: 30%;
    color: #DD4B39;
    font-size: 12px;
}

.module_container label {
    color: #BBBBBB;
    display: inline-block;
    font-size: 1.12em;
    font-weight: normal;
    margin-bottom: 3px;
    padding: 0;
    text-align: left !important;
    text-shadow: 0 0 1px #000000;
    width: 12%;
}

.module_container label span,
.module_container .module_field_outer span.contextual-help {
    color: #F5F5F5;
    font-size: 0.8em;
    font-weight: normal;
}

.module_container label a {
    color: #BBBBBB;
    text-decoration: none;
}

.module_container label a span:hover {
    color: #BBBBBB;
}

.module_container .module_standout {
    background: linear-gradient(to right, #000000 0%, #222222 2%, #333333 50%, #222222 98%, #000000 100%) repeat scroll 0 0 transparent;
    box-shadow: 0 -1px 1px #222222 inset, 0 0 4px #000000 inset, 0 1px 1px #222222;
    overflow: auto;
    padding: 2% 0%;
}

.module_three_column.module_end {
    background: #1676b1;
    background: linear-gradient(to bottom, #1676B1 0%, #0D5480 59%) repeat scroll 0 0 transparent;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #F5F5F5;
    margin: 0;
    overflow: auto;
    text-align: left !important;
}

.module_three_column.module_end .module_field_outer {
    width: 100%;
}

.module_three_column.module_end .module_field_outer input {
    width: 55px;
}

.module_end {
    padding: 0;
}

.module_end label {
    text-shadow: 1px 1px 1px #323647;
}

.module_end label a {
    color: #FFFFFF;
}

.module_end input[disabled] {
    background-color: #D3DFEB;
    border-color: #DDDDDD;
    cursor: not-allowed;
}

.module_container h3 span {
    font-weight: bold;
}

.module_container input,
.module_container select {
    box-shadow: none !important;
    font-size: 1em;
    line-height: 1.8em;
    padding: 6px;
    position: relative;
    width: 370px;
}

.module_end input {
    font-size: 1.4em;
    width: 73%;
}

.module_container .or {
    color: #FFFFFF;
    display: block;
    font-size: 1.8em;
    text-align: center;
}

.module_container .operator {
    color: #FFFFFF;
    font-size: 1.3em;
    line-height: 1em;
    padding-bottom: 0px;
    text-align: center;
    vertical-align: middle;
    margin: 0 12px;
}

.module_container .btn {
    background: #1676b1;
    background: linear-gradient(to bottom, #1676B1 49%, #0D5480 50%, #0D5480 50%) repeat scroll 0 0 transparent;
    border: medium none;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.5) inset;
    color: #F5F5F5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    padding: 10px 20px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.3);
    width: 93%;
}

.module_container .btn:hover {
    background: none repeat scroll 0 0 #0D5480;
    color: #FFFFFF;
}

.module_container input {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

.module_container input:focus {
    border-color: rgba(126, 126, 126, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    outline: 0 none;
}

.module_container .module_field_outer.errors input:focus {
    border-color: #B94A48;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #D59392;
    color: #B94A48;
}

.module_container .errors {
    background-color: #AC3531;
    border: 1px solid #8D1515;
    color: #FFFFFF;
    display: none;
    font-weight: normal;
    overflow: auto;
    padding: 7px;
}

.module_container .module_standout input,
.module_container .module_three_column.module_end input {
    background-attachment: scroll;
    background-color: transparent;
    border: medium none;
    box-shadow: none;
    color: #FFFFFF;
    padding-left: 0;
}

.module_container .module_standout input[disabled],
.module_container .module_three_column.module_end input[disabled] {
    filter: none !important;
    text-shadow: none !important;
}

.module_container .settlementDate input {
    background: none repeat scroll 0 0 transparent;
    padding: 2% 2% 3%;
    transition: all 0.5s ease 0s;
    width: 63px;
}

.module_container .settlementDate input:focus {
    background-color: #F5F5F5;
    color: #333333;
}

.module_container .settlementDate img {
    cursor: pointer;
    margin: 0 96px -3px 4px;
}

.module_container #yield_errors {
    background-color: #FED1D1;
    border: 1px solid #DD4B39;
    border-radius: 3px 3px 3px 3px;
    clear: both;
    color: #DD4B39;
    margin: 0 9%;
    padding: 2%;
}
/* BOND CALC UPDATED LAYOUT */

.module_container .module_standout dl.options {
    padding: 0 0 0 4%;
    text-align: left;
}

.module_container .module_standout dl.options dt {
    float: left;
    clear: left;
    width: 200px;
}

.module_container .module_standout dl.options dt label {
    width: auto;
}

.module_container .module_standout dl.options dt span {
    color: #FFF
}

.module_container .module_standout dl.options dd {
    margin: 0 0 0 110px;
    padding: 0 0 .5em 0;
}

.module_container .module_standout dl.options dd input {
    padding: 0!important;
    padding-bottom: 6px !important;
    line-height: 1em;
}

.module_step_02 {
    text-align: center;
    width: 100%;
}

.module_step_02 .enter_details {
    float: left;
    text-align: left;
    width: 30%;
}

.module_step_02 .enter_details label {
    width: auto;
}

.module_step_02 .enter_details input {
    line-height: 1em;
    width: 140px !important;
}

.module_step_02 .divider {
    float: left;
    margin-top: 30px;
    padding: 0;
    width: 31%!important;
}

.module_container .module_three_column.module_step_03 {
    padding: 0!important;
}

.module_step_03 label {
    width: 110px;
}

.module_step_03 input {
    font-size: 1em!important;
}

.module_step_03 .module_field_outer {
    padding: 0;
    float: left;
}

.module_step_03 table {
    padding: 0 10px;
    float: left;
    width: 100%;
}

.module_step_03 table tr td input {
    line-height: 1em;
    margin: 0 !important;
}

.module_step_03 table tr td {
    padding: 0 0 0 10px!important;
}

.module_step_03 table tr.last td {
    border-top: 1px solid #ccc;
}

.module_contents_left_column {
    width: auto!important;
}

.module_contents_center_column,
.module_contents_left_column,
.module_contents_right_column {
    margin: 0;
    padding: 0;
    width: auto!important;
}

#query_error {
    font-size: 0.9em;
    color: #dd4b39;
}
/* Property Indices */

.map_pos {
    background: transparent url("../images/property_indices_map.jpg") repeat scroll 0%;
    position: relative;
    -moz-background-clip: -moz-initial;
    -moz-background-origin: -moz-initial;
    -moz-background-inline-policy: -moz-initial;
    width: 582px;
    height: 465px;
}

.map_pos div {
    position: absolute;
    width: 130px;
    font-size: 11px;
    color: #003366;
    background: rgb(245, 245, 245);
    background: rgba(125, 125, 125, 0.3);
    border-radius: 0.2em;
    padding: 0.4em;
    text-align: center;
}

.map_pos_australia {
    position: absolute;
    top: -40px;
    left: 214px;
    width: 130px;
    font-weight: bold;
    font-size: 11px;
    color: rgb(0, 0, 0);
}

.map_pos_qld {
    top: 150px;
    left: 447px;
}

.map_pos_nsw {
    top: 267px;
    left: 454px;
}

.map_pos_vic {
    top: 338px;
    left: 396px;
}

.map_pos_sa {
    top: 267px;
    left: 268px;
}

.map_pos_wa {
    top: 240px;
    left: -5px;
}
/* Charts */

.page-5829 #charting div h2 {
    display: inline-block;
    width: 71.5%;
}

.page-5829 h2 .error {
    border: none;
    font-size: 11px;
    background: none;
    font-weight: bold;
}

.page-5829 .promo {
    float: right;
    width: 200px;
    background-color: #E5E5E5;
    padding: 0 1em;
    font-size: 0.85em;
}

.page-5829 .help {
    float: left;
    font-size: 0.8em;
}

.lt-ie9 .page-5829 .chart-table td {
    border: 1px solid #E5E5E5;
}

.chart-table {
    width: 560px;
    clear: none;
    border: none;
}

.chart-table td,
.chart-table th {
    border: none;
    padding: 0.5em 1em
}

.chart-table .chart-search-label {
    width: 140px;
}

.chart-table img {
    vertical-align: center;
    display: inline-block;
    position: relative;
    top: 6px
}

.chart-table .PriceDisplay label {
    display: inline-block;
    margin-right: 1em;
}
/* Ui-tabs*/

.ui-tabs {
    background: none !important;
    font-family: Arial, Helvetica, sans-serif !important;
    color: #575757 !important;
    font-size: 1em !important;
}

.ui-tabs-panel {
    border: 1px solid #E5E5E5 !important;
    padding: 0 1em;
}

.ui-state-default {
    border-bottom: none !important;
    font-weight: normal;
}

.ui-tabs .ui-tabs-nav li a {
    color: #e5e5e5;
    background: #044481;
    background: -moz-linear-gradient(top, #023769 0%, #044481 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #023769), color-stop(100%, #044481));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #023769 0%, #044481 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #023769 0%, #044481 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #023769 0%, #044481 100%);
    /* IE10+ */
    
    background: linear-gradient(to bottom, #023769 0%, #044481 100%);
    /* W3C */
    
    font-weight: normal;
    display: block;
}

.ui-tabs li.ui-state-active a {
    background: #FFFFFF !important;
    color: #1F3C73 !important;
}

.session_lbl {
    font-weight: bold;
    vertical-align: top;
    padding-right: 0.4em;
}
/* page not found */

.page-5755 .social-share {
    display: none;
}
/* boxleft */

.boxleft {
    float: left;
    width: 47%;
    border: 1px solid #CCC;
    margin: 0 1em 1em 0;
    height: 415px;
}

.boxleft h3 {
    margin: 0 0.5em 0.5em 0.5em;
}

.content-education .boxleft h3 {
    background-color: #EC9000;
    color: #FFFFFF;
    padding: 0.5em 1em;
    margin: 0 0 0.5em 0;
    height: 3.5em;
    text-align: center;
}

.content-education .boxleft h3 a {
    color: #FFFFFF;
    font-size: 0.9em;
}

.boxleft img {
    float: left;
    margin: 0 1em 1em 0.5em;
}

.boxleft .medialinks {
    float: right;
    width: 60%;
    margin-top: 0;
    padding-left: 0px;
}

.boxleft .speaker {
    clear: both;
    font-weight: bold;
    margin: 0 0.5em 0.5em 0.5em;
}

.boxleft p {
    margin: 0 0.5em;
}
/* course */

.course {
    margin-bottom: 1em;
    padding: 1em 0em;
    clear: both;
}

.course:nth-child(2n) {
    background-color: #F5F5F5;
    border-bottom: 1px solid #E5E5E5;
}

.course h3 {
    display: inline;
}

.course img {
    float: left;
    margin: 0 1em 3em 1em;
}

.course p {
    margin-left: 176px
}
/* prices - menu - active page state */

.page-3462 .submenu ul ul a[href^="/asx/markets/equityPrices.do"],
.page-11577 .submenu ul ul a[href^="/asx/markets/interestRateSecurityPrices.do?type=GOVERNMENT_BOND"],
.page-3430 .submenu ul ul a[href^="/asx/markets/interestRateSecurityPrices.do?type=CONVERTIBLE_NOTE"],
.page-3473 .submenu ul ul a[href^="/asx/markets/optionPrices.do"],
.page-3485 .submenu ul ul a[href^="/asx/markets/warrantPrices.do"],
.page-3453 .submenu ul ul a[href^="/asx/markets/cfdPrices.do"],
.page-3816 .submenu ul ul a[href^="/home/premiumService.do?serviceCode=watch&display=true"],
.page-3690 .submenu ul ul a[href^="/home/newsletterSubscriptions.do"] {
    background: #008bc3 url("../images/icon_arrow_right_grey.png") no-repeat 8px 8px !important;
    border-radius: 2px 0px 0px 2px;
    margin: 6px 0px !important;
    padding: 4px 12px 4px 20px;
    color: #FFFFFF !important;
}
/* MyASX Watchlist */

.page-3678 .submenu .selected ul {
    display: none !important;
}

.page-3808 .user-access-secondary-logout {
    display: block;
    width: 160px;
    float: right;
    text-align: center;
    margin-top: -19px;
    margin-bottom: -2px;
}

.page-3808 .user-access-secondary-logout a {
    color: #FFFFFF;
    display: block;
}

.page-10220 .ui-tabs li {
    float: left;
    list-style-type: none;
}

.page-10220 .ui-tabs li a,
.page-10220 .ui-tabs-current {
    float: left;
    display: inline-block;
    padding: 6px;
}

.page-10220 .ui-tabs-current {
    background-color: #008BC3;
    color: #FFF;
    border-radius: 0.2em;
}

.page-3808.layout-full-width .internal .primary {
    width: 70%;
}
/* Multiple price search */

.page-12126 .pricetextbox {
    min-width: 280px;
}
/* Bookbuild */

.page-10792 .primary h1 {
    display: inline-block;
    font-size: 1.6em
}

.page-10792 .primary h2 {
    display: inline-block;
    font-size: 1.3em;
    width: 400px;
    margin: 10px 0 0 0;
}

.page-10792 #secondnav {
    margin-top: -40px;
    padding: 0.5em 0.5em 0 0.5em;
    font-size: 0.85em;
}

.page-10792 .search-submit {
    padding: 0em 1em 1em 9em;
}

.page-10792 #announcements-search {
    float: left;
    margin-top: 9px;
}

.page-10792 form#announcement-price-search {
    float: right;
    width: 230px;
}

.page-10792 form#announcement-price-search th {
    padding: 12px
}

.page-10792 #announcements-search .contenttable {
    width: 33.5em
}
/* MyASX */

.page-3682 #login {
    /* border: 1px solid #E5E5E5; */
    
    border-radius: 4px;
    padding: 0em 1em;
    width: 50%;
    float: left;
}

.page-3682 h1 {
    display: none;
}

.page-3682 table.plain tr:nth-child(even) {
    background: none;
}

.lt-ie8 .page-3682 #login {
    width: 42%;
}

.page-3682 #login h2 {
    font-size: 1.4em
}

.page-3682 #login th {
    padding: 0;
    margin: 0;
    vertical-align: top;
    padding-top: 8px
}

.page-3682 #login form label {
    display: inline-block;
    width: 80px;
    line-height: 0.5em;
    padding: 0;
}

.lt-ie8 .page-3682 #login form label {
    line-height: 1em;
}

.page-3682 #login input#password {
    width: 100%;
}

.lt-ie8 .page-3682 #login input#password {
    width: 92%;
}

.page-3682 #login input[type="image"] {
    display: block;
    margin-top: -20px;
    padding: 15px 30px
}

.page-3682 .blurb {
    background-color: #ffffff;
    padding: 1em;
    margin-bottom: 1em;
    /* display: block; */
    
    border: 1px solid #E5E5E5;
    padding: 10px 30px 20px 40px;
    width: 43%;
    float: right;
    color: #777;
    font-size: 12px;
    position: relative;
    width: 270px;
    height: 362px;
}

.page-3682 .blurb .blurb-switch {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    font-size: 23px;
    border: 1px solid #E5E5E5;
    position: absolute;
    right: 244px;
    color: #ccc;
    background-color: #FFF;
    line-height: 57px;
    text-align: center;
    top: 100px;
}

.page-3682 .blurb .subheading {
    font-size: 13px;
    /* display: block; */
    
    margin-right: 6px;
}

.page-3682 .blurb ul {
    display: block;
    font-size: 13.5px;
    clear: both;
    padding-left: 26px;
}

.page-3682 .blurb li {
    margin-bottom: 10px;
}

.page-3682 .blurb .actionbutton {
    background-color: #eaa741;
    color: #FFFFFF !important;
    font-size: 14px;
    padding: 10px 12px;
    border: 1px solid #BBB;
    border-radius: 4px;
    width: 94%;
    border: none;
    margin-top: 15px;


    background: rgba(213,63,100,1);
background: -moz-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(213,63,100,1)), color-stop(80%, rgba(213,63,100,1)), color-stop(80%, rgba(200,60,95,1)), color-stop(100%, rgba(200,60,95,1)));
background: -webkit-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: -o-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: -ms-linear-gradient(-15deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
background: linear-gradient(105deg, rgba(213,63,100,1) 0%, rgba(213,63,100,1) 80%, rgba(200,60,95,1) 80%, rgba(200,60,95,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d53f64', endColorstr='#c83c5f', GradientType=1 );
}

.page-3682 .blurb .actionbutton:hover {
    background-color: #ec9000;
    color: #FFFFFF !important;
}

.page-3682 .blurb h2 {
    display: block;
    width: 100%;
    padding: 10px 12px 10px 0;
    float: left;
    color: #888;
    /* margin-bottom: 5px; */
}

.page-3682 p.small {
    clear: both;
    margin-top: 40px;
}

.ui-front {
    z-index: 10001 !important;
}
/* recent floats */

.lt-ie9 .page-3380 .add {
    width: 25px;
}

.movement_down {
    background: no-repeat url(http://www.asx.com.au/images/down_glyph.gif);
    width: 12px;
    height: 12px;
    display: inline-block;
    float: right;
    margin-top: 7px;
}

.movement_up {
    background: no-repeat url(http://www.asx.com.au/images/up_glyph.gif);
    width: 12px;
    height: 12px;
    display: inline-block;
    float: right;
    margin-top: 7px;
}

.movement_text_down {
    color: #f00;
}

.movement_text_up {
    color: #339900;
}

header {
    height: 185px !important
}

.section-dynamic header {
    /*height: 244px !important;*/
}

.top {
    height: 130px
}

.header-widget {
    left: 0px;
}

header .header-widget span {
    margin-right: 0;
}

header .header-social {
    float: right;
    clear: right;
    margin-right: 0px;
    margin-top: 15px;
    line-height: 32px;
    height: 32px;
    display: inline-block;
    display: none; 
}

header .header-social a {
    height: 32px;
    width: 32px;
    display: inline-block;
    border-radius: 6px;
}

header .header-social a:hover {
    text-decoration: none;
}

header .header-social strong {
    line-height: 32px;
    margin: 0;
    padding: 0;
    float: left;
    display: inline-block;
    margin-right: 10px;
}

header .header-social img {
    width: 32px;
    height: 32px;
}

header .header-social img:hover {
    /*border: none !important;*/
    
    text-decoration: none !important;
}

header .header-social a.icon-twitter:hover {
    background-color: #0381C7;
}

header .header-social a.icon-linkedin:hover {
    background-color: #cccccc;
}

header .header-social a.icon-youtube:hover {
    background-color: #cccccc;
}

.bg-primary {
    color: #fff;
    background-color: #337ab7;
}

a.bg-primary:hover {
    background-color: #286090;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover {
    background-color: #e4b9b9;
}
/* */
/*
.asx-news {
    display: none;
}
*/

.contact-external {
    border: 1px solid #E5E5E5;
    padding: 5px 10px;
    float: right;
    width: 36%;
    margin: 0 0 10px 0px;
    background-color: #FFE49D;
    color: #333;
}

.contact-external ul {
    margin: 0px;
    padding: 0 0 10px 20px;
}

.contact-external h3 {
    color: #FF7700
}

.page-16541 .contenttable {
    float: left;
    /*width: 63%;*/
}

.page-16541 .clear {
    clear: both;
}

.page-16541 .contenttable th {
    text-transform: capitalize;
    padding: 10px;
}

.page-16541 .contenttable td:nth-child(1) {
    vertical-align: top;
}

.page-16541 .advertisement-leaderboard div,
.page-16541 .advertisement-leaderboard {
    display: none;
}
/*.layout-full-width.page-16541 .primary {width: 100%; }*/

.page-16541 .contenttable td {
    padding: 10px;
}

.page-16541 .contenttable td a {
    display: inline !important;
}

.page-16541 .contenttable tr:nth-child(even) {
    background: #FFF;
}

.question-block {
    float: right;
    clear: right;
    width: 36%;
    border: 2px solid #003876;
    padding: 0px 5px;
    border-radius: 3px;
}

.question-block h3 {
    text-align: center;
}

.question-block ol {
    padding: 0 10px 0 30px;
    margin: 0;
    line-height: 1.3em;
}

.question-block li {
    margin-bottom: 10px;
    list-style: font-size: 12px;
    margin: 0 0 10px 0em;
}

.question-block li a strong,
.question-block li strong a {
    font-weight: normal;
}
.question-answers-expand {width: 63%; border: 1px solid #dadada; padding: 10px 20px 10px 0px;/* box-shadow: 2px 5px 5px #DADADA; */}
.question-answers-expand a strong,
.question-answers-expand strong a {
    font-size: 1.2em;
    line-height: 1.8em;
    display: block;
}

.question-answers-expand li {
    line-height: 1.5em;
    margin-bottom: 25px;
}

.question-answers-expand ol > li {
    /* border-bottom: 5px double #c5c5c5; */
    
    margin-left: 0px;
    /* font-size: 15px; */
}

.no-ads .advertisement-leaderboard,
.no-ads .advertisement-m-rec,
.no-ads .advertisement-skyscraper,
.no-ads .multilink {
    display: none;
}

.home .asx-news {display: none; }


.secondary .module-trending {
    margin-bottom: -30px;
}

.page-3375 .primary p a {
    display: inline-block;
}

/* Partner ecosystem(Community) styles */
.page-12303 .partners {
	display: none;
	position: relative;
    float: left;
    margin-left: 25px;
	width: 475px;
	max-width: 100%;
}

.page-12303 .partners ul {
	margin-bottom: 0px;
	margin-top: 0px;
    padding-left: 25px;
    margin-right: 20px;
    float: left;
}

.page-12303 article div.advertising {
	border-left: none;
}

.page-12303 #partnersImageMap {
    position: relative;
    float: left;
    max-width: 500px;	
}

.page-12303 aside.right {
	display: none;
}	

.page-12303 .emailLink {
    width: 100%;
    float: left;
}



