* {
    margin:0;
    padding:0;
}

/** General Style Info **/
body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
    font-family: 'lucida grande',verdana,helvetica,arial,sans-serif;
    font-size: 90%;
    margin: 0 auto;
    width: 980px;
}

a img {
    border:none;
}




/** Layout **/
#container {
    text-align: left;
}

#header {

}
#header h1 {
    line-height:20px;
    background: #003d4c url('../img/cake.icon.png') no-repeat left;
    color: #fff;
    padding: 0px 30px;
}
#header h1 a {
    color: #fff;
    background: #003d4c;
    font-weight: normal;
    text-decoration: none;
}
#header h1 a:hover {
    color: #fff;
    background: #003d4c;
    text-decoration: underline;
}
#content{
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #CCCCCC;
    clear: both;
    color: #333333;
    overflow: auto;
    padding: 0;
}


/** containers **/
div.form,
div.index,
div.view {
    float:right;
    width:76%;
    border-left:1px solid #666;
    padding:10px 2%;
}
div.actions {
    float:left;
    width:16%;
    padding:10px 1.5%;
}
div.actions h3 {
    padding-top:0;
    color:#777;
}


/** Tables **/
table {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #DDDDDD;
    clear: both;
    color: #4F637C;
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: 15px;
    width: 100%;
}
th {
    border:0;
    border-bottom:2px solid #555;
    text-align: left;
    padding:4px;
}
th a {
    display: block;
    padding: 2px 4px;
    text-decoration: none;
}
th a.asc:after {
    content: ' â‡£';
}
th a.desc:after {
    content: ' â‡¡';
}
table tr td {
    background: #fff;
    padding: 6px;
    text-align: left;
    vertical-align: top;
    border-bottom:1px solid #ddd;
}
table tr.last td {
    border-bottom:0;
}
table tr td.alignright {
    text-align: right;
}



table tr:nth-child(2n) td {
    background: #f5f5f5;
}
table .altrow td {
    background: #f5f5f5;
}
td.actions {
    text-align: center;
    white-space: nowrap;
}
table td.actions a {
    margin: 0px 6px;
    padding:2px 5px;
}
.cake-sql-log table {
    background: #f4f4f4;
}
.cake-sql-log td {
    padding: 4px 8px;
    text-align: left;
    font-family: Monaco, Consolas, "Courier New", monospaced;
}
.cake-sql-log caption {
    color:#fff;
}

/** Paging **/
div.paging {
    background:#fff;
    color: #ccc;
    margin-top: 1em;
    clear:both;
}
div.paging span.disabled {
    color: #ddd;
    display: inline;
}
div.paging span.current {
    color: #c73e14;
}
div.paging span a {
}

/** Scaffold View **/
dl {
    line-height: 2em;
    margin: 0em 0em;
    width: 60%;
}
dl .altrow {
    background: #f4f4f4;
}
dt {
    font-weight: bold;
    padding-left: 4px;
    vertical-align: top;
}
dd {
    margin-left: 10em;
    margin-top: -2em;
    vertical-align: top;
}

/** Forms **/

/** Notices and Errors **/
div.message {
    clear: both;
    color: #fff;
    font-size: 140%;
    font-weight: bold;
    margin: 0 0 1em 0;
    background: #c73e14;
    padding: 5px;
}

.notice {
    background: #ffcc00;
    color: #000;
    display: block;
    font-family: Courier, monospace;
    font-size: 120%;
    line-height: 140%;
    padding: 0.8em;
    margin: 1em 0;
}
.success {
    background: green;
    color: #fff;
}

/**  Actions  **/
div.actions ul {
    margin: 0;
    padding: 0;
}
div.actions li {
    margin:0 0 0.5em 0;
    list-style-type: none;
    white-space: nowrap;
    padding: 0;
}
div.actions ul li a {
    font-weight: normal;
    display: block;
    clear: both;
}
div.actions ul li a:hover {
    text-decoration: underline;
}

