/**
 *
 * Generic CSS for CakePHP
 *
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @package       cake
 * @subpackage    cake.app.webroot.css
 * @since         CakePHP(tm)
 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 */

* {
	margin:0;
	padding:0;
}

/* Fixed position layout with ie6 fix */
        html,
        body {
            margin: 0px 0px 0px 0px ;
            padding: 0px 0px 0px 0px ;
            }

        #site-body-container {}

        div.fixed-position {
            position: fixed ;
            z-index: 1000 ;
        }

        div.fixed-n-e {
            right: 0px ;
            top: 0px ;
            width: 100%;
        }

        div.fixed-n-w {
            left: 0px ;
            top: 0px ;
        }

        /* -------------------------------------------------- */
        /* -- IE 6 FIXED POSITION HACK ---------------------- */
        /* -------------------------------------------------- */

        html,
        body,
        #site-body-container {
            _height: 100% ;
            _overflow: hidden ;
            _width: 100% ;
        }

        #site-body-container {
            _overflow-y: scroll ;
            _overflow-x: hidden ;
            /*_position: relative ;*/
        }

        div.fixed-position {
            _position: absolute ;
        }

        /* For the scrollbar. */
        div.fixed-n-e,
        div.fixed-e,
        div.fixed-s-e {
            _margin-right: 16px ;
        }


        /* For the scrollbar. */
        div.fixed-n,
        div.fixed-s {
            _margin-left: -83px ;
        }
    /* end ie6 fixed position hack */
/* end Fixed position layout with ie6 fix */

/* keep footer at bottom for modern browsers */
    html,
    body {
        margin:0;
        padding:0;
        height:100%;
    }
    #site-body-container {
        min-height:100%;
        _height: 100%;
        position:relative;
    }
    #content {
        padding:10px;
        padding-bottom:102px;    /* Height of the footer */
    }
    #footer-container {
        position:absolute;
        _position:relative;
        bottom:0;
        width:100%;
        height:102px;            /* Height of the footer */
    }

/** General Style Info **/
@font-face {
    /* Generated by http://www.fontsquirrel.com/fontface/generator */
    font-family: 'BauhausRegular';
    src: url('/fonts/bauhaus-webfont.eot');
    src: url('/fonts/bauhaus-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/bauhaus-webfont.woff') format('woff'),
         url('/fonts/bauhaus-webfont.ttf') format('truetype'),
         url('/fonts/bauhaus-webfont.svg#BauhausRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
	background: url("/img/bg_pattern.gif") #F6F6F6;
	font-family:'lucida grande',verdana,helvetica,arial,sans-serif;
	font-size:11px;
	margin: 0;
    min-width: 800px;
}
a {
	color: #38559E;
	font-weight: bold;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
#footer {height: 90px;}
#footer-inner {
    background: #fff;
    margin-top: 20px;
    padding: 8px;
    float:right;

    /*rounded corners*/
    -moz-border-radius: 3px; /* Firefox */
    -webkit-border-radius: 3px; /* Safari, Chrome */
    border-radius: 3px; /* CSS3 */
}
#footer-inner img {
    padding: 0 5px;
}

a img {
	border:none;
}
h1, h2, h3, h4 {
    font-family:'BauhausRegular','Gill Sans','lucida grande', helvetica, arial, sans-serif;
	font-weight: normal;
	margin-bottom:0.5em;
}
h1 {
	color: #E21831;
    font-size: 190%;
}
h1 a {
	color: #E21831;
    font-weight: normal;
}
h2 {
	color: #888005;
    font-size: 165%;
}
h3 {
	color: #000;
	font-size: 130%;
}
h4 {
	color: #993;
	font-weight: normal;
}
ul, li, ol{
	margin: 0 10px;
}

p {margin-bottom: 10px;}

/** Layout **/
#container {
	text-align: left;
   	position: relative;;
}

.clear {
    clear: both;
}

