﻿/* The first rule is purely for when JavaScript is disabled, 
and allows the hidden submenu to be displayed on hover purely with CSS. The rest of the code defines a set of 
base styles that format the <nav> menu in the way that we want without adding anything too decorative. 
Note that we’re using the :after pseudo-selector to clear the floated list items; normally this would be 
added using a class name so that it could be applied to the containers of any floated elements on the page. 
*/
/* JS disabled styles */
/* When javascript is disabled, this will show the drop-down menu and make sure it appears on top with the correct width.*/
html
{
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff; /* Fills the page */
    position: relative; /* Fix for absolute positioning */
}
body 
{
    font-family: 'Source Sans 3','Titillium Web';
    font-size: 10pt;
}
h2
{
    font-size: 1.25em;
}
/* Override some normalized styles. */
td, th
{
    padding: 2px;
}
sup
{
    font-size: 65%;
    top: -0.2em;
}
div
{
    padding: 1px;
}

#pageHeader {
    background-image: url("../img/MesserE_Color_500x172.png");
    opacity: 1.0;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 250px;
    height: 95px;
    background-color: white;
    display: block;
    margin: 15px 5px 15px 0;
}

#pageHeaderTitle {
    display: inline-block;
    vertical-align: middle;
    line-height: 95px;
    color: #002b45;
    font-size: 1.625rem;
    font-weight: normal;
    text-decoration: none;
    margin: 0 0 0 5px;
}

/* base nav styles */
nav 
{
    display: block;
    margin: 0 auto 10px;
    position: relative;
    background-color: #002d73;
    font: 17px 'Source Sans 3','Titillium Web';
    background: #002d73; /* Old browsers */
}