input[type=submit],
div.actions ul li a,
td.actions a {
    font-weight:normal;
    padding: 4px 8px;
    background:#e6e49f;
    background: -webkit-gradient(linear, left top, left bottom, from(#f1f1d4), to(#e6e49f));
    background-image: -moz-linear-gradient(top, #f1f1d4, #e6e49f);
    color:#333;
    border:1px solid #aaac62;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    text-decoration:none;
    text-shadow: #fff 0px 1px 0px;
    min-width: 0;
}
input[type=submit]:hover,
div.actions ul li a:hover,
td.actions a:hover {
    background: #f0f09a;
    background: -webkit-gradient(linear, left top, left bottom, from(#f7f7e1), to(#eeeca9));
}

/** Related **/
div.related {
    clear: both;
    display: block;
}

/** Debugging **/
pre {
    color: #000;
    background: #f0f0f0;
    padding: 1em;
}
pre.cake-debug {
    background: #ffcc00;
    font-size: 120%;
    line-height: 140%;
    margin-top: 1em;
    overflow: auto;
    position: relative;
}
div.cake-stack-trace {
    background: #fff;
    color: #333;
    margin: 0px;
    padding: 6px;
    font-size: 120%;
    line-height: 140%;
    overflow: auto;
    position: relative;
}
div.cake-code-dump pre {
    position: relative;
    overflow: auto;
}
div.cake-stack-trace pre, div.cake-code-dump pre {
    color: #000;
    background-color: #F0F0F0;
    margin: 0px;
    padding: 1em;
    overflow: auto;
}
div.cake-code-dump pre, div.cake-code-dump pre code {
    clear: both;
    font-size: 12px;
    line-height: 15px;
    margin: 4px 2px;
    padding: 4px;
    overflow: auto;
}
div.cake-code-dump span.code-highlight {
    background-color: #ff0;
    padding: 4px;
}
div.code-coverage-results div.code-line {
    padding-left:5px;
    display:block;
    margin-left:10px;
}
div.code-coverage-results div.uncovered span.content {
    background:#ecc;
}
div.code-coverage-results div.covered span.content {
    background:#cec;
}
div.code-coverage-results div.ignored span.content {
    color:#aaa;
}
div.code-coverage-results span.line-num {
    color:#666;
    display:block;
    float:left;
    width:20px;
    text-align:right;
    margin-right:5px;
}
div.code-coverage-results span.line-num strong {
    color:#666;
}
div.code-coverage-results div.start {
    border:1px solid #aaa;
    border-width:1px 1px 0px 1px;
    margin-top:30px;
    padding-top:5px;
}
div.code-coverage-results div.end {
    border:1px solid #aaa;
    border-width:0px 1px 1px 1px;
    margin-bottom:30px;
    padding-bottom:5px;
}
div.code-coverage-results div.realstart {
    margin-top:0px;
}
div.code-coverage-results p.note {
    color:#bbb;
    padding:5px;
    margin:5px 0 10px;
    font-size:10px;
}
div.code-coverage-results span.result-bad {
    color: #a00;
}
div.code-coverage-results span.result-ok {
    color: #fa0;
}
div.code-coverage-results span.result-good {
    color: #0a0;
}


h1, h2, h3, h4, h5 {
    font-family: NewBTRegular,Tahoma,Arial,Verdana;
    font-weight: normal;
}


/*error bits*/
label { width: 10em; float: left; }
label.error {
    background: none repeat scroll 0 0 transparent !important;
    color: red !important;
    vertical-align: top;
}
label.error div {
    margin-left: 10px;
}

.submit { margin-left: 23em; }
em { font-weight: bold; padding-right: 1em; vertical-align: top; }


/*logo*/
#logo {
    margin: 0 10px 0 0;
    padding: 0;
}



#logo-image {
}

img {
    border: 0 none;
    outline: medium none;
}


.bartop{background:#dddddd; overflow:hidden; padding:5px;}
.bartop ul{margin:0; padding:0;}
.bartop ul li{margin-right:5px; float:left; list-style-type:none;}


.mainhead {overflow:hidden;}
.mainhead #logo {
    float: left;
    width: 300px;
}
.mainhead .panel {
    float: right;
}
.mainhead .panel ul{margin:0; padding:0; overflow:hidden;}
.mainhead .panel ul li{margin-right:5px; float:left; list-style-type:none;}



#PostSearchForm fieldset legend {display:none;}
#PostSearchForm fieldset {border:0;}
#PostSearchForm label {display:none;}
#PostSearchForm input {width:100px;}
#PostSearchForm .input{width:100px; float:left;}
#PostSearchForm .submit {
    clear: none;
    float: right;
    margin: 0;
    padding: 0;
    width: 100px;
}

/*
#submissionform fieldset legend {display:none;}
#submissionform fieldset {border:0;}
#submissionform {overflow:hidden;}
#submissionform label {
    border: 1px solid;
    float: left;
    width: 186px;
}
#submissionform input {
    border: 1px solid #000000;
    clear: none;
    float: left;
    width: 100px;
}
#submissionform input#SubmissionADSLNumber {width:300px;}
#submissionform .input {
    float: left;
    width: 530px;
}
#submissionform .submit {
    clear: none;
    float: right;
    margin: 0;
    padding: 0;
    width: 100px;
}
*/

.smallfont {font-size:11px; color:#999999;}

#frm-ClaimOfferTop, frm-ClaimOfferBottom {
    clear: both;
    height: 100px;
    margin: 0;
    padding: 0;
    width: auto;
}

#frm-ClaimOffer {
    background: none !important;
    clear: both;
    width: 623px!important;
    position: relative;
}

#frm-ClaimOffer fieldset {
    border: 0 none;
    margin: 0!important;
    padding-bottom: 15px;
}