#top-menu {
    z-index: 10001; /*place menu above debugkit toolbar*/
    color: #FFFFFF;
    min-height: 66px;
    _height: 66px;
    background: #38559e url('/img/top-menu_bg.png') repeat-x top left;

    -moz-box-shadow: 0 5px 4px #000;
    -webkit-box-shadow: 0 5px 4px #000;
    box-shadow: 0 5px 4px #000;
    /* For IE 8 - breaks dropdown menus*/
    /*-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#000000')";*/
    /* For IE 5.5 - 7 - breaks dropdown menus*/
    /*filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color='#000000');*/
}


#top-menu .logo {
    float: left;
    margin-right: 10px;
    margin-left: 20px;
}
#top-menu div.login {
    float:right;
    margin-right: 20px;
    _width: 150px;
}
#top-menu div.menu {
    float: left;
    _width: 600px;
}

#top-menu .login, .menu {
    height: 66px;
}
.login div, .menu div {
    height:33px;
}

#top-menu .top {
    padding-top: 5px;
}
#top-menu a {color: #FFFFFF;}

#top-menu ul.dropdown-horizontal {
    _margin-left: 8px; /* half ie6 scrollbar width */
}
#left-menu {
    width: 10em;
    margin-top: 75px;
}
#left-menu ul.dropdown-vertical {
    /*width: 10em !important;*/
}
#content{
	/*background: #F6F6F6;*/
	color: #333;
	padding: 90px 20px 80px 20px;
}
#footer {
	padding: 6px 20px;
	text-align: right;
    background: #667cb5 url('/img/footer_bg.png') repeat-x top left;
    -moz-box-shadow: inset 0 5px 4px #000;
    -webkit-box-shadow: inset 0 5px 4px #000;
    box-shadow: inset 0 5px 4px #000;
}

/** containers **/
#container {
    text-align: left;
    background: #003d4c;
    position: relative;
}

div.form,
div.index,
div.view {

}
div.actions {

}
div.actions h3 {
	padding-top:0;
	color:#777;
}


