body {
	position:relative;
	font: 100%/1.4 Arial, Helvetica, sans-serif;

	padding: 0;
	color: #666;
	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

li {
	margin-bottom:18px;
	
	}

h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a {
	text-decoration: none;
	color:#999;
	}	
	
a:visited {
	color: #999;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 1000px;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	min-height: 700px;
}

h1 {
	text-align:center;
	font-weight:bold;
	font-size:48px;
	color:#1F4C7C;
	margin-top: 66px;
	letter-spacing:-3px;
	line-height: 30px;
}

h2 {
	text-align:center;
	font-weight:bold;
	font-size:37px;
	color:#6F91B1;
	letter-spacing:-2px;
	line-height: 16px;
	padding-top: 30px;
}

h4 {
	text-align:left;
	font-weight:bold;
	font-size:18px;
	color:#999;
	letter-spacing:-1px;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	
	width: 834px;
	margin: 0, auto;
	padding: 50px 50px;
	
 	border-left:2px solid #CCC;
	border-right:2px solid #CCC;
	border-bottom:2px solid #CCC;
	border-bottom-left-radius: 40px;
	-moz-border-bottom-left-radius: 40px;
	-webkit-border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	-moz-border-bottom-right-radius: 40px;
	-webkit-border-bottom-right-radius: 40px;

	background-image: url(../images/paybills/ColumnBk.png);
	background-position: left bottom;
	background-repeat:no-repeat;
}

#header{
	padding-top: 90px;
	background-image:url(../images/paybills/topHdr.png);
	background-repeat:no-repeat;
	width:1000;
	height: 50px;
	
	
	}

#exist {
	width: 380px;
	}
#new {
	float:right;
	width: 380px;
	}	



#footer p {
	padding-right:70px;
	padding-left: 0;
	padding-top: 12px;
	text-align:center;
	font-size:12px;
	color: #666666;
	}
	
#footer p a {
	text-decoration: none;
	color: #666666;
	}	

#footer p a:hover, a:active, a:focus {
	text-decoration:underline;
	color:#666666;
	}	


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

behavior: url(PIE.htc);
/* below css copied from ebill.css*/
.blueText {
	color: #276385 !important;
}
.largeBlueText {
	color: #276385;
	font-size: 130%;
}
.footer
{
    height:60px;
}
/* buttons start */
.btn 
{
    background: url('../images/paybills/contBtn.png') no-repeat 100% 50% padding-box; 
    height: 32px;
    font-family: Arial, Helvetica, sans-serif;
	font-size: 18px; 
	font-weight: bold; 
	color:#fff;
	border:0;
	padding-left:110px;
	padding-right:52px;
	cursor: pointer;
}
.btn-lightblue 
{
    background: url('../images/ebill/button_lightblue.gif') no-repeat 100% 50% padding-box; 
}
/* buttons end */


/* input elements start */
input[type="text"], input[type="password"], select 
{ 
    width:245px;
    height: 32px;
    margin: 0; 
    font: inherit;
    font-size:14px; 
    color:#000;
    box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    
    padding: 4px 6px;
    background-color: #ffffff;
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #007196;
    border-bottom: 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;
    
    -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
            border-radius: 3px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}

select 
{ 
    min-width:100px; 
    padding: 4px 3px;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  /*outline: thin dotted \9;*/
  /* IE6-9 */

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* input required */
.required, .confirminput { border-left-width: 6px !important; }

input:focus:required:invalid,
textarea:focus:required:invalid,
select:focus:required:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

input:focus:required:invalid:focus,
textarea:focus:required:invalid:focus,
select:focus:required:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
     -moz-box-shadow: 0 0 6px #f8b9b7;
          box-shadow: 0 0 6px #f8b9b7;
}
input.watermark {
    color: #888888;
}
input.error 
{
    border: 1px solid #bd1a00;
}
select.error
{
    color:#000;
    font-size:14px;
    font-weight:normal;
}
/* input elements end */