#frm-ClaimOffer-fields {
    border: 0 none !important;
    padding: 0;
    margin-top: 62px;
}

#frm-ClaimBody h4 {
    color: #3B0864;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 15px;
    margin-top: 15px;
}

#frm-ClaimBody ul {

}
#frm-ClaimBody ul li {
    list-style: disc outside none;
    margin-left: 15px;
}

.contentcopy{margin-top: 62px;  overflow: hidden;}

.formfield label{
    clear: both;
    float: left;
    text-align: left;
    width: 225px !important;
    color: #666666;
    font-family: Tahoma,Arial,Verdana!important;
    font-size: 12px!important;
    line-height: 19px!important;
}
.formfield input{
    float: left !important;
    text-align: left !important;
    width: auto !important;
}

.formfield input.error {background:none repeat scroll 0 0 #FFFFFF!important;}

.pod{overflow:hidden; background:grey; padding:5px; margin-bottom:10px;}
.pod .copy{float:left;}
.pod .image{float:right; width: 100px;}

.saveMoney.lastitem{  margin-bottom: -2px;}

.saveMoney .top {
    background: url("../img/topwhitebox.png") no-repeat scroll 0 0 transparent;
    height: 18px;
    width: 282px;
}
.saveMoney .mid {
    background: url("../img/midwhitebox.png") repeat-y scroll 0 0 transparent;
    overflow: hidden;
    padding: 10px;
    width: 260px;
}
.saveMoney .bottom {
    background: url("../img/bottomwhitebox.png") no-repeat scroll 0 0 transparent;
    height: 76px;
    margin-top: -63px;
    width: 282px;
}




.saveMoney {
    margin-bottom: 30px;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    width: 282px;
}
.saveMoney .copy {
    float: right;
    font-size: 12px;
    padding-bottom: 26px;
    position: relative;
    width: 195px;
}
.saveMoney .image{float:left; width: 56px;}
.saveMoney .copy h3 {
    font-size: 18px;
    line-height: 19px;
    margin: 0 0 8px;
}
.saveMoney .copy h3.green.final span{
    background: url("../img/arrowsgreen.png") no-repeat scroll right 50% transparent;
    padding-right: 15px;
}
.saveMoney .copy h3.pink.final span{
    background: url("../img/arrowspink.png") no-repeat scroll right 50% transparent;
    padding-right: 15px;
}

.saveMoney .find{bottom:0;  position: absolute;}

h3.pink{color:#b92c76;}
h3.green{color:#53a355;}

/*navigation*/
ul.navigation {margin:0; padding:0; overflow:hidden;}
ul.navigation li{float:left; margin-right:10px; background:none repeat scroll 0 0 #DDDDDD;  list-style-type: none; padding:5px; border: 1px solid #000000;}
ul.navigation li a{color:#000000;}

ul.navigation li.active {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #000000;
}
ul.navigation li.active a{color:#000000;}


.bluepod {overflow:hidden; margin-top: 13px;}
.bluepod .bluepodtop h2{
    color:#ffffff;
    font-size:24px;
}
.bluepod .bluepodtop{
    background: url("../img/topbluebox.png") no-repeat scroll 0 0 transparent;
    float: left;
    height: 84px;
    padding-left: 10px;
    padding-right: 10px;
    width: 280px;
    margin-bottom:-22px;
}
.bluepod .bluepodmid{
    background: url("../img/midbluebox.png") repeat-y scroll 0 0 transparent;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 280px;
}
.bluepod .bluepodbottom{
    background: url("../img/bottombluebox.png") no-repeat scroll 0 0 transparent;
    float: left;
    height: 19px;
    width: 300px;
}


h3.reducelinepink{background: url("../img/reducelinerental.jpg") no-repeat scroll 0 0 transparent; height: 35px; width: 179px;}
h3.reducelinepink span{display:none;}

h3.getunlimited{background: url("../img/getunlimitedukcalls.jpg") no-repeat scroll 0 0 transparent; height: 37px; width: 158px;}
h3.getunlimited span{display:none;}

h3.reducelinegreen{background: url("../img/reduceyourlinerental.jpg") no-repeat scroll 0 0 transparent; height: 34px; width: 178px;}
h3.reducelinegreen span{display:none;}




.rainbowpod {overflow:hidden;}
.rainbowbox {
    background: url("../img/rainboxbox.jpg") no-repeat scroll 0 0 transparent;
    height: 145px;
    width: 270px;
}
.rainbowbox .copy {
    color:#ffffff;
    font-size: 13px;
    height:140px;
}

.greenbox {
    background: url("../img/greenboxbox.jpg") no-repeat scroll 0 0 transparent;
    height: 145px;
    width: 270px;
}
.greenbox .copy {
    color:#ffffff;
    height:auto;
    font-size: 13px;
    height:140px;
}
.greenbox .phone {
    bottom: 20px;
    color: #FFFFFF;
    font-size: 40px;
    position: absolute;
    width: 272px;
}

#frm-ClaimBody{
    background: url("../img/section.png") repeat-y scroll 0 0 transparent;
    padding-left: 30px;
    padding-right: 30px;
}

.frm-elem{
margin-top:5px;
}

#LoginAccountNumber{}

h5 {
    font-size: 12px !important;
}

.containerwrap h1 {
    color: #FFFFFF;
    font-size: 31px;
    left: 38px;
    letter-spacing: -1.6px;
    line-height: 38px;
    position: absolute;
    top: 17px;
}

.containerwrap {
    background: url("../img/topadvert.jpg") no-repeat scroll 0 0 #E4E4E4;
    overflow: hidden;
    padding: 150px 21px 13px;
    position:relative;
}
.containerwrap .topcontainer {
    background: none repeat scroll 0 0 #FFFFFF;
    float: left;
    margin-bottom: 20px;
    padding: 10px;
    width: 880px;
}
.containerwrap .bottomcontainer {float:left;width:935px; overflow:hidden;}
.containerwrap .bottomcontainer .left {
    float:left;
    padding: 0;
    width: 623px;
    overflow:hidden;
    margin-top:9px;
    color:#646464;
}
.containerwrap .bottomcontainer .right {
    float: right;
    width: 300px;
}

a.nodecor{text-decoration:none!important;}

.anyquestions{
    background: url("../img/anyquestions.png") no-repeat scroll 0 0 transparent;
    height: 95px;
    margin-bottom: 10px;
    padding: 5px 10px 10px;
    width: 286px;
    display:block;
    cursor:pointer;
}
.anyquestions h3 {
    font-size: 23px;
    line-height: 23px;
    margin: 0;
    padding-top: 20px;
}
h3.white {color:#ffffff;}
h3.white.final span{
    background: url("../img/arrowswhite.png") no-repeat scroll right 50% transparent;
    font-size: 20px;
    padding-right: 18px;
}

#frm-ClaimBody input[type="submit"] {
    background: url("../img/viewyournewchanges.jpg") no-repeat scroll 0 0 transparent;
    border: 0 none;
    border-radius: 0 0 0 0;
    font-size: 0;
    font-weight: normal;
    height: 24px;
    min-width: 0;
    padding: 0;
    text-decoration: none;
    line-height:0;
    color:transparent!important;
    text-indent:-9999px;
    position:absolute;
    width: 178px;
    cursor:pointer;
}

.phonebold {font-size: 22px;}

.breakbar{
    background: url("../img/dottedline.jpg") repeat scroll 0 0 transparent;
    border: 0 none;
    height: 2px;
    margin-bottom: 17px;
    margin-top: 17px;
    padding: 0;
    width: 555px;
}
.securecopy {
    overflow:hidden;
}
.securecopy .lock{float:left; width:56px;}
.securecopy .copy {
    float: right;
    padding-right: 8px;
    width: 462px;
}

.left h3 {
    color: #B92C76;
    font-size: 16px;
    font-weight: bold;
    margin: 6px 0 0 -3px;
    position: absolute;
    top: 13px;
    left: 34px;
}

.more span {padding-right:10px; background: url("../img/findmore.jpg") no-repeat scroll right 50% transparent;}
h5 {color:#333333;}
#wraphead {overflow:hidden; height:142px;}

.error {
    color: red;
    background: none repeat scroll 0 0 transparent !important;
}

/*recaptcha*/
#recaptcha_response_field.highlight{border:2px solid #9CB7D0 !important;}

.captcha {overflow:hidden; float:left;}
.captcha .captchainfo{
    width: 225px !important;
    float:left;
}
.captcha label {
    clear: both !important;
    color: #666666 !important;
    float: left !important;
    font-family: Tahoma,Arial,Verdana !important;
    font-size: 12px !important;
    line-height: 19px !important;
    text-align: left !important;
    width: 100%;
}
.captcha .captchaerror {
    float: left;
    font-size: 12px;
    width: 100%;
    background:none;
}
.captcha .recaptchacaptcha {
    clear: none;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    width: 318px;
}
#recaptcha_widget_div, #recaptcha_area{padding: 0;}

.terms {
    float: left;
    margin-bottom: 15px;
    margin-top: 25px;
}

.recaptchatable #recaptcha_response_field {left:0!important;}

/* Colorbox fragments styles */

/*#cboxLoadedContent{
    width: 550px;
}*/

#cboxLoadedContent .lightbox_container {
     width: 600px;
}

    #cboxLoadedContent .lightbox_container h2{
        margin:0;
        border: 0;
        font-size: 2em
    }

    #cboxLoadedContent .lightbox_container ul, #cboxLoadedContent .lightbox_container li{
    list-style: inside disc;
}

#cboxLoadedContent .lightbox_container p.order{
    font-size: 1.75em;
}