/** Tables **/
table {
	background: #fff;
	border-right:0;
	clear: both;
	color: #333;
	margin-bottom: 10px;
    border: 1px solid #ddd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
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:nth-child(2n) td {
	background: #f5f5f5;
}
table .altrow td {
	background: #f5f5f5;
}
table tr:hover td{
    background: #E5F2FF;
}
td.actions {
	text-align: left;
	white-space: nowrap;
}
table td.actions a {
	margin: 0px 6px 0px 0px;
	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 {
	color: #ccc;
	margin-top: 1em;
    margin-bottom: 1em;
	clear:both;
}
div.paging p {
    color: #000;
    margin: 10px 0;
}
div.paging span.disabled {
	color: #ddd;
	display: inline;
}
div.paging span.current {
	color: #c73e14;
}
div.paging span a {
    border: 2px #ddd solid;
    background: #fff;
    padding: 3px 7px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
div.paging span a:hover {
    border: 2px #38559E solid;
    text-decoration: none;
}

/** Scaffold View **/
dl{
    float: left;
    width: 460px;
    margin: 1em 0;
    padding: 0;
}
dl .altrow {
    background: #fff;
}
dt{
    clear: left;
    float: left;
    width: 100px;
    margin: 0;
    padding: 5px;
    font-weight: bold;
}
dd{
    float: left;
    width: 340px;
    padding: 5px;
}
/** Forms **/
form {
	clear: both;
	/*margin-right: 20px;
	padding: 0;
	width: 95%;*/
}
fieldset {
    background:  #f7f9fc; /*url('/img/fieldset_bg.png') repeat-x top #F1F8FF;*/
    border: 1px solid #ddd;
    margin: 0 20px 20px 0;
	padding: 16px 20px;
    width: 395px;
    float: left;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 1px 1px 4px 1px #ddd;
    -webkit-box-shadow: 1px 1px 4px 1px #ddd;
    box-shadow: 1px 1px 4px 1px #ddd;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#ddd')";
    /* For IE 5.5 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#dddddd');
}
fieldset legend {
	color: #888005;
    font-family:'BauhausRegular','Gill Sans','lucida grande', helvetica, arial, sans-serif;
    font-size: 165%;
}
fieldset fieldset {
	margin-top: 0px;
	margin-bottom: 20px;
	padding: 16px 10px;
}
fieldset fieldset legend {
	font-size: 120%;
	font-weight: normal;
}
fieldset fieldset div {
	clear: left;
	margin: 0 20px;
}
form div {
	clear: both;
	margin-bottom: 10px;
	vertical-align: text-top;
}
form .input {
	/*color: #444;*/
}
form .required {
	font-weight: bold;
}
form .required label:after {
	color: #e32;
	content: '*';
	display:inline;
}
form div.submit {
	border: 0;
	clear: both;
	margin-top: 10px;
}
label {
	display: block;
	font-size: 100%;
	margin-bottom:1px;
}
input[type="text"], input[type="password"], textarea, select {
    border: 1px solid #ddd;
}
input[type=checkbox], input[type=radio] {
    border: none;
}
input[type="text"], input[type="password"], input[type="url"], textarea {
	clear: both;
	font-size: 100%;
	font-family: "frutiger linotype", "lucida grande", "verdana", sans-serif;
	padding: 2px;
	width:200px;
}
select {
	clear: both;
	font-size: 100%;
	/*vertical-align: text-bottom;*/
    padding: 2px;
    border: 1px solid #ddd;

}
select[multiple=multiple] {
	width: 100%;
}
option {
	font-size: 100%;
	padding: 0 3px;
}
input[type=checkbox] {
	clear: left;
	float: left;
	margin: 0px 6px 7px 2px;
	width: auto;
}
div.checkbox label {
	display: inline;
}
input[type=radio] {
	/*float:left;
	width:auto;
	margin: 0 3px 7px 0;*/
}
div.radio label {
	margin: -15px 0 6px 20px;
}
input[type=submit] {
	display: inline;
	font-size: 100%;
	width: auto;
}
form .submit input[type=submit] {
	background:#62af56;
	background: -webkit-gradient(linear, left top, left bottom, from(#a8ea9c), to(#62af56));
	background-image: -moz-linear-gradient(top, #a8ea9c, #62af56);
	border-color: #2d6324;
	color: #000;
	text-shadow: #8cee7c 0px 1px 0px;
}

form .submit input[type=submit]:disabled {
	background:#DDD;
	border-color: #9E9B9B;
	color: #9E9B9B;
	text-shadow: #DDD 0px 1px 0px;
}

form .submit input[type=submit]:disabled:hover {
	background:#DDD;
	border-color: #9E9B9B;
	color: #9E9B9B;
	text-shadow: #DDD 0px 1px 0px;
}

form .submit input[type=submit]:hover {
	background:#4ca83d;
	background: -webkit-gradient(linear, left top, left bottom, from(#85e573), to(#4ca83d));
	background-image: -moz-linear-gradient(top, #85e573, #4ca83d);
}
div.actions div.input,
div.actions div.submit {
    clear: none; float: left; margin-right: 20px;
}
div.actions div.submit { margin-left: -10px;}

/** Notices and Errors **/
div.message {
	clear: both;
	color: #fff;
	font-size: 140%;
	font-weight: bold;
	margin: 0 0 20px 0;
	background: #c73e14;
	padding: 20px;
    border: 1px solid #ddd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 1px 1px 4px 1px #ddd;
    -webkit-box-shadow: 1px 1px 4px 1px #ddd;
    box-shadow: 1px 1px 4px 1px #ddd;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#ddd')";
    /* For IE 5.5 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#dddddd');
}
div.error-message {
	clear: both;
	color: #c73e14;
	font-weight: bold;
}
p.error {
	background-color: #e32;
	color: #fff;
	font-family: Courier, monospace;
	font-size: 120%;
	line-height: 140%;
	padding: 0.8em;
	margin: 1em 0;
}
p.error em {
	color: #000;
	font-weight: normal;
	line-height: 140%;
}
.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: 10px 0 0 0;
	padding: 0;
}
div.actions li {
    float: left;
	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,
a.button,
button {
	font-weight:normal;
    font-size: 11px;
    margin-right: 10px;
	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,
a.button:hover,
button:hover {
	background: #f0f09a;
	background: -webkit-gradient(linear, left top, left bottom, from(#f7f7e1), to(#eeeca9));

    background:#f0f09a;
    background: -webkit-gradient(linear, left top, left bottom, from(#f7f7e1), to(#eeeca9));
    background-image: -moz-linear-gradient(top, #f7f7e1, #eeeca9);
}

div.actions a {
    display: inline !important;
    width: auto;
}

/** Related **/
div.related {
	clear: both;
	display: block;
}

/** Debugging **/

#debug-kit-toolbar {padding-top: 75px;}
#debug-kit-toolbar .panel-content {
    top: 103px !important;
}
pre {
	color: #000;
	background: #f0f0f0;
	padding: 1em;
}
pre.cake-debug {
	background: #ffcc00;
	font-size: 120%;
	line-height: 140%;
	margin-top: 70px;
	overflow: auto;
	position: relative;
}
pre:first-child {padding-top: 75px;}

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;
}

/* Custom overrides */
.worldpayTransactions.view dt, .creditTransactions.view dt {width: 160px;}
.worldpayTransactions.view dd, .creditTransactions.view dd {width: 280px;}

#UserSearchForm .submit, #UserSearchForm .input { display: inline; margin-left: 0;}
#UserSearchForm {padding-bottom: 20px;}
.menuSearchForm{
    padding: 0 !important;
    margin: 0 !important;
    display: inline;
}

.menuSearchForm div {
    padding: 0 !important;
}

#busy-indicator { display:none; }

/* todo: -o dlawrence: use javascript to hideOnLoad for graceful degradtion */
.hideOnLoad { display:none; }

/* User management */
#userTree {width: 200px;  height: 500px; float: left; overflow: auto;}
#userDetails {float: left; padding-left: 30px; min-height: 500px; width: 70%;}

#SmsMessageSendForm fieldset {width: 600px;}
fieldset div.fieldsetContainer {
    width: 720px;
    margin: 0;
    padding: 0;
}
.fieldsetContainer .column1, .column2  {
    width: 340px;
    float: left;
    display: inline;
    clear: none;
    padding: 0;
    margin-right: 10px;
    margin-bottom: 0;
}
.fieldsetContainer .column2 {
    padding-top: 14px;
}
.columnClear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    margin: 0;
    padding: 0;
}
#SmsMessageSendForm select, textarea{width: 340px;}
#SmsMessageSendForm #smsMessage {height: 50px;}
#SmsMessageSendForm #signature {height: 50px;}
#UserAdminEditForm .signature {height: 40px;}
#UserEditForm .signature {height: 40px;}
a.asc {
padding-right:20px;
margin-right: 7px;
background: url('/img/sort_arrow_asc.gif') center right no-repeat ;
}
a.desc {
padding-right:20px;
margin-right: 7px;
background: url('/img/sort_arrow_desc.gif') center right no-repeat;
}
#UserEditForm fieldset, #UserAdminEditForm fieldset {
    height: 385px;
    float: left;
}
#UserAdminEditForm #UserInternalNote{ height: 22em;}
fieldset.contacts {
    width:852px;
}
.contact {
    float: left;
    margin: 0 20px 20px 0;
    height: 280px;
    border: 1px solid #ddd;
    background: #f7f9fc;
    float: left;
    width: 393px;
    padding: 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 1px 1px 4px 1px #ddd;
    -webkit-box-shadow: 1px 1px 4px 1px #ddd;
    box-shadow: 1px 1px 4px 1px #ddd;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#ddd')";
    /* For IE 5.5 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#dddddd');
}
.contact dl {
    width: 360px;
}
.contact dt {width: 60px;}
.contact dd {width: 280px;}

#strapline {
    padding-left: 6px;
    font-weight: bold;
    font-size: 12px;
}

#strapline span {
    color: #E21831;
}

.menu .top ul {padding-left: 6px;}

#pricing table tr:hover td {background: #fff}
#pricing table tr.altrow:hover td {background: #f5f5f5;;}

#adminUserMenuContainer{
    background: #f7f9fc;
    float: left;
    width: 964px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 1px 1px 4px 1px #ddd;
    -webkit-box-shadow: 1px 1px 4px 1px #ddd;
    box-shadow: 1px 1px 4px 1px #ddd;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#ddd')";
    /* For IE 5.5 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#dddddd');
}

div.box, div.contentInner, div.actions {
    background: #f7f9fc;
    /*width: 850px;*/
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 1px 1px 4px 1px #ddd;
    -webkit-box-shadow: 1px 1px 4px 1px #ddd;
    box-shadow: 1px 1px 4px 1px #ddd;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#ddd')";
    /* For IE 5.5 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='#dddddd');
}

div.box, div.actions { width: 964px; }
div.contentInner { min-width: 964px; float: left;}
.contact .actions {
    width: auto;
    background: #fff;
    padding: 10px;
    margin-bottom: 0;
}

#adminUserMenu ul.dropdown ul a {color: #fff;}
#adminUserMenu ul.dropdown li span {background-color: #f6f6f6;}

.my_account dt {width: 200px;}
.my_account dd {width: 222px;}
.my_account dl {width: 442px;}

/* simple css-based tooltip */
.tooltip {
    background: #0c46a1;
    border:1px solid #fff;
    padding:10px 15px;
    width:200px;
    display:none;
    color:#fff;
    text-align:left;
    font-size:11px;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;

    /* outline radius for mozilla/firefox only */
    -moz-box-shadow:0 0 10px #ddd;
    -webkit-box-shadow:0 0 10px #ddd;
    box-shadow: 0 0 6px #000;
}

#charsRemain.error-message {
    color: #c73e14;
    font-weight: bold;
    font-size: 150%;
}

#sms_id_counter.error-message {
    color: #c73e14;
    font-weight: bold;
}

#sms_id_counter {
    margin-top: -4em;
    margin-left: 15.5em;
}

p.warning, span.warning {
    font-weight: bold;
    color: #c73e14;
}

iframe.fullIframe {
    display: block;
    width: 100%;
    height: 75%;
    margin: 0;
    min-height: 600px;
}

div.contentInner#email {
    display: flex;
    flex-direction: row;
    flex: auto;
    position: absolute;
    margin-top: -75px;
    margin-bottom: 0;
    padding: 0 10px 0 10px;
    height: 98%;
    width: 97%
}
div.email#folders {
    flex: auto;
    min-width: 140px;
    
}

div.email#folderContainer {
    display: flex;
    flex-direction: column;
    flex: auto;
    width: 90%;
}

div.email#listNav {
    margin-bottom: 1px;
}
div.email#list {
    flex: auto;
    height: 300px;
}