/* forms start */
fieldset {
    margin: 0;
    padding: 0px;
    border:0px;
    width:auto;
}
.fieldsetinline
{
    display:inline;
}
fieldset legend
{
    margin: 0;
    padding: 0px;
	color: #276385;
	font-size: 21px;
	font-weight:bold;
	font-style:italic;
}
fieldset .subheader
{
    padding-top:20px;
    color:#333;
}
fieldset .subalert
{
    padding:20px 0 0 40px;
    font-size:14px;
}
fieldset .subalert, .error {
    color:#bd1a00;
    font-weight: bold;
}
.error
{
    font-size:11px;
    display:inline;
}
fieldset ul 
{
    margin:0;
    padding:20px 0 0 40px;
    list-style: none;
}
    
fieldset li {
    padding-bottom: 15px;
    width: 100%;
}
fieldset label 
{
    display: block;
    padding-bottom:3px;
    font-size:14px;
    color:#333;
}
fieldset .subinfo label
{
    display: inline;
}
fieldset .subinfoheader
{
    color:#666;
    font-size:16px;
    font-weight:bold;
}
fieldset .subinfoheader
{
}
fieldset .subinfotext
{
}
fieldset .subaction
{
    padding-top:15px;
}
fieldset .subdisclaimer label
{
    color:#666;
    font-size:14px;
}
fieldset .subdisclaimeralert label
{
    color:#276385;
    font-size:13px;
    font-weight:bold;
}
fieldset .subtextarea
{
    color:#666;
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
    padding:4px;
    resize: none;
}
#subinfoterms label
{
    font-size:14px;
}
.accdsection
{
    padding-top:20px;
    /*width:784px;*/
}
.accdsection ul
{
    padding:0 0 0 0;
    margin:0 0 0 0;
}
.accdsectionheader
{
    line-height:36px;
    height:36px;
    vertical-align:middle;
    border:1px solid #d8e3ea;
    background:#efefef url('../images/ebill/sectioncollapse.gif') no-repeat 10px 7px;
    padding:0 0 0 40px;
    cursor:pointer;
    color:#255f8d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight:normal;
    margin:6px 0 0 0;
    outline:none;
}
.ui-accordion-header-active
{
    background:#255f8d url('../images/ebill/sectionexpand.gif') no-repeat 10px 7px;
    color:#c2d4e0;
}
.accdsectioncontent
{
    background-color:#efefef;
    padding:10px 40px 20px 40px;
}
.accdsectioncontent a
{
    color:#333;
    text-decoration:none;
    font-size:14px;
}
.validationcontainer
{
    position:relative;
}
.helpcontainer
{
    padding:6px 20px 8px 19px; 
    background:#fff; 
    border:2px solid #d9d9d9;
    z-index:99999;
    width:300px;
    font-size:13px;
    position:absolute;
}
.helpheader
{
    color:#276385;
}
.helpcontainer ul, .helpcontainerinline ul
{
    padding:0 0 0 40px;
    list-style-type:disc;
}
.helpcontainer li, .helpcontainerinline li 
{
    padding:0;
}
.helpcontainerinline 
{
    font-size:13px;
}
/* forms end */

/* breadcrumbs start */
nav.breadcrumb {
    margin-top: 40px;
    overflow: hidden;
}

div.breadcrumb {
    margin-top: 0px;
    margin-bottom: 30px;
    overflow: hidden;
    width:796px;
}

nav.breadcrumb ol {
    border-bottom: 1px solid #CCCCCC;
    overflow: hidden;
    padding: 0 5px;
    list-style: none outside none;
    margin: 0;
}

div.breadcrumb ol {
    border-bottom: 1px solid #CCCCCC;
    overflow: hidden;
    padding: 0 5px;
    list-style: none outside none;
    margin: 0;
}