.cssgradients nav
{
	background: -moz-linear-gradient(top,  #002d73 0%, #094fa3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002d73), color-stop(100%,#094fa3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #002d73 0%,#094fa3 100%); /* W3C */
}

nav ul
{
    padding: 0;
    margin: 0;
}

/* Highest level for all menu bars */
nav li
{
    list-style-type: none;
    position: relative;
    float: left;
}


/* To fix a bug with IE float: right not calculating the space available for the float.  Fixes problem with menu caret dropping to a newline in menubar */
nav > ul > li > a
{
    overflow: auto; /* forces clearing of the child float */
    zoom: 1; /* give it layout (this can be some other css that does likewise) */
}

nav li:hover ul
{
    z-index: 10;
    width: 255px;
}


nav ul:after
{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Style of each menu item */
nav li a
{
    display: block;
    padding: 10px 20px;
    color: #eee;
    text-decoration: none;
}

nav li a:focus
{
    outline: none;
    text-decoration: underline;
}

/* remove leading and trailing separator from sub-menus */
nav li:first-child a
{
    border-left: none;
}

nav li.last a
{
    border-right: none;
}

/* This is for the caret that is added by javascript when there are submenus */
nav a span
{
    display: block;
    float: right;
    margin-left: 5px;
}

html[class^="ie-"] nav a span, html[class*=" ie-"] nav a span
{
    margin-left: 5px;
}

/* This hides submenu.*/
nav ul ul
{
    display: none;
    position: absolute;
    left: 0;
    background-color:#002d73;
    -moz-opacity: 0.95;
    opacity: .95;
    filter: alpha(opacity=95);
}

/* this ensures that the submenu appears as a single vertical list */
nav ul ul li
{
    float: none;
}

/* Sets the formatting of the submenu. */
nav ul ul a
{
    padding: 5px 10px 5px 25px;
    border-left: none;
    border-right: none;
    font-size: 15px;
    width: 220px;
}


/* flip the gradient when hovering over menu. */
nav li:hover
{
	background: #094fa3; /* Old browsers */
}

.cssgradients nav li:hover
{
	background: -moz-linear-gradient(top,  #094fa3 0%, #002d73 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#094fa3), color-stop(100%,#002d73)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #094fa3 0%,#002d73 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #094fa3 0%,#002d73 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #094fa3 0%,#002d73 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #094fa3 0%,#002d73 100%); /* W3C */
}


/* When hovering makes the border of the submenu less see-through */
nav ul ul a:hover
{
	background-color:#094fa3;
}


/* Overrides to base nav style for the installation drop down menu. */
nav.InstTitle 
{
    font: 14px 'Source Sans 3','Titillium Web';
    -moz-box-shadow: 2px 2px 2px rgba(0,0,0,.75);
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.75);
    box-shadow: 2px 2px 2px rgba(0,0,0,.75);
}

nav.InstTitle li:hover ul
{
    z-index: 10;
    width: 255px;
}

nav.InstTitle li a
{
    padding: 7px 20px;
}

nav.InstTitle ul ul a
{
    padding: 5px 10px 5px 25px;
    border-left: none;
    border-right: none;
    font-size: 15px;
}

nav.InstTitle ul ul a:hover
{
    background-color: #094fa3; 
}


/* IE7 Specific CSS */
.ie7 ul { display:inline-block; }
.ie7 ul ul {display:none;}
.ie7 ul li a span { position:absolute; right:5px; top:10px; }
.ie7 ul ul li a { border-right:none; padding:5px 10px 5px 25px; }
.ie7 .content { clear:both; }


input:focus:invalid
{
    background-color: #CCCCCC;
}

textarea:required, select:required, input:required
{
    border: 1px solid #FF0000;
}


/* Takes the caret char (added to menus with submenus by javascript) and rotates it into a down arrow. */
.csstransforms ul a span
{
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.no-csstransforms ul a span
{
    height: 7px;
    width: 12px;
    margin-top: 8px;
    text-indent: -5000px;
    overflow: hidden;
    background: url(../img/indicator.png) no-repeat 0 0;
}

/* Styles specific to menu items - mostly for giving them icons. */
.mnuEnglish, .mnuEnglish a:hover
{
    background-image: url('../img/us.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuChinese, .mnuChinese a:hover
{
    background-image: url('../img/cn.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuTChinese, .mnuTChinese a:hover
{
    background-image: url('../img/hk.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuInstSummary, .mnuInstSummary a:hover
{
    background-image: url('../img/flag-blue.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuLRs, .mnuLRs a:hover
{
    background-image: url('../img/star.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuDHist, .mnuDHist a:hover
{
    background-image: url('../img/clock.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuLRHist, .mnuLRHist a:hover
{
    background-image: url('../img/hourglass.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuTankHist, .mnuTankHist a:hover
{
    background-image: url('../img/wrench-screwdriver.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuDRs, .mnuDRs a:hover
{
    background-image: url('../img/truck.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuAInfo, .mnuAInfo a:hover
{
    background-image: url('../img/user.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuStdConv, .mnuStdConv a:hover
{
    background-image: url('../img/balance.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuPassword, .mnuPassword a:hover
{
    background-image: url('../img/key-solid.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuEmailChange, .mnuEmailChange a:hover
{
    background-image: url('../img/mail.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuWhatsNew, .mnuWhatsNew a:hover
{
    background-image: url('../img/new.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuRefGuide, .mnuRefGuide a:hover
{
    background-image: url('../img/book-open-bookmark.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuLanguage, .mnuLanguage > a:hover
{
    background-image: url('../img/locale.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuComments, .mnuComments > a:hover
{
    background-image: url('../img/stickyNotePencil.png');
    background-repeat: no-repeat;
    background-position: 5px center;
}
.mnuLanguage > a
{
    padding-left: 25px;
}
/* Style of the info/error message area on the standard frame. */
.ErrorIcon
{
    background-image: url("../img/Warning.png"); /* TODO: Create error icon. */
    background-repeat: no-repeat;
    background-position: top left;
}
.WarningIcon
{
    background-image: url("../img/Warning.png");
    background-repeat: no-repeat;
    background-position: top left;
}
.InfoIcon
{
    background-image: url("../img/Info.png");
    background-repeat: no-repeat;
    background-position: top left;
}
#MessageMsg
{
    min-height: 30px;
    padding-left: 50px;
    vertical-align: middle;
    margin-left: 10px;
    margin-bottom: 5px;
    padding-top: 12px;
}
#MessageMsgText
{
    font-weight: bold;
}
#MsgMoreInfoMsg
{
    margin-top: 10px;
    margin-right: 10px;
}
.MsgMoreInfo
{
    display: none;
}
.MsgLessInfo
{
    display: inline-block;
}

/* Style of the page content container and the page titles */
#PageContent
{
    clear: left;
    margin-left: 0.5%;
    margin-right: 0.5%;
}

#PageTitle
{
    font-size: 1.5em;
    font-weight: bold;
}
#PageSubTitle
{
    padding: .5em 1.5em 1em;
}
#PageSubTitle span
{
    font-weight: bold;
}

/* Paging Navigator styling */
#pagingNavigator
{
    margin-top: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#pagingNavigatorSummary
{
    font-size: small;
    font-weight: bold;
    margin: 5px 20px;
}
#PagingNavigatorPages
{
    font-size: small;
    margin: 5px 20px;
}
#PagingNavigatorPages span
{
    font-weight: bold;
    margin-left: 5px;
}
#PagingNavigatorPages a
{
    margin-left: 5px;
}


/* Footer styling */
#FooterPadding
{
    clear: both;
}
/* overflow:hidden is required here to allow the background-color of the outer div to affect the inner ones. */
#Footer
{
    overflow: hidden;
    margin: 5px auto 10px;
    font-size: 14px;
    background: #002d73; /* Old browsers */	
}

.borderradius #Footer
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
.cssgradients #Footer
{
    background: #002d73; /* Old browsers */
	background: -moz-linear-gradient(top,  #002d73 0%, #094fa3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002d73), color-stop(100%,#094fa3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #002d73 0%,#094fa3 100%); /* W3C */
	/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002d73', endColorstr='#094fa3',GradientType=0 ); /* IE6-9 */

}
.boxshadow.rgba #Footer
{
    -moz-box-shadow: 2px 2px 2px rgba(0,0,0,.75);
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.75);
    box-shadow: 2px 2px 2px rgba(0,0,0,.75);
}
.flexbox #Footer
{
    justify-content: space-between;
    flex-wrap: wrap;
}
.no-cssgradients #Footer, .no-js #Footer
{
    padding-bottom: 4px;
    border: none;
}

#Footer div
{
    padding-left: 10px;
    padding-right: 10px;
    color: #eee;
    padding-top: 3px;
    padding-bottom: 3px;
}
#FooterTerms
{
    clear: both;
    margin-left: 20px;
    font-size: xx-small;
}
.legal
{
    font-size: xx-small;
    text-decoration: none;
    color: blue;
}
/* General Class Styles */
.oddRow
{
    background-color: rgb(241, 244, 248);
    padding-bottom: 5px;
}
.evenRow
{
    background-color: rgb(226, 234, 241);
    padding-bottom: 5px;
}

.wrappingFlexContainer
{
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-wrap: wrap;
    flex-flow: row wrap;
    -webkit-flex-direction: row;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: wrap;
}
/* This is sized so that one can fit across at 320px width.  NOTE: Many flex items will need to have their own min-width set using style= */
.wrappingFlexItem
{
    margin-left: 1%;
    min-width: 260px;
}

/* Takes care of flexbox simulation for <IE10 */
.no-flexbox .wrappingFlexContainer
{
    display: table;
    width: 100%;
}

.no-flexbox .wrappingFlexItem
{
    display: table-cell;
    float: left;
    max-width: 101%;
    margin-left: 1%;
    min-width: 260px;
}

.borderradius .oddRow, .borderradius .evenRow
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.TabLabel
{
    text-align: right;
}
.TabNumber
{
    text-align: right;
}

.tel, .tel:visited
{
    color: #ffffff;
}

.button, input[type=submit]
{
    padding: 6px;
    background: #002d73; /* Old browsers */
	background: -moz-linear-gradient(top,  #002d73 0%, #094fa3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002d73), color-stop(100%,#094fa3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #002d73 0%,#094fa3 100%); /* W3C */
	/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002d73', endColorstr='#094fa3',GradientType=0 ); /* IE6-9 */
    -webkit-appearance: none; /* gets rid of default appearance in Webkit browsers*/
    -moz-appearance: none; /* Get rid of default appearance for older Firefox browsers */
    -ms-appearance: none; /* get rid of default appearance for IE8, 9 and 10*/
    appearance: none;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 0.5px solid #54616E;
    color: white;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
}



.no-cssgradients.boxshadow .button
{
    box-shadow: none;
}

.groupBox
{
    background: rgb(241, 244, 248); /* Old browsers */
    border:solid 1px gray;
    box-shadow: 1px 1px 1px rgba(0,0,0,.75);
}
   
.roundedCorners
{
    -webkit-appearance: none; /* gets rid of default appearance in Webkit browsers*/
    -moz-appearance: none; /* Get rid of default appearance for older Firefox browsers */
    -ms-appearance: none; /* get rid of default appearance for IE8, 9 and 10*/
    appearance: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.styled-option 
{
    font: 12px 'Source Sans 3','Titillium Web';
    color: #222;
    background-color: white;
}


.InstallationHeader 
{
    font: 14px 'Source Sans 3','Titillium Web';
    color: White;
    padding: 7px 10px;
    display: block;
    position: relative;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #002d73; /* Old browsers */
    -moz-box-shadow: 2px 2px 2px rgba(0,0,0,.75);
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.75);
    box-shadow: 2px 2px 2px rgba(0,0,0,.75);
}

.InstallationHeader a
{
    color: White;
    font-size: small;
}

.no-cssgradients.boxshadow .InstallationHeader
{
    box-shadow: none;
}

.cssgradients .InstallationHeader
{
	background: -moz-linear-gradient(top,  #002d73 0%, #094fa3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#002d73), color-stop(100%,#094fa3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #002d73 0%,#094fa3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #002d73 0%,#094fa3 100%); /* W3C */
}

/* NOTE: classes that are specific to a particular element should come after the General Class Styles */
/* Inst summary page styles */
.Installation
{
    clear: both;
}
.InstallationAndTank
{
    clear: both;
}
.InstAddressAndLastReading
{
    max-width: 355px;
    width:355px;
    flex-grow: 1;
}
.no-flexbox .InstAddressAndLastReading
{
    width: auto;
    min-width: 35%; 
}
.ie10.windowsPhone .InstAddressAndLastReading
{
    min-width: 97%;
}
.InstAddress
{
    padding-top: 10px;
    padding-left: 1%;
}
.InstLastReading
{
    padding-left: 1%;
}
.TankList
{
    margin-left: 1%;
}
.TankTitle
{
    font-weight: bold;
}
.TankReadingsWrapper
{
    padding-bottom: 5px;
    flex-grow: 2;
    flex-basis:60%;
}

/*Tank Readings Styles*/
.Tank
{
    margin-top: 8px;
    margin-right:5px;
    max-width: 315px;
}
.no-flexbox .Tank
{
    min-height: 110px;
    width: 300px;
}

/*Trip Info Styles for FillSystem*/
.FillSystemTripInfo {
    border-collapse: collapse;
}
.FillSystemTripInfo td, .FillSystemTripInfo th {
    border: 1px solid #ddd;
    padding: 5px;
}
.FillSystemTripInfo th {
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: left;
    background-color: #004fa3;
    color: white;
}

/*Delivery History page styles*/
.DelvHistcontainerDiv
{
    flex-direction: row;
    justify-content: space-around; /*ie-test*/
    border: 1px solid black; /*min-width: 30em; */
    align-items: center;
    padding-bottom: 5px;
    padding-top: 5px;
    overflow: hidden;
}
.DelvHistcontainerDivfortab
{
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.DelvInstList
{
    float: left;
    max-width: 360px;
    overflow: hidden;
}
.DelvDates
{
    float: left;
    margin: 0;
    align-self: center;
    overflow: hidden;
}
.subbutton
{
    float: left;
    margin: 0;
    min-width: 90px;
    align-self: center;
    overflow: hidden;
}

#instSelect
{
    max-width: 98%;
}

.iphone #InstBox, .ie10 #InstBox, .ie9 #InstBox, .ie8 #InstBox
{
    max-width: 305px;
}

/* Account Information Working Hours Table Styles */

.working
{
    border-right: black 1px solid;
    border-top: black 0px solid;
    font-weight: bold;
    border-left: black 0px solid;
    color: yellow;
    border-bottom: black 1px solid;
    background-color: blue;
}
.workingPartial
{
    border-right: black 1px solid;
    border-top: black 0px solid;
    font-weight: bold;
    border-left: black 0px solid;
    color: yellow;
    border-bottom: black 1px solid;
    background-color: lightblue;
}
.notWorking
{
    border-right: black 1px solid;
    border-top: black 0px solid;
    font-weight: bold;
    border-left: black 0px solid;
    color: black;
    border-bottom: black 1px solid;
    background-color: white;
}

/* Loading Image */
#loadingImage
{
    visibility: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: gray;
    -moz-opacity: 0.60;
    opacity: .60;
    filter: alpha(opacity=60);
    padding: 0px;
}

#loadingImage div
{
    width: 110px;
    height: 110px;
    position: fixed;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -55px;
    margin-left: -55px;
    -moz-opacity: 1.0;
    opacity: 1.0;
    filter: alpha(opacity=100);
    z-index:9999;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;      
}

#loadingImage img
{
    width: 100px;
    height: 100px;
}


/* About Dates Styles */

#aboutDates
{
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1000;
}

#aboutDates div
{
    width: 75%;
    height: auto;
    position: fixed;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -125px;
    margin-left: -37.5%;
    padding:0px;
    -moz-border-radius-topright: 8px;
    -webkit-border-top-right-radius: 8px;
    border-radius-topright: 8px;
    border-top-right-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-radius-bottomright: 8px;
    border-bottom-right-radius: 8px;
    -moz-border-radius-bottomleft: 8px;
    -webkit-border-bottom-left-radius: 8px;
    border-radius-bottomleft: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;    
    
}

@media only screen and (min-width : 400px)
{
    #aboutDates div
    {
        width: 300px;
        margin-left: -150px;
    }
}

.ie9 #aboutDates div, .ie8 #aboutDates div, .ie7 #aboutDates div, .ie6 #aboutDates div, .ie5 #aboutDates div
{
    width: 300px;
    margin-left: -150px;
    border:solid 2px gray;
    padding:0;
}

#aboutDates ul
{
    padding-right: 20px;
    margin-top:-2px;
}

#aboutDates li
{
    text-align: left;
    list-style-type: square;
}
#aboutDates h1.sidebar
{
    font-size: 19pt;
}

.aboutDatesCloseButton
{
    float: right;
    border: solid 1px black;
    padding: 0;
    margin: 4px;
    height: 18px;
}

.ie8 .aboutDatesCloseButton, .ie9 .aboutDatesCloseButton
{
    position:absolute;
    border: solid 1px black;
    padding: 0;
    margin: 4px;
    height: 18px;
    left:275px;
}

.ie7 .aboutDatesCloseButton
{
	height:20px;
}


.ie10 #buttonbox, .ie9 #buttonbox, .ie8 #buttonbox, .ie7 #buttonbox, .ie6 #buttonbox, .ie5 #buttonbox
{
    margin-top: 10px;
}
.ie10 #MailShotDiv, .ie9 #MailShotDiv, .ie8 #MailShotDiv, .ie7 #MailShotDiv, .ie6 #MailShotDiv, .ie5 #MailShotDiv
{
    margin-left: 28%;
}
.ie10.windowsPhone #MailShotDiv
{
    margin-left: 1%;
}
.ie10 #InstInfobox, .ie9 #InstInfobox, .ie8 #InstInfobox, .ie7 #InstInfobox, .ie6 #InstInfobox, .ie5 #InstInfobox
{
    padding-top: 10px;
}

/* Classes for auto-sizing the graph image. */
.autoSizeImage
{
    width: 100%; /* you can use % */
    max-width: 700px;
    height: auto;
}
.origSizeImage
{
    float: right;
}

/* Classes used for Channel Detail */
.telemetryDatalabel
{
    font-weight: bold;
    font-size: 11pt;
    color: black;
    font-family: 'Source Sans 3','Titillium Web';
    text-align: right;
    text-decoration: none;
    height: 100%;
}
.telemetryDataText
{
    font-size: 11pt;
    color: black;
    font-family: 'Source Sans 3','Titillium Web';
    text-align: left;
    width: 70%;
    height: 100%;
}
.telemetryBlockTitle
{
    font-family: 'Source Sans 3','Titillium Web';
    font-size: 17px;
    font-weight: bold;
    padding: 8px;
    text-align: center;
}
.telemetryFlexContainer
{
    margin: auto;
    max-width: 58em;
}
.telemetryFlexItem
{
    margin: auto;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
}
.telemetrySelectBox
{
    width: 150px;
}
/* Classes for a table with a full inner and outer border. */
.fullTableBorder
{
    border: 1px solid black;
}
.fullTableBorder td, .fullTableBorder th
{
    border: 1px solid black;
}

.noTableBorder
{
    border: none;
}

.noTableBorder td, .noTableBorder th
{
    border: none;
}

.frmErrMsg
{
    font-weight: bold;
    font-size: 9pt;
    color: red;
}

.frmWrnMsg
{
    font-weight: bold;
    font-size: 9pt;
    color: blue;
}

.frmlbl
{
    font-weight: bold;
    font-size: 9pt;
    color: black;
    text-align: right;
}
.frmlblw
{
    font-weight: bold;
    font-size: 9pt;
    color: white;
    text-align: right;
}
/* Format for captcha control. */
.dxcaControl
{
    padding: 0;
}


/* Dave's Fancy Box */
.sidebar
{
    font-family: 'Source Sans 3','Titillium Web';
    font-weight: normal;
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 0px;    
    margin-left: 0px;
    background: #F1F6F9;
    box-shadow: 5px 5px 2px #888888;
}
h1.sidebar
{
    font-size: 25pt;
    color: white;
    margin-bottom: 0px;
    background: rgb(249,198,103); /* Old browsers */
	background: #f79621; /* Old browsers */
	background: -moz-linear-gradient(top,  #f79621 0%, #f9c667 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f79621), color-stop(100%,#f9c667)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f79621 0%,#f9c667 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f79621 0%,#f9c667 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f79621 0%,#f9c667 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f79621 0%,#f9c667 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f79621', endColorstr='#f9c667',GradientType=0 ); /* IE6-8 */
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    border-radius-topright: 8px;
    border-radius-topleft: 8px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}
h2.sidebar
{
    color: #185791;
    font-size: 13pt;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 0px;
}
p.sidebar
{
    color: black;
    font-size: 11pt;
    max-width: 280px;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}
p.sidebar:last-of-type
{
    padding-bottom: 20px;
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-radius-bottomright: 8px;
    border-radius-bottomleft: 8px;
}
ul.sidebar
{
    color: black;
    font-size: 11pt;
    max-width: 280px;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-radius-bottomright: 8px;
    border-radius-bottomleft: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
li.sidebar
{
    box-shadow: none;
}
li.sidebar:last-of-type
{
    box-shadow: none;
    padding-bottom: 20px;
}
.ie10.windowsPhone #Instboxdiv
{
    width: 310px;
}

/*Admin page styles*/
.delvRoundedCorners
{
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
/*Header Row for DR,LR, Tank Maintainence and Std Conversion tables*/
.headerRow
{
  background-color:#094fa3;
  color:#eee;
}
@media screen
{
	#CustOrderImg
    {
    	align:left;
    	text-align:left;
    }
}
@media print
{
    .backButton
    {
        visibility: hidden;
    }
    #CustOrderImg
    {
    	align:center;
    	text-align:center;
    }
}
.WhatsNewList li
{
    font-size: 1em;
    margin-left: 15px;
	margin-top: .75em;
}
.mobile #CustPrintButton
{
	visibility:hidden;
	width:0px;
	padding:0px;
}