table.email td.actions input[type="checkbox"], table.email td.actions a, table.email td {
    padding: 1px !important;
    margin: 1px;
    
}

table.email {
    table-layout: fixed;
    width: 900px;
    font-size: 11px;
}

table.email th.actions, table.email tr.actionsColumn{
    width: 34px;
    overflow: hidden;
}

table.email th.attachmentColumn, table.email tr.attachmentColumn{
    width: 15px;
    overflow: hidden;
    color: red;
    text-decoration: bold;
}

table.email th.fromColumn, table.email tr.fromColumn{
    width: 280px;
    overflow: hidden;
}

table.email th.subjectColumn, table.email tr.subjectColumn{
    width: 479px;
    overflow: hidden;
}

table.email th.createdColumn, table.email tr.createdColumn{
    width: 140px;
    overflow: hidden;
}


div.email#view {
    flex: auto;
    height: 40px;
    overflow-y: scroll;
    
}

div.email.actions {
    width: auto;
    padding: 0;
    margin: 0;
    
}

.nowrap {
    white-space: nowrap;
}

.clickableTd {
    display: block;
    color: #333;
    font-weight: normal;
}

.clickableTd:hover {
    text-decoration: none;
}

.unreadEmail a {
    font-weight: bold;
}

.email tr.selected, .email tr.selected td{
    background-color: #FFFF9A;
}