nav.breadcrumb ol li {
    float: left;
}

div.breadcrumb ol li {
    float: left;
}

nav.breadcrumb ol li.start {
  margin: 20px 30px 0 0;
}

div.breadcrumb ol li.start {
  margin: 20px 30px 0 0;
}

nav.breadcrumb ol li.tab {
    -moz-transition: all 0.25s linear 0s;
    background-clip: padding-box;
    background-color: #F4F4F4;
    border: 1px solid #CCCCCC;
    border-radius: 8px 8px 0 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.2;
    padding: 8px 20px;
    text-shadow: 1px 1px 0 white;
    text-transform: none;
}

div.breadcrumb ol li.tab {
    -moz-transition: all 0.25s linear 0s;
    background-clip: padding-box;
    background-color: #F4F4F4;
    border: 1px solid #CCCCCC;
    border-radius: 8px 8px 0 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.2;
    padding: 8px 20px;
    text-shadow: 1px 1px 0 white;
    text-transform: none;
    border-bottom:0px;
}

nav.breadcrumb ol li.tab strong {
    color: #666666;
    font-weight: bold;
}

div.breadcrumb ol li.tab strong.active {
    color: #276385;
}

nav.breadcrumb ol li.tab strong.active {
    color: #276385;
}

div.breadcrumb ol li.tab strong {
    color: #666666;
    font-weight: bold;
}

nav.breadcrumb ol li.tab span.pcprogresstext_active strong {
    color: #276385;
}

div.breadcrumb ol li.tab span.pcprogresstext_active strong {
    color: #276385;
}

nav.breadcrumb ol li.start span, nav.breadcrumb ol li.complete span {
   font-size:16px;
   color:#BBBBBB;
   font-weight: bold;
}

div.breadcrumb ol li.start span, div.breadcrumb ol li.complete span {
   font-size:16px;
   color:#BBBBBB;
   font-weight: bold;
}

nav.breadcrumb ol li.start span.pcprogresstext_active,  
nav.breadcrumb ol li.complete span.pcprogresstext_active{
  color:#276385;
}

div.breadcrumb ol li.start span.pcprogresstext_active,  
div.breadcrumb ol li.complete span.pcprogresstext_active{
  color:#276385;
}

nav.breadcrumb ol li.complete span {
  float:right; 
  vertical-align:bottom;
  color:#BBBBBB; 
 
}

div.breadcrumb ol li.complete span {
  float:right; 
  vertical-align:bottom;
  color:#BBBBBB; 
 
}

nav.breadcrumb ol li.complete{
    margin-left: 30px;
    margin-top: 20px;
}

div.breadcrumb ol li.complete{
    margin-left: 30px;
    margin-top: 20px;
}

h1.pay_paymenttext {
  color: black;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

h1.pay_paymenttext span {
  font-weight: bold;
  font-size: 18px;
}

nav.breadcrumb ol li.tab.step1.active, nav.breadcrumb ol li.tab.step2.active, nav.breadcrumb ol li.tab.step3.active{
  background-color: white;
}

div.breadcrumb ol li.tab.step1.active, div.breadcrumb ol li.tab.step2.active, div.breadcrumb ol li.tab.step3.active{
  background-color: white;
}
div.breadcrumb ol li.tab.step1.activeDemo{
  background-color: rgb(244, 244, 244);
}

div.breadcrumb ol li.tab.step1.inactiveDemo{
  background-color: white;
}

/* breadcrumbs end */

/* footer start */
.footertext {font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: Gray !important; text-decoration: none !important;}
.footertext_link_noul {font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: Gray !important; text-decoration: none !important;}
.footertext_link_noul:hover {text-decoration: underline !important; color: #59729D !important;}
.disclaimertext {font-family: Arial,Helvetica,sans-serif; font-size: 11px; color: #AEAEAE !important; text-decoration: none !important;line-height:14px !important;}
/* footer end */

a:hover {}