#noMenuLayout #debug-kit-toolbar {
    padding-top: 0;
}

.actions .disabled {
    background: #D4D4B8;
    border: 1px solid #707070;
    color: #757272;
    pointer-events: none;
    cursor: default;
}

textarea.emailSend {
    width: 100%;
    height: 215px;
}

input.emailSend[type="text"] {
    width: 100%;
}

.email #viewControlsContainer {
    float: left;
    clear: none;
    margin: 0;
}

.email .paging {
    margin: 0;
    padding-top: 0;
}

.email .paging p {
    margin: 0;
    margin-bottom: 5px;
    padding-top: 0;
}


#folders.email ul {
    white-space: nowrap;
    line-height: 2.2em;
}

#list.email {
    font-size: 11px;
    width: 100%;
}

#view.email .contentInner {
	padding-top: 0;
}

#emailIframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.virtualNumbers td a {
    font-weight:normal;color:black
}
.monthlyData tr td:nth-of-type(even),table.yearlyReports tr td:nth-of-type(even),table.virtualNumbers tr td:nth-of-type(even)  {
     color:#38559E
}
.monthlyData tr th:nth-of-type(even),table.yearlyReports tr th:nth-of-type(even),table.virtualNumbers tr th:nth-of-type(even) {
     color:#38559E
}
        
.monthlyData {
    display:none;
}
        
.monthlyData tr:nth-of-type(odd) td, .contacts tr:nth-of-type(even) td, .collapsibleTable tr:nth-of-type(even) td {
    background:#f5f5f5;
}
        
.monthlyData tr:nth-of-type(even) td, .contacts tr:nth-of-type(odd) td, .collapsibleTable tr:nth-of-type(odd) td {
    background:#fff;
}
        
.monthlyData tr:hover td, .contacts tr:hover td, .collapsibleTable tr:hover td  {
    background:#E5F2FF;
}

.yearlyReports .reports.months {
    font-weight:bold;
    width:45px;
}

.yearlyReports .reports.smsSent, .monthlyData .reports.smsSent{
    text-align:right;
    width:49px;
}

.yearlyReports .reports.smsReceived, .monthlyData .reports.smsReceived{
    text-align:right;
    width:55px;
}

.yearlyReports .reports.newUsers, .monthlyData .reports.newUsers{
    text-align:right;
    width:33px;
}

.yearlyReports .reports.activeUsers, .monthlyData .reports.activeUsers{
    text-align:right;
    width:37px;
}

.yearlyReports .reports.smsSold, .monthlyData .reports.smsSold{
    text-align:right;
    width:50px;
}

.yearlyReports .reports.salesNet, .monthlyData .reports.salesNet{
    text-align:right;
    width:71px;
}

.yearlyReports .reports.salesCount, .monthlyData .reports.salesCount{
    text-align:right;
    width:40px;
}

.yearlyReports .reports.invoiceSms, .monthlyData .reports.invoiceSms{
    text-align:right;
    width:54px;
}

.yearlyReports .reports.invoiceNet, .monthlyData .reports.invoiceNet{
    text-align:right;
    width:71px;
}

.yearlyReports .reports.cardTopupCredits, .monthlyData .reports.cardTopupCredits{
    text-align:right;
    width:54px;
}

.yearlyReports .reports.cardTopupNet, .monthlyData .reports.cardTopupNet{
    text-align:right;
    width:64px;
}

.yearlyReports .reports.bulkSent, .monthlyData .reports.bulkSent{
    text-align:right;
    width:49px;
}

.yearlyReports .reports.totalSms, .monthlyData .reports.totalSms{
    text-align:right;
    width:56px;
}

.collapsibleTable{
    display: none;
}

.collapsibleTableWrapper{
    width:100%;
}

.postPayUsers{
    width:450px;;
}

.dashboard td a {
    font-weight:normal
}

.dashboard tr td:nth-of-type(odd) a {
    color:black
}

.dashboard tr th:nth-of-type(even) {
    color:#38559E
}

.hiddenTable {
    border-style: none;
    margin: 0;
    padding: 0;
    //background:#f7f9fc;
    background-color : transparent;
    table-layout: fixed;
}

.hiddenTable tr td {
    border-style: none;
    margin: 5;
    padding: 5;
    //background:#f7f9fc;
    background-color : transparent;
    overflow: hidden;
}

.hiddenTable tr:hover td {
    //background:#f7f9fc;
    background-color : transparent;
}

.creditControlNote {
    height: 100px;
    width: 600px;
}

.email.actions ul li a, .email.actions ul li input[type=submit] {
    display: block !important;
    padding: 3px;
    font-family: 'lucida grande',verdana,helvetica,arial,sans-serif;
    font-size: 11px;
}

.email.actions ul li a:hover {
    text-decoration: none;
}

div.email.actions {
    padding: 0;
    margin: 0;
    border-width: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    
}

div.email.actions ul {
    margin-top: 5px;
}

.email dl, .email dd {
    width: auto;
}

.inlineTable {
    display:block;
    height:122px;
    overflow-y:scroll;
}

.inlineTable tr:nth-of-type(even) td {
    background:#f5f5f5
}

.inlineTable tr:nth-of-type(odd) td {
    background:#fff
}

.inlineTable  tr:hover td {
    background:#E5F2FF;
}

.contactInfo {
    width:auto;
    display: none;
}

.contactInfo dd {
    display: block;
}

.bigRedText{
    font-size: 120%;
    font-weight: bold;
    color: #c73e14;
}

/* BEGIN - Google Material Design Icons */

/* Rules for sizing the icon. */
.material-icons.md-tiny { font-size: 18px; }
.material-icons.md-small { font-size: 24px; }
.material-icons.md-medium { font-size: 36px; }
.material-icons.md-large { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.material-icons.md-form-inline { 
    vertical-align: bottom;
    margin-left: 5px;
    font-size: 22px;
}

.material-icons.md-text-inline {
    display: inline;
    vertical-align: bottom;
    font-size: 16px;
}
.material-icons.md-help{ color: #2455A1; }
.material-icons.md-positive{ color: #4ca83d; }
.material-icons.md-negative{ color: #c73e14; }
/* END - Google Material Design Icons */

table.dashboard.external-logos tr td {
    background-color: transparent;
    vertical-align: bottom;
    padding-right: 40px;
    padding-bottom: 40px;
}

table tr:last-child td{
    border: none;
}

table.userDetails {
    float: left;
    clear: none;
    border-radius: unset;
    border: none;
    border-spacing: 0px;
}

table.userDetails tr td{
    border: none;
    /*background-color: inherit;*/
    padding: 5px;
    margin: 0px;
}

table.userDetails tr:nth-child(odd) td{
    background-color: #f7f9fc;
}

table.userDetails tr:hover td{
    background-color: #E5F2FF;
}

table.userDetails tr td:first-child {
    font-weight: bold;
}

#usersNoteData td.scrollBox {
    display: inline-block;
    overflow-y: scroll;
    width: 340px;
    height: 435px;
}

#usersNoteData tr:hover td{
   background-color: #f7f9fc;
}

#usersData td.label {
    width: 100px;
}

#usersData {
    width: 300px;
}