
html, body {
    height: 100%;
    overflow: hidden;
}

body.pma {
    position: relative;
}

body.pma *:focus {outline: none;}

body.pma button {
    position: relative;
    left: 0;
    min-width: 57px;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer;
    text-align: center;
}

body.pma button.lightBlue {
    border: 1px solid #5982B8;
    background: #C7CEDE;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

body.pma button.lightBlue:hover,
body.pma button.lightBlue.selected {
    background: #46659c;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: color All 0.2s ease;
}

body.pma button.lightBlue.disabled:hover {
    color: 	#0F67A6;
    border: 1px solid #5982B8;
    background: #C7CEDE;
}

body.pma button.darkBlue {
    border: 1px solid #254A77;
    background: #254A77;
    border-radius: 6px 6px 6px 6px;
}

body.pma button.darkBlue:hover,
body.pma button.darkBlue.selected {
    background: #254A77;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

body.pma button.darkBlue.chartControl:hover,
body.pma button.darkBlue.chartControl.selected {
    background: #9b2c23;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

body.pma button.darkBlue.disabled:hover {
    border: 1px solid #254A77;
    background: #254A77;
    border-radius: 6px 6px 6px 6px;
}

body.pma button.small {
    padding: 5px 3px 3px;
}

body.pma button.medium {
    padding: 9px 2px;
}

body.pma button.large {
    padding: 12px 2px;
}

/*CSS SHAPES*/
.arrowWrapper {
  position: absolute;
  top: 75px;
  left: 180px;
  width: 39px;
  height: 40px;
}

.arrowWrapper .arrowHead {
    position: relative;
}

.arrowWrapper .arrowHead > span {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    line-height: 0;
    border: 20px solid transparent;
    border-left: 20px solid #9b2923;
    left: 30px;
    top: 0px;
}

.arrowWrapper .arrowHead > span + span {
    position: absolute;
    top: 11px;
    left: 12px;
    width: 23px;
    height: 18px;
    background-color: #9B2923;
    border: none;
    display: inline-block;
}

/*
http://apps.eky.hk/css-triangle-generator/
    _border-color: #000000 #000000 #9b2d23 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
*/
.errorArrow {

    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 12px 18px 12px;
    border-color: transparent transparent #9b2d23 transparent;
    line-height: 0px;

    border-style: inset;
    -webkit-transform:rotate(360deg);
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.errorArrow.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.selectArrowDown {
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 19px 12px 0 12px;
    border-color: #9b2d23 transparent transparent transparent;
    line-height: 0px;
    _border-color: #9b2d23 #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    border-style: inset;
    -webkit-transform:rotate(360deg);
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.selectArrowDown.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 3004;
}

.selectArrowRight {
    position: relative;
    top: -3px !important;
    left: 3px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #9b2d23;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #9b2d23;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    border-style: inset;
    -webkit-transform:rotate(360deg);
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.selectArrowRight.show {
    opacity: .8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 3004;
}

body.pma input.error {
    border: 1px solid #9b2d23;
    color: #9b2d23;
}

input.error::-moz-placeholder {
    color: #9b2d23;
}

input.error:-moz-placeholder {
    color: #9b2d23;
}

input.error::-webkit-input-placeholder {
    color: #9b2d23;
}

input.error:-ms-input-placeholder {
    color: #9b2d23;
}

.sectionImageTemp {
    position: relative;
    width: 100%;
    height: 98%;
    margin-top: 6px;
}

#administration-imageTemp.sectionImageTemp {
    background: url("../images/user-tab-temp.png") no-repeat;
}

#visualization-imageTemp.sectionImageTemp {
    background: url("../images/test-image-chartBubble-2.png") no-repeat;
}

#spreadsheets-imageTemp.sectionImageTemp {
    background: url("../images/test-image-chartBubble-2.png") no-repeat;
}

#scenarios-imageTemp.sectionImageTemp {
    background: url("../images/test-image-chartBubble-2.png") no-repeat;
}

#bodyFadeWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;

    background: url("../images/background-body-greyer.jpg") repeat;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	overflow: auto;
}

#mainThrobberWrapper {
    position: absolute;
    top: 37%;
    left: 42%;
    width: 52%;
    height: 128px;
    z-index: 3001;
    text-align: left;
    display: none;
}

#throbberMain {
    position: relative;
    top: 0;
    left: 0;
    width: 128px;
    height: 128px;
    float: left;
    clear: left;

}

#throbberMain.show {
    opacity: .8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
    -webkit-transition: opacity 0.82s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    display: inline !important;
}

#throbberMain.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#throbberMainText {
    position: relative;
    top: 54px;
    left: 0;
    margin-left: 18px;
    float: left;
    clear: right;
}

header {
    position: relative;
    width: auto;
    max-width: 1208px;
    min-width: 1122px;
    height: 60px;
    top: 0;
    left: 0;
    background-color: #c7cede;
}

body.pma #logoMain {
    position: relative;
    top: 18px;
    left: 21px;
    height: 35px;
    width: 336px;
    cursor: pointer;
}

#entry {
    display: none;
}

body.pma #menuFadeWrapper {
    width: 100%;
    height: 100%;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
}

body.pma #menuWrapper {
    position: relative;
    height: 38px;
    background: #254a77;
    z-index: 2;
    min-width: 1122px;
    width: auto;
}

body.pma #menuWrapper .menuItem {
    position: relative;
    height: 100%;
    margin-right: 51px;
    background: #254a77;
    text-align: center;
    z-index: 3;
    cursor: pointer;
}

body.pma #menuWrapper .menuItem:hover {
    z-index: 5;
}

body.pma #menuWrapper .menuItem .menuItemText {
    position: relative;
    top: 10px;
    color:#89A4CF;
}

body.pma #menuWrapper .menuItem:hover .menuItemText {
    color: #254a77;
    z-index: 4;
}

body.pma #menuWrapper .menuItem.selected {
    cursor: auto;
}

body.pma #menuWrapper .menuItem.selected .menuItemText {
    color: #fff;
}

body.pma #menuWrapper .menuItem.selected .menuItemText:hover {
    color: #254a77;
}

body.pma #menuWrapper .menuItem.first {
    margin-left: 10% !important;
}

body.pma #menuWrapper .menuItem:last-of-type {
    margin-right: 0;
}

body.pma #menuWrapper .menuItemSelectedBG {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;

    background: #254a77;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI1NGE3NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjElIiBzdG9wLWNvbG9yPSIjMjU0YTc2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMyUiIHN0b3AtY29sb3I9IiMzMTUxNzgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI0JSIgc3RvcC1jb2xvcj0iIzNjNTU3ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYlIiBzdG9wLWNvbG9yPSIjNGI1ZjgwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTIlIiBzdG9wLWNvbG9yPSIjNmU3YTkyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTclIiBzdG9wLWNvbG9yPSIjODc4ZmE0IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMjIlIiBzdG9wLWNvbG9yPSIjOTlhMGIyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMjclIiBzdG9wLWNvbG9yPSIjYTliMWJlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMzQlIiBzdG9wLWNvbG9yPSIjYjliZmNkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDAlIiBzdG9wLWNvbG9yPSIjYzNjYmQ4IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDglIiBzdG9wLWNvbG9yPSIjY2NkNGUxIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTIlIiBzdG9wLWNvbG9yPSIjY2NkNGUxIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNjAlIiBzdG9wLWNvbG9yPSIjYzBjNmQ0IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNjklIiBzdG9wLWNvbG9yPSIjYWNiNGMxIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNzYlIiBzdG9wLWNvbG9yPSIjOTY5ZGFmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iODYlIiBzdG9wLWNvbG9yPSIjNmU3YTkyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iOTIlIiBzdG9wLWNvbG9yPSIjNGM2MDgxIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iOTclIiBzdG9wLWNvbG9yPSIjMzQ1MTc5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzI1NGE3NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(left,  #254a77 0%, #254a76 1%, #315178 3%, #3c557d 4%, #4b5f80 6%, #6e7a92 12%, #878fa4 17%, #99a0b2 22%, #a9b1be 27%, #b9bfcd 34%, #c3cbd8 40%, #ccd4e1 48%, #ccd4e1 52%, #c0c6d4 60%, #acb4c1 69%, #969daf 76%, #6e7a92 86%, #4c6081 92%, #345179 97%, #254a77 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#254a77), color-stop(1%,#254a76), color-stop(3%,#315178), color-stop(4%,#3c557d), color-stop(6%,#4b5f80), color-stop(12%,#6e7a92), color-stop(17%,#878fa4), color-stop(22%,#99a0b2), color-stop(27%,#a9b1be), color-stop(34%,#b9bfcd), color-stop(40%,#c3cbd8), color-stop(48%,#ccd4e1), color-stop(52%,#ccd4e1), color-stop(60%,#c0c6d4), color-stop(69%,#acb4c1), color-stop(76%,#969daf), color-stop(86%,#6e7a92), color-stop(92%,#4c6081), color-stop(97%,#345179), color-stop(100%,#254a77)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  #254a77 0%,#254a76 1%,#315178 3%,#3c557d 4%,#4b5f80 6%,#6e7a92 12%,#878fa4 17%,#99a0b2 22%,#a9b1be 27%,#b9bfcd 34%,#c3cbd8 40%,#ccd4e1 48%,#ccd4e1 52%,#c0c6d4 60%,#acb4c1 69%,#969daf 76%,#6e7a92 86%,#4c6081 92%,#345179 97%,#254a77 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  #254a77 0%,#254a76 1%,#315178 3%,#3c557d 4%,#4b5f80 6%,#6e7a92 12%,#878fa4 17%,#99a0b2 22%,#a9b1be 27%,#b9bfcd 34%,#c3cbd8 40%,#ccd4e1 48%,#ccd4e1 52%,#c0c6d4 60%,#acb4c1 69%,#969daf 76%,#6e7a92 86%,#4c6081 92%,#345179 97%,#254a77 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  #254a77 0%,#254a76 1%,#315178 3%,#3c557d 4%,#4b5f80 6%,#6e7a92 12%,#878fa4 17%,#99a0b2 22%,#a9b1be 27%,#b9bfcd 34%,#c3cbd8 40%,#ccd4e1 48%,#ccd4e1 52%,#c0c6d4 60%,#acb4c1 69%,#969daf 76%,#6e7a92 86%,#4c6081 92%,#345179 97%,#254a77 100%); /* IE10+ */
    background: linear-gradient(to right,  #254a77 0%,#254a76 1%,#315178 3%,#3c557d 4%,#4b5f80 6%,#6e7a92 12%,#878fa4 17%,#99a0b2 22%,#a9b1be 27%,#b9bfcd 34%,#c3cbd8 40%,#ccd4e1 48%,#ccd4e1 52%,#c0c6d4 60%,#acb4c1 69%,#969daf 76%,#6e7a92 86%,#4c6081 92%,#345179 97%,#254a77 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#254a77', endColorstr='#254a77',GradientType=1 ); /* IE6-8 */

}

body.pma #menuWrapper .menuItem.selected .menuItemSelectedBG {
    position: absolute;
    top: 81%;
    left: 43%;
    width: 9%;
    height: 18%;
    border-radius: 50% 50% 50% 50%;
    opacity: 0.7;
    z-index: 3;
    display: none;
}

body.pma #menuWrapper .menuItem.selected:hover .menuItemSelectedBG {
    position: absolute;
    top: 81%;
    left: 43%;
    width: 9%;
    height: 18%;
    border-radius: 50% 50% 50% 50%;
    opacity: 0.7;
    z-index: 3;
    display: none;
}

body.pma #menuWrapper .menuItem:hover .menuItemSelectedBG {
    opacity: 1;
    left: 0;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    transition: opacity 0.2s ease;
}

body.pma #menuWrapper #menuItem-visualization {
    width: 264px;
}

body.pma #menuWrapper #menuItem-spreadsheets {
    width: 219px;
}

body.pma #menuWrapper #menuItem-scenarios {
    width: 276px;
}

body.pma #menuWrapper #menuItem-administration {
    width: 207px;
}

body.pma #menuWrapper #menuItem-contact {
    width: 236px;
}

#loginProfileWrapper {
    position: relative;
    width: 50px;
    height: 100px;
    right: 0;
    top: 0;
    float: right;
    clear: right;
    z-index: 10;
}

#mainAnnounceWrapper-top {
    opacity: 0;
}

#content-main {
    width: auto;
    max-width: 1208px;
    min-width: 1120px;
    height: 875px;
    margin: 0 auto;
    text-align: left;
}

#main {
    width: 100%;
    height: 765px;
}

img#testImage1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 1176px;
    height: 771px;

    z-index: 2;

    opacity: .5;
    display: none;
}

img#main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#form-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sectionOpacityMask {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 89%;
    background: #F9F9F9;
    opacity: .3;
}

#mainContent-wrapper {
    position: absolute;
    top: 17px;
    left: 1.6%;
    width: 100%;
    max-width: 1187px;
    height: 98%;
    max-height: 747px;
    border: none;
    border-top: 2px solid #254a77;
    border-left: 2px solid #254a77;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    border-top-left-radius: 6px;
    background: #ebecf0;
    overflow: hidden;

    -webkit-box-shadow: 5px 16px 26px 16px rgba(26, 49, 85, 0.3);
    -webkit-box-shadow: -30px 14px 37px -34px rgba(26, 49, 85, 0.6);
    box-shadow: -30px 5px 37px -34px rgba(88, 89, 91, 0.6);

}

#mainContent-wrapper #centerThrobberWrapper {
    position: absolute;
    top: 40%;
    left: 31%;
    width: 66%;
    height: 120px;
    z-index: 1;
}

#mainContent-wrapper .localMask {
    width: 73%;
    height: 92%;
    z-index: 1000;
}

#mainContent-wrapper #centerThrobberWrapper.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainContent-wrapper #centerThrobberWrapper.show {
    opacity: .8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#mainContent-wrapper #centerThrobberWrapper .throbberImageCenter {
    position: relative;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    float: left;
}

#mainContent-wrapper #centerThrobberWrapper .throbberCenterText {
    position: relative;
    top: 40px;
    left: 0;
    margin-left: 18px;
    float: left;
}

body.pmt #content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 100%;

}

#topMain .horizontal-line {
    width: 100%;
    display: none;
}

#topMain {
    position: relative;
    top: 0;
    left: 0;
    width: 98%;
    height: 57px;
    padding: 0 0 0 21px;
    margin-bottom: 0;
}

#topMain.show {
    opacity: 1 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#topMain.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.mainAnnounce-top {
    margin: 20px 6px 15px 0;
    float: left;
}

#mainCenter {
    position: relative;
    max-width: 1148px;
    min-width: 96.6%;
    width: auto;
    height: 690px;
    padding: 0 0 0 39px;
    background: #ebecf0;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
}

#mainCenter.show {
    opacity: 1 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#mainCenter.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#formWrapper-main {
    position: absolute;
    top: 0;
    left: 23%;
    width: 627px;
    height: 447px;
    margin: 0 auto 0;
    z-index: 3002;
}

#formWrapper-main #pageSectionBorder-top {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    padding: 21px 0 0 0;
    text-align: center;
    background: #B6C7D9;
}

#formWrapper-main #pageSectionBorderTop-announce {

}


#formWrapper-main #pageSectionBorder-middle {
    position: relative;
    top: 0;
    left: 0;
}


#formWrapper-main .pageSectionBorder-wrapper {
    width: 0;
    height: 0;
    padding: 0;
    background: #EBECF0;
    border: none;
    -webkit-border--radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.6s ease;
}


#formWrapper-main .horizontal-line {
    position: relative;
    width: 76%;
    margin: 0 auto;
    background: #A7ACAF;
    opacity: .6;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

#formWrapper-main .centerAnnounce-top {
    position: relative;
    width: 96%;
    margin: 21 auto;
    text-align: center;
}

#formWrapper-main .centerAnnounce-top.error {
    color: #9B2C23;
}

.formWrapper {
    position: relative;
}

#mainCenter .formWrapper-login {
    width: 80%;
    margin: 36px auto 0;
}

#mainCenter .formSectionWrapper {
    position: relative;
    margin: 24px 0 39px 0;
    text-align: center;
}

#mainCenter .formSectionWrapper .formErrorWrapper {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
}

#mainCenter .formSectionWrapper .formErrorWrapper .formErrorText.hide {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity .8 ease;
    -moz-transition: opacity .8 ease;
    -o-transition: opacity .8 ease;
    -ms-transition: opacity .8 ease;
    transition: opacity .8 ease;
}

#mainCenter .formSectionWrapper .formErrorWrapper .formErrorText.show {
     opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity .8 ease;
    -moz-transition: opacity .8 ease;
    -o-transition: opacity .8 ease;
    -ms-transition: opacity .8 ease;
    transition: opacity .8 ease;
}

#mainCenter .formSectionWrapper .formElementWrapper {
    width: 375px;
    margin: 0 auto;
}

#mainCenter .formSectionWrapper input {
    width: 375px;
    height: 51px;
    color: #696e71;
    text-align: left;
}

#mainCenter .formSectionWrapper input.error {
    border-color: #9b2c23;
    color: #9b2c23;
}

#mainCenter .formSectionWrapper input.placeholder {
    text-align: center;
}

#mainCenter .formSectionWrapper input:focus {
    border-color: #89a4cf;
    text-align: left;
}

input::-moz-placeholder {
    text-align: center;
}

input:-moz-placeholder {
   text-align: center;
}

input::-webkit-input-placeholder {
    text-align: center;
}

input:-ms-input-placeholder {
    text-align: center;
}

#formWrapper-main .centerAnnounce-bottom {
    position: relative;
    width: 100%;
    height: 39px;
    margin: 36px auto 0;
    padding-bottom: 6px;
    text-align: center;
}

#mainCenter .formWrapper button {
    padding: 9px 3px 7px;
}

#mainCenter .formWrapper .formSubmitWrapper {
    position: relative;
    width: 246px;
    height: 39px;
    vertical-align: bottom;
}

#mainCenter .formWrapper .formSubmitWrapper .formSubmitThrobberWrapper {
    position: relative;
    width: 100%;
    height: 39px;
    padding-left: 3px;
    text-align: center;
}

#mainCenter .formWrapper .formSubmitWrapper .formSubmitThrobberWrapper.hide {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .formWrapper .formSubmitWrapper .formSubmitThrobberWrapper.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .formWrapper .formSubmitWrapper .formSubmitThrobberWrapper .formSubmitThrobberImage {
    position: relative;
    top: 4px;
}

#mainCenter .formWrapper .formSubmitWrapper .formSubmitThrobberWrapper .formSubmitThrobberText {
    position: relative;
    top: -7px;
    margin-left: 9px;
}

#mainCenter .formWrapper button.save {
    width: 180px;
    height: 39px;
    margin: 0 auto;
    background: #f69322;
    border: 1px solid #254A77;
    display: block;
}

#mainCenter .formWrapper button.save.show {
    cursor: pointer;
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .formWrapper button.save.hide {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .formWrapper button.save:hover {
    background: #46659c;
    background: #9b2923;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#mainCenter .formWrapper button.save.disable {
    opacity: .2;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	cursor: auto;
}

#mainCenter .formWrapper button.save.disable:hover {
    background: #f69322;
}

#mainCenter .formWrapper button.info {
    color: #0f67a6;
    background: #C7CEDE;
    border: 1px solid #254A77;
}

#mainCenter .formWrapper button.info.forgot-login {
    width: 129px;
    margin-left: -3px;

}

#mainCenter .formWrapper button.info.contact-admin {
    width: 129px;
}

#mainCenter .formWrapper button.info.return-login {
    width: 156px;
    margin-left: -3px;

}

#mainCenter .formWrapper button.info:hover {
    background: #46659c;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

/*TABS*/
#mainCenter .tabStripWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
}

#mainContent-wrapper .tabStripWrapper #sectionThrobberWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 462px;
    height: 66px;
    z-index: 3001;
}

#mainContent-wrapper .tabStripWrapper #sectionThrobberWrapper.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainContent-wrapper .tabStripWrapper #sectionThrobberWrapper.show {
    opacity: .8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#mainContent-wrapper .tabStripWrapper #sectionThrobberWrapper .throbberImageSection {
    position: relative;
    top: 0;
    left: 0;
    width: 66px;
    height: 66px;
    float: left;
}

#mainContent-wrapper .tabStripWrapper #sectionThrobberWrapper .throbberSectionText {
    position: relative;
    top: 18px;
    left: 0;
    margin-left: 9px;
    float: left;
}

#mainContent-wrapper .tabStripWrapper #subSectionThrobberWrapper {
    position: absolute;
    top: 42%;
    left: 23%;
    width: 98%;
    height: 99px;
    text-align: center;
}

#mainContent-wrapper .tabStripWrapper #subSectionThrobberWrapper.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 1;
}

#mainContent-wrapper .tabStripWrapper #subSectionThrobberWrapper.show {
    opacity: .8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
    z-index: 3001;
}

#mainContent-wrapper .tabStripWrapper #subSectionThrobberWrapper .throbberImageSection {
    position: relative;
    top: 0;
    left: 0;
    width: 66px;
    height: 66px;
    float: left;
}

#mainContent-wrapper .tabStripWrapper #subSectionThrobberWrapper .throbberSectionText {
    position: relative;
    top: 18px;
    left: 0;
    margin-left: 9px;
    float: left;
}

#mainCenter .k-tabstrip {
    width: 100%;
    max-width: 1145px;
    height: 100%;
    padding: 0 0 0 3px;
    background: none;
    border:  none;
    overflow: hidden;
}

#mainCenter .k-tabstrip .k-loading,
#mainCenter .k-state-hover .k-loading {
  display: none;
}

#mainCenter .k-tabstrip .k-tabstrip-items {
    margin-top: 6px;
    padding: 0;
}

#mainCenter .k-tabstrip li.adminTab {
    margin-right: 15px;
    background-color: #C7CEDE;
    border-color: #696e71;
}

#mainCenter .k-tabstrip li.adminTab:last-of-type {
    margin-right: 0;
}

#mainCenter .k-tabstrip li.adminTab a.k-link {
    color: #254a77 !important;
}

#mainCenter .k-tabstrip li.adminTab.k-state-active {
    background-color: #5982B8;
    border-color: #254a77;
    z-index: 4;
}

#mainCenter .k-tabstrip li.adminTab.k-state-active a.k-link {
    color: #FFF !important;
}

#mainCenter .k-tabstrip li.adminTab.k-state-hover {
    background-color: #5982B8;
    border-color: #254a77;
}

#mainCenter .k-tabstrip li.adminTab.k-state-hover a.k-link {
    color: #FFF !important;
}

#mainCenter .tabContentWrapper.admin,
#mainCenter .k-tabstrip .k-content.k-state-active {
    position: relative;
    max-width: 1129px;
    width: 100%;
    left: 0;
    height: auto;
    min-height: 648px;
    height: 648px;
    margin: 0;
    padding: 0 0 0 15px;
    background: #fff;
    border-bottom-width: 0;
    border-right-width: 0;
    border-color: #254A77;
    z-index: auto;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionTop {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 27px;
    padding-top: 18px;
    text-align: left;
}

#mainCenter .tabStripWrapper .tabSectionTop .tabSectionTopAnnounce {
    position: relative;
    top: 0;
    left: 0;
    padding-left: 15px;
}

#mainCenter .tabStripWrapper .arrowWrapper {
    display: none;
}

#mainCenter .tabStripWrapper .tabSectionTop button.tabContact {
    left: 61%;
    display: none;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottom {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 602px;
    min-height: 86%;
    height: auto;
    padding-bottom: 1px;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottom .tabSectionBottomLeft {
    position: relative;
    top: 0;
    left: 0;
    width: 122px;
    height: 552px;
    padding-top: 57px;
    float: left;
    clear: left;
    -webkit-transition: width 0.8s ease;
    -moz-transition: width 0.8s ease;
    -o-transition: width 0.8s ease;
    -ms-transition: width 0.8s ease;
    transition: width 0.8s ease;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottom #buttonSection-reports.tabSectionBottomLeft {
    height: 87%;
    padding-top: 36px;
    padding-bottom: 1px;
}

#mainCenter .tabStripWrapper .tabContentWrapper #buttonSection-reports.tabSectionBottomLeft button.subsectionSelect.selected {
    left: 27px;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottom .tabSectionBottomLeft.subSectionSmall {
    width: 8%;
    padding-left: 0;
    -webkit-transition: width 0.8s ease;
    -moz-transition: width 0.8s ease;
    -o-transition: width 0.8s ease;
    -ms-transition: width 0.8s ease;
    transition: width 0.8s ease;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomLeft button.subsectionSelect {
    left: 0;
    width: 117px;
    margin-bottom: 42px;
    padding: 7px 2px 4px 2px;
    font-size: 14px;
    line-height:  18px;
    -webkit-transition: All 0.6s ease;
    -moz-transition: All 0.6s ease;
    -o-transition: All 0.6s ease;
    -ms-transition: All 0.6s ease;
    transition: left All 0.6s ease;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomLeft button.subsectionSelect.disable {
    opacity: .2;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	cursor: auto;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomLeft button.subsectionSelect.disable:hover {
    background: #C7CEDE;
    color: #0F67A6;
}

#mainCenter .tabStripWrapper .tabContentWrapper #buttonSection-system.tabSectionBottomLeft button.subsectionSelect {
    margin-bottom: margin-bottom: 42px;
}

#mainCenter .tabStripWrapper .tabContentWrapper #buttonSection-reports.tabSectionBottomLeft button.subsectionSelect {
    margin-bottom: 36px;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomLeft button.subsectionSelect.selected {
    left: 23px;
    z-index: 2;
    cursor: auto;
    -webkit-transition: left 0.6s ease;
    -moz-transition: left 0.6s ease;
    -o-transition: left 0.6s ease;
    -ms-transition: left 0.6s ease;
    transition: left 0.6s ease;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomLeft button.subsectionSelect:last-of-type {
    margin-bottom: 0;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomLeft button.subsectionSelect.subSectionSmall {
    font-size: 12px;
    width: 87px;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomRight {
    position: relative;
    top: 0;
    left: -6px;
    width: 90%;
    height: 584px;
    margin-top: 18px;
    padding-left: 0;
    padding-right: 6px;
    float: right;
    clear: right;
    border: 1px solid #46659C;
    border-right: none;
    border-bottom: none;
    -webkit-border--radius: 6px 0 0 0;
    -moz-border-radius: 6px 0 0 0;
    border-radius: 6px 0 0 0;
    background: #EBECF0;
    overflow: hidden;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#mainCenter .tabStripWrapper .tabContentWrapper #subSection-users.tabSectionBottomRight {
    width: 86%;
    padding-left: 8px;
}

#mainCenter .tabStripWrapper .tabContentWrapper .tabSectionBottomRight.subSectionSmall {
    width: 89%;
    max-width: 1004px;
    left: 0;
    padding-left: 10px;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper {
    position: relative;
    max-width: 1010px;
    width: 100%;
    height: 84%;
    min-height: 585px;
    top: 0;
    left: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #opacityWrapper {
    position: absolute;
    left: 24px;
    top: 22%;
    width: 96%;
    height: 75%;
    z-index: 3001;
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #opacityWrapper.opacityFade {
    background: none repeat scroll 0 0 #EBECF0;
    opacity: 0.6;
    display: block;

}

#mainCenter .tabSectionBottomRight .subSectionWrapper.show {
    opacity: 1 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.hide {
    opacity: 0 !important;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .subSectionInnerWrapper {
    position: relative;
    width: 99%;
    height: 100%;
    padding: 0 0 0 7px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .subSectionTop {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    margin-top: 1.7%;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop .subSectionAnnounceTop {
    position: relative;
    top: 3px;
    height: 23px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload  .subSectionInnerWrapper .subSectionTop .subSectionAnnounceTop {
    top: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop .horizontal-line {
    width: 98%;
    margin: 18px auto 0;
    background: #C5C5C5;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .subSectionTop button.tabContact {
    position: absolute;
    top: 16px;
    left: 82%;
    display: none;
}

/*UPDATE QB*/
#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper {
    width: 98%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .subSectionTop {
      height: 11%;
      margin-top: 1%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .subSectionTop .subSectionAnnounceTop {
    height: 95%;
    line-height: 140%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .subSectionMiddle {
    height: 75%;
    margin-top: 6.1%;
}

/*UPDATE SUCCESS*/


/*UPDATE PROGRESS*/
#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper {
    position: relative;
    width: 100%;
    height: 33%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper  .updateThrobberWrapper {
    position: relative;
    left: 0;
    width: 98.4%;
    height: 37%;
    margin: 0 auto;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .updateProgressAnnounce {
    position: relative;
    width: auto;
    min-width: 40px;
    height: 45%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .throbberImageSection {
    position: relative;
    top: 14px;
    width: 36px;
    height: 36px;
    margin-left: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .throbberImageSection.animatedGIF {
    background: url("../images/throbber-fan-32x32.gif") no-repeat;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .throbberImageSection canvas {
    position: relative;
    width: 33px;
    height: 33px;
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateProgress {
    position: relative;
    left: -0.2%;
    width: 98.9%;
    height: 57%;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #c5c5c5;
    background: #C7CEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem {
    position: relative;
    width: 9.5%;
    height: 29%;
    padding-bottom: 3%;
    padding-left: 0.8%;
    padding-right: 0.8%;
    padding-top: 3%;
    line-height: 18px;
    text-align: center;
    float: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem:last-of-type {
    width: 9.6%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem .updateProgressAnnounce {
    position: absolute;
    top: 21%;
    left: 5%;
    width: 90%;
    transform: translate(0px, 22%);
    -webkit-transform: translate(0px, 22%);
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem.red {
    background: #9b2c23;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem.green {
    background: #3CAF6B;
    background: #357C7F;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateMonthYearWrapper {
    position: relative;
    width: 100%;
    height: 57%;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateMonthYearWrapper .updateMainAnnounce {
    position: relative;
    width: auto;
    min-width: 40px;
    height: 37%;
    line-height: 33px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateMonthYearWrapper .updateMonthYearWidgetWrapper {
    position: relative;
    width: 36%;
    height: 28%;
    margin: 0 auto;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .updateMonthYearWrapper .updateMonthYearWidgetWrapper .kendoDropDownList {
    margin-left: 10%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .uploadSuccessStartButtonWrapper {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .uploadSuccessStartButtonWrapper button {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .successSectionWrapper {
    position: relative;
    width: 100%;
    height: 64%;
}
#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper {
    position: relative;
    width: 57%;
    height: 100%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce {
    margin-bottom: 1%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce.statusAnnounce {
    margin-bottom: 2%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounceTarget {
    position: relative;
    margin-bottom: 5%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounceStatusWrapper {
    position: relative;
    width: 60%;
    height: 31%;
    margin: 0 auto;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounceStatusWrapper .announceItem {
    position: relative;
    width: auto;
    height: 28%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.update .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce.alertAnnounce {
    position: relative;
    padding-top: 2%;
    margin-bottom: 0;
}


/*UPLOAD*/
#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper {
    width: 98%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .subSectionTop {
      height: 11%;
      margin-top: 1%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .subSectionTop .subSectionAnnounceTop {
    height: 95%;
    line-height: 140%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .subSectionMiddle {
    height: 75%;
    margin-top: 6.1%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper {
    position: relative;
    width: 100%;
    height: 32%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper .uploadUIWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper .uploadFileAnnounce {
    position: relative;
    width: auto;
    min-width: 10%;
    max-width: 54%;
    margin: 4% auto;
    text-align: center;
    line-height: 28px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper .progressBox.upload {
    position: relative;
    height: 5%;
    width: 33%;
    margin: 4% auto 0;
    padding: 3%;
    text-align: center;
    border: 1px solid #cecece;
    border-radius: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .progressBox.upload .progressBar {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 4%;
    background-color: #5982B8;
    border-radius: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .progressBox.upload .progressStatus {
    position: absolute;
    top: 6px;
    left: 31%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper .buttonWrapper {
    position: relative;
    margin-top: 3%;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper .uploadUIWrapper {
    position: relative;
    width: 70%;
    height: 100%;
    margin: 0 auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper .uploadUIWrapper #browseUpload {
    position: relative;
    top: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadFormWrapper form {
    position: absolute;
    top: -150%;
    left: -150%;
    width: 100%;
    height: 6%;
    visibility: hidden;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessSectionWrapper {
    position: relative;
    width: 100%;
    height: 64%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessSectionWrapper.error {
    height: 64%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessWrapper {
    position: relative;
    width: 70%;
    margin: 0 auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessItemWrapper {
    position: relative;
    width: 99%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessAnnounceWrapper {
    height: 18%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce {
    position: relative;
    margin-bottom: 0.5%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce.error {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessActionWrapper {
    height: 70%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessErrorWrapper {
    height: 70%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessAnnounceTop {
    height: 12%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessDateWrapper {
    height: 11%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessActionWrapper .uploadSuccessDateWrapper .uploadSuccessDateAnnounce {
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessActionWrapper .uploadSuccessDateWrapper .uploadSuccessDate {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessStartWrapper {
    height: 38%;
    margin-top: 2%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessStartWrapper .uploadSuccessStartAnnounce {
    height: 37%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessStartWrapper .uploadSuccessStartMonthTarget {
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessStartConfirm {
    margin-top: 1%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessActionWrapper .uploadSuccessStartButtonWrapper {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .uploadSuccessActionWrapper button {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper {
    position: relative;
    width: 100%;
    height: 33%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper  .updateThrobberWrapper {
    position: relative;
    left: 0;
    width: 98.4%;
    height: 37%;
    margin: 0 auto;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .updateProgressAnnounce {
    position: relative;
    width: auto;
    min-width: 40px;
    height: 45%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .throbberImageSection {
    position: relative;
    top: 14px;
    width: 36px;
    height: 36px;
    margin-left: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .throbberImageSection.animatedGIF {
    background: url("../images/throbber-fan-32x32.gif") no-repeat;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateThrobberWrapper .throbberImageSection canvas {
    position: relative;
    width: 33px;
    height: 33px;
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateProgress {
    position: relative;
    left: -0.2%;
    width: 98.9%;
    height: 57%;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #c5c5c5;
    background: #C7CEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem {
    position: relative;
    width: 10.86%;
    height: 31%;
    padding-bottom: 3%;
    padding-left: 0.9%;
    padding-right: 0.9%;
    padding-top: 3%;
    line-height: 18px;
    text-align: center;
    float: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem:last-of-type {
    width: 9.6%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem .updateProgressAnnounce {
    position: absolute;
    top: 21%;
    left: 5%;
    width: 90%;
    transform: translate(0px, 22%);
    -webkit-transform: translate(0px, 22%);
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem.red {
    background: #9b2c23;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .updateProgressWrapper .updateProgress .updateProgressItem.green {
    background: #3CAF6B;
    background: #357C7F;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper {
    position: relative;
    width: 57%;
    height: 100%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce {
    margin-bottom: 1%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce.statusAnnounce {
    margin-bottom: 2%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounceTarget {
    position: relative;
    margin-bottom: 5%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounceStatusWrapper {
    position: relative;
    width: 60%;
    height: 31%;
    margin: 0 auto;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper  .uploadSuccessAnnounceStatusWrapper .announceItem {
    position: relative;
    width: auto;
    height: 28%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper.upload .subSectionInnerWrapper .finalAnnounceWrapper .uploadSuccessAnnounceWrapper .uploadSuccessAnnounce.alertAnnounce {
    position: relative;
    padding-top: 2%;
    margin-bottom: 0;
}



#mainCenter .tabSectionBottomRight .subSectionWrapper .subSectionMiddle {
    position: relative;
    width: 100%;
    height: 69px;
    text-align: center;

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .subSectionBottom {
    position: relative;
    top: 0;
    left: 0;
}

/*GRID*/
/*
Column header:
selected: best: 5882b8 or d4deea
normal: b6c7d9

zebra stripes: ebecef + ffffff
*/

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-toolbar {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid grey;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-toolbar .subSectionTop {
    position: relative;
    top: 0;
    left: 0;
    height: 27px;
    margin-top: 21px;
    margin-bottom: 12px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-toolbar .subSectionTop .subSectionAnnounceTop {
    position: relative;
    top: 0;
    left: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-toolbar .subSectionTop button {
    position: absolute;
    top: -3px;
    left: 82%;
}

/*USER GRID*/
#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-users {
    position: relative;
    top: 0;
    left: 0;
    width: 97%;
    margin: 42px 0 0 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-header {
    background: #D4DEEA;
    background: #b6c7d9;
    background: #5982B8; /*same as button*/
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-state-selected {
    background-color: #BCC1C4;
    border-color: #BCC1C4;
    color: #0F67A6;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-header .k-header {
    padding: 9px 9px 3px;
    border-right-width: 1px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-header .k-header.text-left {
    position: absolute;
    left: 8px;
    width: 99%;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-header .k-header a {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-header .k-header .k-icon {
  position: absolute;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-content {
    color: #234A78;
}

/*add and edit user*/
#mainCenter .tabSectionBottomRight #subSectionWrapper #compImage {
    position: absolute;
    top: 6px;
    left: -2px;
    width: 100%;
    height: 99%;
    opacity: .2;
    background: url("../images/pma-addUser-comp-middle.jpg") no-repeat;
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionTop span.hasSelect {
    left: -159px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionTop span.hasSelectWide {
    left: -219px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.deleteUser .subSectionTop span.hasSelectWide {
    left: -21px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.deleteUser.confirm .subSectionTop span.hasSelectWide {
    left: -21px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionTop button.tabContact,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser subSectionTop button.tabContact {
    left: 783px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-incomeExpense {
    height: 67px;
    margin-top: 21px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-incomeExpense.subSectionTop button.tabContact {
    top: 11px;
    left: 819px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-incomeExpense {
    height: 39px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop .clearControl {
    position: absolute;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #clearAll-incomeExpense {
    top: 12px;
    left: 74%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #confirmClear-incomeExpense {
    top: 12px;
    left: 76%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #cancelClear-incomeExpense {
    top: 12px;
    left: 84%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #clearAll-expenseGrouping {
    top: 18px;
    left: 76%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #confirmClear-expenseGrouping {
    top: 18px;
    left: 70%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #cancelClear-expenseGrouping {
    top: 18px;
    left: 78%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #clearAll-expenseAssignment {
    top: 1px;
    left: 78%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #confirmClear-expenseAssignment {
    top: 1px;
    left: 76%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #cancelClear-expenseAssignment {
    top: 1px;
    left: 84%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-incomeExpense.subSectionTop #cancelClear-incomeExpense:hover,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-incomeExpense.subSectionTop #cancelClear-expenseGrouping:hover {
    background: #46659c;
    background: #9b2923;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-grouping.subSectionTop  #clearAll-expenseAssignment {
    position: absolute;
    top: -3px;
    left: 74%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-expenseAssignment.subSectionTop  #clearAll-expenseAssignment {
    position: absolute;
    top: 2px;
    left: 74%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #subSectionTopThrobberWrapper {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -6px;
    left: 70%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #subSectionTopThrobberWrapper.confirmGrouping {
    left: 72%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-incomeExpense.subSectionTop #subSectionTopThrobberWrapper {
    left: 65%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionMiddle {
    height: 66.4%;
    margin-top: 6.1%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper {
    position: relative;
    width: 819px;
    margin: 0 auto;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper #editUserSelectWrapper {
    position: absolute;
    top: -119px;
    left: 400px;
    width: 220px;
    height: 36px;
    z-index: 3002;
}

/*DELETE USER EXCEPTIONS*/
#mainCenter .tabSectionBottomRight #subSectionWrapper-deleteUser .subSectionTop #editUserSelectWrapper {
    position: relative;
    top: 1px;
    width: 220px;
    height: 36px;
}

#mainCenter .tabSectionBottomRight #subSectionWrapper-deleteUser button.tabContact {
    top: 18px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper #editUserSelectWrapper.hasSelectWide {
    left: 447px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-row,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-row{
  height: 36px;
  margin-bottom: 39px;
  position: relative;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-row.first,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-row.first {
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-row.last,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-row.last {
    height: 18px;
    margin-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionFormWrapper .formWrapper-row .formWrapper-column.left {
    position: relative;
    width: 102px;
    float: left;
    clear: left;
    text-align: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionFormWrapper .formWrapper-row .formWrapper-column.right {
    position: relative;
    max-width: 681px;
    min-width: 246px;
    margin-left: 33px;
    float: left;
    clear: right;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser input#email,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser input#email {
    width: 216px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser input#username,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser input#username {
    width: 216px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputWrapper {
    position: relative;
    min-width: 393px;
    height: 36px;
    text-align: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputWrapper.wide {
    min-width: 426px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputWrapper:last-of-type,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-inputWrapper:last-of-type {
    left: -11px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputWrapper.second,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-inputWrapper.second  {
    clear: none;
}

#mainCenter .tabSectionBottomRight .subSectionFormWrapper .formWrapper-inputAnnounce {
    position: relative;
    padding-top: 11px;
    float: right;
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionFormWrapper .formWrapper-inputAnnounce.kendoAnnounce {
    padding-top: 9px;
}


#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-spacer,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-spacer {
    margin-right: 99px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputWrapper.second .formWrapper-inputAnnounce,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-inputWrapper.second .formWrapper-inputAnnounce {
     margin-left: 30px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputAnnounce + span,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-inputAnnounce + span {
    left: -3px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-inputWrapper.second .formWrapper-inputAnnounce + span,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-inputWrapper.second .formWrapper-inputAnnounce + span {
    left: -21px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .radioGroupAnnounce,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .radioGroupAnnounce {
    position: relative;
    top: -6px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-radioGroup,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-radioGroup {
    position: relative;
    width: 600px;
    text-align: left;
    float: left;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-radioGroup .formWrapper-radioWrapper,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-radioGroup .formWrapper-radioWrapper {
    position: relative;
    left: -6px;
    width: 123px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-radioGroup .formWrapper-radioWrapper.last,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-radioGroup .formWrapper-radioWrapper.last {
    margin-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-radioGroup .radioAnnounce,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-radioGroup .radioAnnounce {

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper .formWrapper-radioGroup input,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper .formWrapper-radioGroup input {
    margin-right: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input::-moz-placeholder {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input:-moz-placeholder {
   text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input::-webkit-input-placeholder {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input:-ms-input-placeholder {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input::-moz-placeholder {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input:-moz-placeholder {
   text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input::-webkit-input-placeholder {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input:-ms-input-placeholder {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input {
    margin-left: 27px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionFormWrapper .formWrapper-column input {
    margin-left: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input#lastName,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input#lastName {
    margin-right: 30px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input[type="radio"],
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input[type="radio"]{
    margin-left: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input.tabSubSectionInput,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input.tabSubSectionInput {
    width: 216px;
    height: 36px;
    padding-top: 3px;
    color: #696E71;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.addUser .subSectionFormWrapper input.tabSubSectionInput:focus,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.editUser .subSectionFormWrapper input.tabSubSectionInput:focus {
    border-color: #89a4cf;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom {

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .horizontal-line {
    width: 98%;
    margin: 2px auto 0;
    background: #C5C5C5;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper {
    position: relative;
    width: 100%;
    padding-top: 18px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper .save {
    left: 27px;
    width: 113px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper .save:hover {
    background: #46659c;
    background: #9b2923;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper .save.disable {
    opacity: 0.2;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper.save.disable:hover {
    cursor: auto;
    background: #254A77;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper .clear {
    left: 324px;
    width: 108px;
}

/*addUser form kendo*/
#mainCenter .tabSectionBottomRight .subSectionFormWrapper .k-dropdown {
    height: 34px;
}

#mainCenter .tabSectionBottomRight  .k-dropdown-wrap,
#mainCenter .tabSectionBottomRight  .k-picker-wrap {
    height: 33px;
    font-size: 16px;
    border: 1px solid;
}

.k-dropdown-wrap.k-state-hover,
.k-picker-wrap.k-state-hover {
	border: 1px solid #A9AEB1;
}

#mainCenter .tabSectionBottomRight  .k-dropdown-wrap .k-input {
    height: 33px;
    text-align: left;
    line-height: 36px;
    color: #696E71;
    font-family: "Helvetica-Light", "Arial Narrow", Arial, sans-serif;
}

#mainCenter .tabSectionBottomRight .topSelect .k-dropdown-wrap .k-input {
    color: #254A77;
}

#mainCenter .tabSectionBottomRight  .k-dropdown-wrap .k-icon {
    margin-top: 10px;
}

body.pma .k-list-container {
    text-align: left;
    box-shadow: none;
}

body.pma .k-list-container ul.k-list li.k-item {
    margin-top: 3px;
    font-size: 15px;
    color: #696e71;
    line-height: 18px;
    font-family: "Helvetica-Light", "Arial Narrow", Arial, sans-serif;

}

body.pma .k-list-container ul.k-list li.k-item.k-state-hover,
body.pma .k-list-container ul.k-list li.k-item.k-state-hover:hover {
    background: #C7CEDE;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summaryWrapper {
    position: relative;
    width: 56%;
    margin: 0 auto;
    padding: 15px 0 0 0;
    text-align: left;
}

/*addUserSuccess*/
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.success .subSectionTop {
    padding-top: 24px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.success .subSectionMiddle {
    height: 435px;
    margin-top: 0;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.success #newUserAnnounce {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding-top: 36px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.success .summaryWrapper {
    position: relative;
    width: 56%;
    margin: 0 auto;
    padding: 15px 0 0 0;
    text-align: left;

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summarySectionWrapper {
    position: relative;
    margin-top: 18px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summaryItemAnnounce {
    position: relative;
    width: 141px;
    margin-right: 12px;
    text-align: right;
    float: left;
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summaryItemGroupWrapper {
    position: relative;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summaryItemGroupWrapper .summaryItem {
    width: auto;
    min-width: 18px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summaryItemWrapper {
    position: relative;
    width: 306px;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .summaryItem {
    position: relative;
    width: 100%;
    word-break:
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper button.success {
    margin-right: 72px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper button.success:hover {
    background: #9b2923;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper button.editUserSuccess {
    margin-right: 72px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper button.editUserSuccess:hover {
    background: #9b2923;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

/*DELETE USER SUCCESS*/

#mainCenter .tabSectionBottomRight .subSectionMiddle.deleteUserSuccess {
    height: 186px;
}

#mainCenter .tabSectionBottomRight .subSectionMiddle.deleteUserSuccess .summaryWrapper {
    position: relative;
    width: 56%;
    margin: 0 auto;
    padding: 45px 0 0 0;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionMiddle.deleteUserSuccess .summarySectionWrapper {
    position: relative;
    margin-top: 36px;
}

#mainCenter .tabSectionBottomRight .subSectionMiddle.deleteUserSuccess .summaryItemAnnounce {
    width: 204px;
}

/*PERMISSION VIEW*/
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.permissionsView .subSectionTop span.hasSelect {
    left: -195px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.permissionsView .subSectionTop span.hasSelectWide {
    left: -219px;
}

#mainCenter .tabSectionBottomRight #subSectionWrapper-permissionsView  #opacityWrapper {
    position: absolute;
    top: 13%;
    width: 97%;
    height: 87%;
    z-index: 3001;
    display: none;
}

#mainCenter .tabSectionBottomRight #subSectionWrapper-permissionsView #opacityWrapper.opacityFade {
    background: none repeat scroll 0 0 #EBECF0;
    opacity: 0;
    display: block;

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.permissionsView .subSectionMiddle {
    height: 492px;
    margin-top: 0;
    padding-top: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.permissionsView .subSectionFormWrapper #editUserSelectWrapper {
    position: absolute;
    top: -58px;
    left: 528px;
    width: 220px;
    height: 36px;
    z-index: 3002;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.permissionsView .subSectionFormWrapper {
    position: absolute;
    top: 0;
    left: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.permissionsView #gridWrapper-permissionView {
    position: relative;
    top: 0;
    left: 0;
    width: 90%;
    height: 468px;
    padding: 21px 0 0 45px;
}

/*PERMISSION GRID*/
#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-permissionsView {
    position: relative;
    top: 0;
    left: 0;
    width: 97%;
    margin: 33px 0 0 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #gridWrapper-permissionsView #grid-userPermissions {
    width: 84%;
    margin: 0 auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions .k-grid-content {
    min-height: 152px;
    max-height: 339px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions  .k-grid-toolbar {
    padding-bottom: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions .subSectionAnnounceTop {
  height: 36px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions .k-grid-toolbar #currentPermissionWrapper {
    position: relative;
    top: -2px;
    margin-left: 4px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions .k-grid-toolbar .k-input {
    height: 30px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions .k-grid-toolbar .k-dropdown-wrap,
#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions .k-grid-toolbar .k-picker-wrap {
    height: 30px;
    font-size: 14px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions .k-master-row td:last-of-type,
#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions .k-detail-cell td:last-of-type {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions td .k-input {
    height: 21px;
    line-height: 21px;
    color: #254A77;
}

body.pma .k-list-container  {
    border-color: #A9AEB1;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions td.k-picker-wrap {
    font-size: 13px;
    height: 21px;
    border: 1px solid;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions td .k-dropdown-wrap,
#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions td .k-picker-wrap {
    font-size: 13px;
    height: 21px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #grid-userPermissions td .k-icon {
  margin-top: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions .k-hierarchy-cell {
    padding-right: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions td.k-detail-cell {
    padding: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions #sectionGrid {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions #sectionGrid .k-grid-header {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper #grid-userPermissions .sectionGrid #subsectionGrid {

}

/*SYSTEM*/
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-systemGeneral {
    height: 432px;
    margin-top: 18px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionTop #subSectionAnnounceTop-systemGeneral {
    left: -36px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-row {
    margin-bottom: 27px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionFormWrapper #formWrapper-systemGeneral .formWrapper-column.right {
    min-width: 285px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral input.tabSubSectionInput {
    width: 272px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral input#practiceName {
    width: 486px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral {
    width: 951px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.first {
    min-width: 375px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.first .formWrapper-column.right {
    min-width: 222px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.middle {
    left: -24px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-column.left {
    width: 128px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-column.left.wide {
    width: 138px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-column.wide .formWrapper-inputAnnounce {
    padding-top: 4px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-column.right {
    margin-left: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-row.first .formWrapper-column.right {
    margin-left: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.middle {
    max-width: 297px;
    min-width: 140px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.middle .formWrapper-column.right {
    max-width: 201px;
    min-width: 180px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.middle .formWrapper-column.left {
    width: 83px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.last {
    left: -18px;
    min-width: 222px;
    float: right;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.last
.formWrapper-column.left {
    width: 78px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.last
.formWrapper-column.right {
    min-width: 198px;
}

/*update widget*/
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.updateWidget {
    min-width: 261px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.updateWidget .formWrapper-column.left {
    width: 138px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.updateWidget .formWrapper-column.right {
    min-width: 123px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.updateWidget .innerAnnounce {
    margin-right: 7px;
    margin-left: 0;
    padding-top: 10px;
    float: left;
    clear: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .formWrapper-inputWrapper.updateWidget #frequencyInternalWrapper {
    left: -2px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral input.kendoNumericTextBox {
    height: 33px;
    margin-left: 0;
    padding-left: 6px;
    padding-top: 1px;
    color: #919699;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .k-numeric-wrap {
    border-width: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral .k-numeric-wrap .k-select {
    padding-top: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral span.setLeft {
    position: relative;
    top: -1px;
    margin-left: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-systemGeneral input#email {

}

/*REPORTS SECTION GRID
    border-color: #9b2c23;
    color: #9b2c23;
    border #254A77
        color: #9b2c23;
*/

.k-grid table,
.k-grid table tr,
.k-grid table tbody {
    position: relative;
}

.k-grid > table > tbody .k-group-cell + td,
.k-grid > .k-grid-content .k-group-cell + td,
.k-grid .k-hierarchy-cell + td {
    position: relative;
    border-left-width: 0;
    line-height: 14px;
    padding: 8px 0 8px 0;
}

.k-grid .k-group-col,
.k-grid .k-hierarchy-col {
    width: 24px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-state-selected {
    background-color: #FFF;
    color: #234A78;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-alt.k-state-selected {
    background-color: #EBECEF;
    color: #234A78;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .highlightFlash {
    color: #9b2c23 !important;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .highlightFlashRemove {
    color: #234A78;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.8s ease;
}


/*EXPENSE GROUPING*/
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-grouping {
    padding-top: 18px;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-grouping {
    left: 135px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-grouping.throbberShow {
    left: 294px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-grouping.successShow {
    left: 216px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-expenseAssignment.throbberShow {
    left: 294px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-expenseAssignment.successShow {
    left: 216px;
}

body.pma .k-list-container li.k-item span.gridDropDownItem {
    font-size: 13px;
    line-height: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper.grouping .subSectionMiddle {
    height: 82%;
    margin-top: 0;
    padding-top: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping {
    position: relative;
    height: 98%;
    top: 0;
    left: 0;
    width: 97%;
    margin: 9px 0 0 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-header {
    display: table-header-group;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping tr.k-detail-row td.k-detail-cell {
    padding-top: 3px;
    padding-right: 0;
    padding-bottom: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-master-row td {
    padding-top: 12px;
    padding-bottom: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .coaGrid .k-master-row td {
    padding-top: 15px;
    padding-bottom: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-edit {
    margin-top: 0;
    margin-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .coaGrid .k-grid-header {
    display: table-header-group;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .coaGrid.child .k-grid-header .k-header {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-header .k-header {
    padding: 9px 0 6px 0px;
    text-align: left;
    border-right-width: 0;
    font-size: 14px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-header th.k-header:nth-of-type(3) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-header th.k-header:nth-of-type(4) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-header th.k-header:nth-of-type(5) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-grid-header th.k-header:nth-of-type(6) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-icon.k-plus,
#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-grouping .k-icon.k-minus {
    position: relative;
    top: -1px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping {
    width: 98%;
    height: auto;
    max-height: 99%;
    min-height: 177px;
    margin: 0 auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .k-grid-content {
    position: relative;
    min-height: 110px;
    max-height: 387px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .k-grid-content tr.k-master-row {
    position: relative;
    z-index: 1;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .k-grid-content .k-hierarchy-cell {
    padding-left: 3px;
    padding-right: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid.child {
    top: -8px;
    left: 1px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid.child .k-grid-header {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid .k-grid-content {
     min-height: 37px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid .tableCheckboxWrapper {
    position: relative;
    top: -1px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid .tableCheckboxWrapper .tableCheckbox {
    position: relative;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid .tableCheckboxWrapper .tableCheckboxAnnounce {
    position: relative;
    top: 2px;
    margin-left: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .k-grid-toolbar .subSectionTop {
    position: relative;
    height: 21px;
    margin-top: 15px;
    margin-bottom: 6px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping td input.allocationTextInput {
    width: 30px;
    margin: 0 auto;
    padding-top: 3px;
    display: block;
    font-size: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .gridDropDown {
    height: 25px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .gridDropDown .k-dropdown-wrap {
    height: 24px;
    border: 1px solid #C5C5C5;
    font-size: 13px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .gridDropDown .k-dropdown-wrap .k-input {
    height: 24px;
    color: #696E71;
    font-family: "Helvetica-Light","Arial Narrow",Arial,sans-serif;
    line-height: 26px;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .gridDropDown .k-dropdown-wrap .k-icon {
    margin-top: 2px;
}


#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-update,
#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-cancel,
#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-edit {
    font-family: "Helvetica-Light","Arial Narrow",Arial,sans-serif;
    font-size: 12px;
    padding-top: 3px;
    padding-bottom: 1px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-update .k-icon {
    margin-top: -2px;
    margin-left: 3px;
    margin-bottom: 0;
    margin-right: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-cancel .k-icon {
    margin-top: -2px;
    margin-left: 3px;
    margin-bottom: 0;
    margin-right: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-grid-edit .k-icon {
    margin-top: -2px;
    margin-left: -5px;
    margin-bottom: 0;
    margin-right: 4px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-icon.k-plus,
#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .k-icon.k-minus {
    position: relative;
    top: -3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .coaGrid .k-numeric-wrap .k-icon {
    margin-top: 0px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .k-widget.k-tooltip-validation {
    margin-left: -70px !important;
    padding-top: 8px;
    padding-right: 8px;
    background-color: #D3D4D7;
    border-color: #234A78;
    color: #234A78;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .k-tooltip-validation .k-warning {
    position: relative;
    top: -2px;
    margin-right: 6px;
    vertical-align: text-top;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid .k-master-row td:last-of-type,
#mainCenter .tabSectionBottomRight .subSectionWrapper .grid-grouping .coaGrid .k-detail-cell td:last-of-type {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .coaGrid.first .k-grid-header .k-header {
    border-right-width: 1px;
    padding: 6px 9px 3px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .coaGrid.first .k-grid-header th.k-hierarchy-cell +th {
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .coaGrid.child .k-grid-header .k-header {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper tr.k-detail-row td.k-detail-cell {
    padding-right: 0;
}

/*INCOME-EXPENSE*/
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-incomeExpense {
    left: -65px;
    max-width: 584px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-incomeExpense {
    height: 420px;
    margin-top: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #incomeExpenseLeftAnnounce {
    position: absolute;
    top: 156px;
    left: 33px;
    width: 144px;
    height: 132px;
    border: 1px solid red;
    display: block;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #incomeExpenseLeftAnnounce.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense {
    left: 15px;
    height: 94%;
    width: 564px;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense.projectClasses {
    left: 39px;
    width: 864px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .columnAnnounceTop {
    position: relative;
    height: 21px;
    margin-bottom: -1px;
    padding-top: 9px;
    border: 1px solid #FF0000;
    text-align: center;
    background-color: #C7CEDE;
    border-color: #696E71;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .columnAnnounceTop.active {
    background-color: #5982B8;
    border-color: #254A77;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense #columnLeft-incomeExpense .columnAnnounceTop {
    width: 224px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense.projectClasses #columnLeft-incomeExpense .columnAnnounceTop {
    width: 257px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense #columnMiddle-incomeExpense .columnAnnounceTop {
    width: 257px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense #columnRight-incomeExpense .columnAnnounceTop {
    width: 263px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense.projectClasses #columnRight-incomeExpense .columnAnnounceTop {
    width: 223px;

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense #columnRight-incomeExpense .columnAnnounceTop.expense {

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewWrapper {
    position: relative;
    width: 100%;
    text-align: center;
}

.listViewItemWrapper.incomeExpense {
    position: relative;
    height: 15px;
    width: 192px;
    padding: 9px 3px 5px 3px;
    margin: 3px auto 5px;

    border-radius: 4px 4px 4px 4px;
    text-align: center;
    cursor: pointer;
    line-height: 13px;

    background-color: #C7CEDE;
    border: 1px solid #696E71;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper {
    position: relative;
    height: 15px;
    width: 192px;
    padding: 9px 3px 5px 3px;
    margin: 3px auto 5px;

    border-radius: 4px 4px 4px 4px;
    text-align: center;
    cursor: pointer;
    line-height: 13px;

    background-color: #fff;
    border: 1px solid #919699;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper.k-alt {
    background-color: #EBECEF;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper.move {
    cursor: move;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper:hover,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper.k-alt:hover {
    background-color: #C7CEDE;
    border-color: #696E71;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper.dragging,
#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense .listViewItemWrapper.k-alt.dragging {
    position: relative;
    height: 15px;
    width: 192px;
    padding: 9px 3px 5px 3px;
    margin: 3px auto 5px;
    background-color: #C7CEDE;
    border-color: #696E71;
    border-radius: 4px 4px 4px 4px;
    text-align: center;
    cursor: pointer;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #columnLeft-incomeExpense {
    position: relative;
    width: 40%;
    float: left;
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #columnLeft-incomeExpense.projectClasses {
    width: 30%;
    margin-right: 36px;
    margin-left: 84px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #columnLeft-listViewWrapper {
    position: relative;
    height: 90%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #listView-incomeExpense {
    position: relative;
    height: 354px;
    padding-top: 5px;
    border: 1px solid #919699;
    overflow-y: auto
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #columnRight-incomeExpense {
    position: relative;
    width: 47%;
    margin-left: 24px;
    float: left;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #columnMiddle-incomeExpense.projectClasses {
    position: relative;
    width: 30%;
    float: left;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #columnRight-incomeExpense.projectClasses {
    width: 26%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #listViewWrapper-income {
    position: relative;
    height: 42%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #listView-income {
    position: relative;
    height: 153px;
    padding-top: 5px;
    border: 1px solid #919699;
    overflow-y: auto;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #listViewWrapper-expense {
    position: relative;
    height: 42%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #listView-expense {
    position: relative;
    height: 153px;
    padding-top: 5px;
    border: 1px solid #919699;
    overflow-y: auto;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense.projectClasses #listView-expense {
  height: 354px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #formWrapper-incomeExpense.projectClasses #listView-income {
  height: 354px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionBottom .buttonWrapper #save-incomeExpense {
    left: -27px;
}

/*EXPENSE ASSIGNMENT*/
#mainCenter .tabSectionBottomRight #subSectionWrapper-expenseAssignment {
    padding-left: 0;
}

#mainCenter .tabSectionBottomRight #subSectionWrapper-expenseAssignment .subSectionInnerWrapper.expenseAssignment {
    width: 99.4%;
    max-width: 1003px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionWrapper-expenseAssignment {

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionTop-expenseAssignment {
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-expenseAssignment {
    left: 90px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionMiddle .subSectonSlideUp {
    position: absolute;
    top: -49px;
    left: 4px;
    width: 1003px;
    height: 538px;
    border-top: 1px solid #C5C5C5;
    -webkit-transition: height 0.2s ease;
    -moz-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    -ms-transition: height 0.2s ease;
    transition: height 1.5s ease;
    background: #fff;
    z-index: 3001;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionMiddle .subSectonSlideUp.shrink {
    height: 0;
    top: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: height 0.2s ease;
    -moz-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    -ms-transition: height 0.2s ease;
    transition: height 1.5s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionMiddle .subSectonSlideUp.hide {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper .subSectionMiddle .subSectonSlideUp.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment {
    height: 85%;
    max-height: 493px;
    margin-top: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #expenseAssignment-slideUp {

}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .gridWrapper {
    position: relative;
    position: absolute;
    height: 100%;
    min-height: 479px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper .k-icon.k-plus,
#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper .k-icon.k-minus {
    position: relative;
    top: -4px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-expense {
    top: 0;
    left: 0;
    width: 48%;
    margin-left: 12px;
    margin-right: 6px;
    float: left;
    clear: left;
    z-index: 3001;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-expense.fixedDivStart {
    position: fixed;
    top: 34%;
    left: 19%;
    bottom: 0;
    right: 0;
    width: 48%;
    margin: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-expense.fixedDiv {
    top: 2%;
    left: 11%;
    height: 61%;
    width: 74%;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-expense.fixedDivReturn {
    top: 34%;
    transition: all 1s ease 0s;
}


#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income {
    width: 48%;
    right: 12px;
    float: right;
    clear: right;
    z-index: 1;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .gridWrapper .expenseAssignmentGrid {
    position: relative;
    margin: 0 auto;
    width: 99%;
    height: auto;
    max-height: 90%;
    min-height: 488px;
    float: left;
    clear: left;
    opacity: 1;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .gridWrapper .expenseAssignmentGrid.hide {
    opacity: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .gridWrapper #gridWrapper-expense {
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .gridWrapper #gridWrapper-income {
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper .k-grid-toolbar {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid grey;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .k-grid-toolbar .subSectionTop {
    position: relative;
    height: auto;
    min-height: 21px;
    margin-top: 9px;
    margin-bottom: 0;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .k-grid-toolbar .subSectionTop .subSectionAnnounceTop {
    position: relative;
    height: auto;
    min-height: 21px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .k-grid-toolbar .subSectionTop #subSectionAnnounceTop-incomeFlip.subSectionAnnounceTop {
    max-width: 414px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .expenseAssignmentGrid div.k-grid-header {
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .coaGrid.first div.k-grid-header {
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .first .coaGrid.middle div.k-grid-header {
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .first .coaGrid.middle th.k-header:nth-of-type(1) {
    padding-right: 0;
    padding-left: 0;
    border-right: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .first .coaGrid.middle th.k-header:nth-of-type(2) {
    padding-left: 0;
    border-left: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .first .coaGrid.middle th.k-header:nth-of-type(3) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .coaGrid div.k-grid-header {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .expenseAssignmentGrid div.k-grid-header th.k-header {
    border-right: 0 none;
    font-size: 14px;
    padding: 9px 0 3px;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment  #gridWrapper-income .coaGrid div.k-grid-header th.k-header {
    font-size: 12px;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment  #gridWrapper-income #grid-incomeFlip .coaGrid div.k-grid-header th.k-header:nth-of-type(2) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .expenseAssignmentGrid .k-grid-content {
    max-height: 429px;
    min-height: 429px;
    font-size: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .coaGrid .k-grid-content {
    height: auto;
    max-height: 5000px;
    min-height: 77px;
    font-size: 12px;
    overflow: hidden;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #gridWrapper-income .coaGrid .k-grid-content {
      font-size: 12px;
      height: auto;
      max-height: 5000px;
      min-height: 77px;
      overflow: hidden;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .k-grid-content .k-hierarchy-cell {
    padding-left: 3px;
    padding-right: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .coaGrid.first  .k-grid-header .k-header.income {
    left: 4px;
    width: 98%;
    padding: 6px 0 3px 3px;
    border-right-width: 1px;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .gridWrapper .coaGrid.first .k-grid-header .k-header {
    padding: 6px 9px 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-expense .coaGrid.first .k-grid-header .k-header:nth-of-type(1) {
    border-right-width: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-expense .coaGrid.first .k-grid-header .k-header:nth-of-type(2) {
    padding: 6px 9px 3px 9px;
    border-left-width: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-expense .coaGrid.first .k-grid-header .k-header:nth-of-type(2) {
    position: absolute;
    left: -1px;
    width: 43%;
    padding: 6px 9px 3px 9px;
    border-left-width: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid tr.k-detail-row td.k-detail-cell {
    padding-top: 0;
    padding-right: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid tr.k-detail-row td.k-detail-cell {
    padding-top: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid.first tr.k-detail-row .k-detail-cell {
    padding-top: 3px;
    padding-bottom: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid.middle tr.k-detail-row .k-detail-cell {
    padding-top: 3px;
    padding-bottom: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid.child {
    left: 1px;
    top: -3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper  #gridWrapper-expense .coaGrid .k-master-row td:nth-of-type(3) {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid .k-master-row td:last-of-type,
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid .k-detail-cell td:last-of-type,
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid.employees tr td:last-of-type {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid.employees .k-grid-header tr th:first-of-type {
    padding-left: 7px;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid.employees .k-grid-header .k-header:nth-of-type(2) {
    position: relative !important;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-income .coaGrid .k-master-row td:last-of-type {
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-income .coaGrid .coaGrid.middle .k-master-row td:last-of-type {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #gridWrapper-income .coaGrid .incomeWriteInsert {
    position: relative;
    padding-top: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-button,
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-edit-form-container .k-button {
    font-size: 11px;
    margin-bottom: 3px;
    margin-left: 0.16em;
    margin-right: 0.16em;
    margin-top: 3px;
    color: #254A77;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-button:hover,
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-edit-form-container .k-button:hover {
    color: #fff;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-button.dark,
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-edit-form-container .k-button.dark {
    background-color: #5882B8;
    border-color: #254A77;
    color: #ebecef;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-button.dark:hover,
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid  .k-edit-form-container .k-button.dark:hover {
    background-color: #B6C7D9;
    border-color: #C5C5C5;
    color: #373737;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .headerButton.floatButton {
    width: 54px;
    min-width: 0;
    margin-right: 6px;
    float: right;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid #incomeSummaryClose {
    position: relative;
    top: -2px;
    left: 0;
    padding: 3px 0 1px;
    width: 54px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton {
    width: 113px;
    margin: 3px 2px 3px 0;
    padding: 2px 8px 2px 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid span.preAllocated {
    position: relative;
    margin: 3px 0 3px 0;
    padding: 2px 0 2px 0;
    color: #254A77;
    font-size: 12px;
}

/*
#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.floatButton {
    width: 108px;
    margin: 9px auto;
    padding-top: 4px;
    display: block;
}
*/

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.floatButton {
    width: 48px;
    min-width: 1px;
    margin: 2px 10px 2px 6px;
    padding-top: 0;
    padding-bottom: 0px;
    display: inline-block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.hide {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.show {
    display: inline-block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.disable {
    opacity: .2;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.disable:hover {
    cursor: auto;
    background: #B6C7D9;
    color: #254A77;
    border-color: #C5C5C5;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid a.expenseAllocationButton.show.changeAssignments {
    margin-top: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper span.kendoCheckMarkSmall.buttonRow {
    position: relative;
    top: -3px;
    margin-top: 0;
    margin-left: 5px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper span.kendoMinusSmall.buttonRow {
    position: relative;
    top: -3px;
    margin-top:  0;
    margin-left: 5px;
}



#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .coaGrid .k-button-icontext .k-icon {
    margin-bottom: 0;
    margin-left: -3px;
    margin-right: 3px;
    margin-top: -2px;
    vertical-align: text-top;
}

/*Profit Center Setup*/
#mainCenter .tabSectionBottomRight #subSectionWrapper-profitCenterSetup {
    padding-left: 0;
}

#mainCenter .tabSectionBottomRight #subSectionWrapper-profitCenterSetup .subSectionInnerWrapper.profitCenter {
    width: 99%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionAnnounceTop-profitCenterSetup {
    left:  -84px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup {
    height: 495px;
    margin-top: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .gridWrapper {
    position: relative;
    position: absolute;
    height: 100%;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup #gridWrapper-employee {
    width: 591px;
    width: 519px;
    width: 486px;
    margin-left: 15px;
    margin-left: 12px;
    margin-right: 6px;
    z-index: 3001;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup #gridWrapper-income {
    width: 333px;
    width: 465px;
    width: 486px;
    right: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .gridWrapper .expenseAssignmentGrid {
    margin: 0 auto;
    width: 99%;
    float: left;
    opacity: 1;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .gridWrapper .expenseAssignmentGrid.hide {
    opacity: 0;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .gridWrapper #gridWrapper-expense {
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .gridWrapper #gridWrapper-income {
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-profitCenterSetup .gridWrapper .k-grid-toolbar {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid grey;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-profitCenterSetup .k-grid-toolbar .subSectionTop {
    position: relative;
    height: auto;
    min-height: 21px;
    margin-top: 9px;
    margin-bottom: 0;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-profitCenterSetup .k-grid-toolbar .subSectionTop .subSectionAnnounceTop {
    position: relative;
    height: auto;
    min-height: 21px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-profitCenterSetup .k-grid-toolbar .subSectionTop #subSectionAnnounceTop-incomeFlip.subSectionAnnounceTop {
    max-width: 414px;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .expenseAssignmentGrid div.k-grid-header {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-profitCenterSetup .expenseAssignmentGrid .k-grid-content {
    max-height: 456px;
    min-height: 456px;
    font-size: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .k-grid-content .k-hierarchy-cell {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 3px;
}

/*SLIDE BOX*/
#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox {
    height: auto;
    min-height: 485px;
    text-align: center;
    background: #fff;
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .underline {
    text-decoration: underline;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .center {
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid {
    width: 99%;
    height: 479px;
    text-align: center;
    border: 1px solid #C5C5C5;
    background: #fff;
    -webkit-transition: width 0.4s ease;
    -moz-transition: width 0.4s ease;
    -o-transition: width 0.4s ease;
    -ms-transition: width 0.4s ease;
    transition: width 0.4s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-incomeGrid {
    width: 99%;
    max-height: 488px;
    min-height: 488px;
    text-align: center;
    background: #fff;
    border: 1px solid #C5C5C5;
    overflow: hidden;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBox-insertWrapper {
    position: absolute;
    width: 95%;
    height: 100%;
    margin: 0 auto;
    padding: 0 12px;
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid .slideBox-insertWrapper {
    width: 455px;
    text-align: center;
    background: #fff;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox #slideBox-insertWrapper-income {
    width: 100%;
    padding: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .gridWrapper #grid-incomeFlip {
    width: 100% !important;
    height: 488px;
    border: none;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment .slideBox .expenseAssignmentGrid div.k-grid-header th.k-header {
    border-right-width: 1px;
    padding: 6px 9px 3px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #grid-incomeFlip.expenseAssignmentGrid .k-grid-header {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .gridWrapper #grid-incomeFlip tr.k-detail-row td.k-detail-cell {
    padding-top: 0;
    padding-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .gridWrapper #grid-incomeFlip .coaGrid {
    border-right-width: 0;
    border-bottom-width: 0;
}

#mainCenter .tabSectionBottomRight #subSectionMiddle-expenseAssignment #gridWrapper-income .slideBox #grid-incomeFlip .coaGrid .k-grid-content {
    height: 345px;
    overflow-y: scroll;
}

#mainCenter .tabSectionBottomRight #subSectionMiddle-expenseAssignment #gridWrapper-income .slideBox #grid-incomeFlip .coaGrid.employee .k-grid-content {
    height: 402px;
    overflow-y: scroll;
}

#mainCenter .tabSectionBottomRight .subSectionInnerWrapper #subSectionMiddle-expenseAssignment #grid-incomeFlip.expenseAssignmentGrid td.k-detail-cell .k-grid-header {
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBox-insertWrapper.hide {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxTitle {
    position: relative;
    width: 100%;
    height: 30px;
    top: 0;
    left: 0;
    margin-top: 9px;
    margin-bottom: 9px;
    text-align: center;
    border-bottom: 1px solid #C5C5C5;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxSection {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxSourceTarget {
    margin-right:  15px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxTitle .subSectionAnnounceTop {
    position: relative;
    height: auto;
    min-height: 23px;
    padding-bottom: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox #slideBoxTitle-expenseAssignment.slideBoxTitle .subSectionAnnounceTop {
    padding-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxTitle #slideBoxTitle-expenseAssignment_evenly.subSectionAnnounceTop {
    padding-bottom: 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxTop {
    position: relative;
    height: auto;
    min-height: 27px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .sectionAnnounce {
    position: relative;
    height: auto;
    min-height: 21px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxMiddle {
    position: relative;
    height: auto;
    min-height: 165px;
    max-height: 315px;
    padding-top: 12px;
    padding-bottom: 18px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxMiddle.evenly {
    padding-bottom:  9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper {
    position: relative;
    margin-bottom: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox div.slideBoxItemWrapper.inlineGroupWrapper {
    padding-top: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox div.slideBoxItemWrapper.inlineGroup {
    top: -2px;
    max-width: 70%;
    margin-left: 4px;
    padding: 9px 0 6px 18px;
    border: 1px solid #DEDEDE;
    background: #F9F9F9;
    border-radius: 3px;
    float: left;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox div.slideBoxItemWrapper.inlineGroup.evenly {
    width: 256px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox div.slideBoxItemWrapper.inlineGroup.evenly button {
    top: -1px;
    left:  15px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper.child {
    margin-top: -12px;
    padding-left: 15px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper.hide {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper.group {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper.group .slideBoxSourceTarget {
    margin-right: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper .slideBoxItemAnnounce {
    position: relative;
    top: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper span.slideBoxItemAnnounce.inlineGroup {
    margin-right: 9px;
    float: left;
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper.evenly span.slideBoxItemAnnounce.inlineGroup {
    top: 8px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxItemWrapper.group .slideBoxItemAnnounce {
    margin-right: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxSectionWrapper {
    position: relative;
    height: auto;
    min-height: 18px;
    margin-top: 12px;
    padding-left: 18px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxSectionWrapper.first {
    margin-top: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .slideBox .slideBoxSectionWrapper .sectionIcon.k-icon {
    position: relative;
    top: -2px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxSectionWrapper .sectionAnnounce-inline {
    margin-right: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxSectionWrapper .slideBoxItemAnnounce {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .hierarchyWrapper {
    position: relative;
    height: auto;
    min-height: 47px;
    max-height: 222px;
    padding-bottom: 18px;
    overflow-y: auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .hierarchyWrapper .slideBoxHierarchyTarget {
    position: relative;
    max-width: 60%;
    height: auto;
    min-height: 23px;
    max-height: 150px;
    margin-bottom: 18px;
    margin: 6px auto 0;
    padding: 3px 0 6px 12px;
    border: 1px solid #DEDEDE;
    background: #F9F9F9;
    border-radius: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .hierarchyWrapper .slideBoxHierarchyTarget.hide {
    opacity: 0;
    display: block;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .hierarchyWrapper .slideBoxHierarchyTarget.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper .slideBox .hierarchyWrapper .slideBoxHierarchyTarget .k-icon.k-plus,
#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper .slideBox .hierarchyWrapper .slideBoxHierarchyTarget .k-icon.k-minus {
    top: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper #slideBoxColumnWrapper-editAssignment .hierarchyWrapper .slideBoxHierarchyTarget .k-icon.k-plus,
#mainCenter .tabSectionBottomRight .subSectionWrapper #subSectionMiddle-expenseAssignment .gridWrapper #slideBoxColumnWrapper-editAssignment .hierarchyWrapper .slideBoxHierarchyTarget .k-icon.k-minus {
    top: -3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxActionWrapper {
    position: relative;
    width: 100%;
    padding-top: 6px;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxActionWrapper.evenly {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxActionWrapper button.slideBoxSelect {
    background: none repeat scroll 0 0 #46659C;
    color: #FFFFFF;
    transition: all 0.2s ease 0s;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox button.slideBoxSelect:hover {
    background: none repeat scroll 0 0 #C7CEDE;
    background: none repeat scroll 0 0 #f69322;
    transition: all 0.2s ease 0s;
    color: #254A77;
    color: #fff;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxActionWrapper button.slideBoxSelect.large {
    left:  -6px;
    width: 161px;
    margin-left: 24px;
    padding-bottom: 4px;
    padding-top: 4px;
    line-height: 17px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxBottom {
    position: relative;
    width: 100%;
    height: 42px;
    padding-top: 18px;
    border-top: 1px solid #C5C5C5;
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxBottom .slideBoxButtonWrapper {
    position: relative;
    text-align: center;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxBottom .slideBoxButtonWrapper button {
    width: 139px;
    padding: 4px 3px 4px 5px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .slideBoxBottom .slideBoxButtonWrapper.evenly button {
    margin-left: 21px;
    padding: 8px 3px 6px;
    width: 158px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox button.small {
    padding: 2px 3px 1px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .hierarchyAnnounceRow {
    position: relative;
    margin-top: 6px;
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .hierarchyAnnounce {
    position: relative;

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .hierarchyAnnounce.horizontal {
    margin-right: 3px;
    float: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .hierarchyIcon.horizontal {
    width: 4px;
    height: 11px;
    margin: 5px 5px 0 3px;
    float: left;
    background-position: -22px -275px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .k-master-row .hierarchyIcon.horizontal {
    margin-top: 2px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounce {
    padding-top: 4px;
    padding-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper {
    position: relative;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper.employee {
    height: 21px;
    padding-top: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper .hierarchyTopWrapper {
    position: relative;
    width: 100%;
    margin-top: 3px;
    line-height: 17px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper .hierarchyTopWrapper .hierarchyAnnounceTop {

}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper .hierarchyTopWrapper .hierarchyWrapper {
    position: relative;
    width: 431px;
    height: auto;
    min-height: 15px;
    margin-top: 6px;
    margin-left: 12px;
    padding-top: 6px;
    padding-bottom: 5px;
    padding-left: 6px;
    border: 1px solid #CBD0D3;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper .hierarchyTopWrapper .hierarchyWrapper .hierarchyIcon.horizontal {
    margin: 3px 5px 0 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper .mainRowActionWrapper {
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .mainRowAnnounceWrapper .mainRowActionWrapper .mainRowActionAnnounce {
    position: relative;
    width: 98%;
    line-height: 17px;
    float: left;
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .expenseAssignmentGrid .mainRowAnnounceWrapper .mainRowActionWrapper button {
    top: -2px;
    margin-right: 6px;
    margin-left: 12px;
    padding-top: 3px;
    float: right;
    clear: right;
}

/*MOVE THIS*/
#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-incomeGrid #grid-incomeFlip .coaGrid td:nth-child(2) {
    text-align: center;
}

/*EDIT*/

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.tall {
    width: 596px;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 1.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide {
    position: absolute;
    width: 920px;
    height: 543px;
    -webkit-transition: width 1.2s ease;
    -moz-transition: width 1.2s ease;
    -o-transition: width 1.2s ease;
    -ms-transition: width 1.2s ease;
    transition: width 1.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.show {
    opacity: 1;
    -webkit-transition: opacity 0.8s ease;
    -moz-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    -ms-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBox-insertWrapper {
    width: 97%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxTitle .subSectionAnnounceTop {
    padding-top: 3px;
    padding-bottom: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumnWrapper {
    position: relative;
    height: 419px;
    padding-top: 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn {
    position: relative;
    height: 100%;
    float: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left {
    width: 36%;
    margin-top: 0;
    padding-left: 6px;
    clear: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left .hierarchyWrapper {
    min-height: 47px;
    max-height: 119px;
    overflow: hidden;
    padding-bottom: 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left .slideBoxHierarchyTarget {
    max-width: 86%;
    height: auto;
    max-height: 101px;
    margin: 6px auto 0;
    padding: 3px 0 6px;
    overflow-y: auto;
}


#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right {
    width: 63%;
    clear: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right .slideBoxTop .sectionAnnounce {
    width: 251px;
    margin: 0 auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right .slideBoxMiddle {
    position: relative;
    padding-top: 9px;
    border-radius: 3px;
    background: none repeat scroll 0 0 #F9F9F9;
}

/*slide box edit*/
#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right #slideBoxMiddle-expenseAssignment_edit.slideBoxMiddle {
    max-height: 96%;
    width: 98%;
    padding: 0;
    background: #FFFFFF;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox #allocationEditWrapper.editWrapper {
    position: relative;
    width: 100%;
    border: 1px solid #80A5D2;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editAnnounceWrapper {
    position: relative;
    height: 28px;
    background: #B6C7D9;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editAnnounce {
    width: 82px;
    margin-right: 17px;
    margin-left: 15px;
    padding-top: 8px;
    padding-bottom: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editAnnounce.first {
    margin-right: 156px;
    margin-left: 9px;
    width: 48px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editAnnounce.last {
    width: 133px;
    margin-right: 0;
    margin-left: 45px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editWrapperSpacer {
    position: relative;
    top: -9px;
    height: 30px;
    width: 1px;
    background: #DEDEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper {
    position: relative;
    width: 342px;
    height: 240px;
    border-top: 1px solid #80A5D2;
    border-right: 1px solid #80A5D2;
    overflow-y: scroll;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper .targetWrapper {
    border-bottom: 1px solid #80A5D2;
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper .targetWrapper.remaining {
    display: block;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper .targetWrapper .openClose.k-icon {
    top: -2px;
    margin-left: 6px;
    cursor: pointer;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowItem {
    position: relative;
    height: 36px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper .targetWrapper .editRowItem.section {
    height: 24px;
    background: #F9F9F9;
    border-bottom: 1px solid #80A5D2;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper .targetWrapper .editItemHideShowWrapper {
    display: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowAnnounce {
    width: 186px;
    margin-left: 30px;
    padding-top: 6px;
    padding-bottom: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowItem.section .editRowAnnounce  {
    width: 184px;
    margin-left: 3px;
}


#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowItemSpacer {
    position: relative;
    top: -13px;
    left: 1px;
    height: 36px;
    width: 1px;
    background: #DEDEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editSectionItemWrapper_allocation.editSectionItemWrapper .targetWrapper .editRowItem.section .editRowItemSpacer {
    height: 32px;
    left: 1px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowInputWrapper {
    width: 22%;
    margin-left: 30px;
    padding-top: 8px;
    padding-bottom: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowInputWrapper input {
    width: 39px;
    height: 21px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowInputWrapper .editRowInputSuffix {
    margin-left:  3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper {
    position: relative;
    width: 342px;
    border-top: 1px solid #DEDEDE;
    border-right: 1px solid #80A5D2;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editTotalOuterWrapper .editTotalWrapper.section {
    height: 24px;
    background: #B6C7D9;
    border-top: 1px solid #80A5D2;
    border-bottom: 1px solid #80A5D2;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper  #editTotalOuterWrapper .editTotalWrapper.section .editRowAnnounce {
    width: 201px;
    margin-left: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editTotalWrapper {
    position: relative;
    height: 24px;
    border-bottom: 1px solid #DEDEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editWrapperSpacer {
    top: -7px;
    height: 25px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editTotalWrapper:nth-child(4) {
    border-bottom: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editTotalWrapper:last-of-type {
    border-top: 1px solid #80A5D2;
    border-bottom: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editTotalWrapper .editTotalAnnounce {
    width: 178px;
    margin-right: 2px;
    margin-left: 34px;
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: right;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editTotalWrapper .editTotal_allocationWrapper {
    position: relative;
    width: 104px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper #editTotalOuterWrapper .editTotalWrapper button#button-recalculateAllocations {
    position: absolute;
    top: 2px;
    left: 6px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editTotalWrapper .editTotal {
    position: relative;
    left: -13px;
    width: 24px;
    margin: 0 auto;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editTotalWrapper .editTotalSuffix {
    position: absolute;
    top: 0;
    left: 64px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control {
    position: absolute;
    top: 28px;
    left: 62%;
    height: 76%;
    width: 37%;
    padding: 0 0 9px 6px;
    border-top: 1px solid #80A5D2;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control .editTotalWrapperControlAnnounce {
    position: relative;
    height: 27px;
    width: 93%;
    margin: 1px auto 9px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalButtonWrapper {
    position: relative;
    height: 339px;
    width: 84%;
    margin: 25px auto 0;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalWrapper_control_buttonSection {
    position: relative;
    padding-top: 14px;
    padding-bottom: 3px;
    border-top: 1px solid #DEDEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalWrapper_control_buttonSection.first {

}


#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalWrapper_control_buttonSection:nth-child(3) {
    padding-bottom: 2px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalWrapper_control_buttonSection.last {
    padding-top: 15px;
    padding-bottom: 0;
    border-bottom: 1px solid #DEDEDE;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalButtonWrapper button {
    width: 138px;
    min-height: 24px;
    margin-bottom: 12px;
    padding: 5px 3px 2px 3px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalWrapper_control_buttonSection.last button {
    padding: 4px 3px 4px 5px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control  .editTotalButtonWrapper button.disable {
    opacity: 0.2;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control .editTotalButtonWrapper button.disable:hover {
    background: #C7CEDE;
    color: 	#254A77;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editWrapper #editTotalWrapper_control .editTotalButtonWrapper button.save.disable:hover {
    background: #254A77;
    color: 	#fff;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right .slideBoxTop button {
    top: -3px;
    margin-right: 12px;
    float: right;
    clear: right;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right .slideBoxBottom {
    position: relative;
    height: 27px;
    padding-top: 9px;
    border: none;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right .slideBoxBottom button {
    height: 27px;
    width: 111px;
    margin-left: 12px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.right .slideBoxBottom button.disable:hover {
    background: #254A77;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxBottom .slideBoxButtonWrapper {
    width: 49%;
    margin-left: 50%;
    text-align: left;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxBottom .slideBoxButtonWrapper button {
    width: 147px;
    padding: 4px 3px 4px 5px;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxBottom .slideBoxButtonWrapper button:last-of-type {

}

/*edit errors*/
#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .editRowErrorInsert {
    position: absolute;
    top: 3px;
    left: 20%;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .oddClass {
    background-color: #EBECEF !important;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .evenClass {
    background-color: #FFF !important;
}

#mainCenter .tabSectionBottomRight .subSectionWrapper .slideBox .editWrapper .editRowInputWrapper input.error {
    color: #254a77;
    border: 1px solid #9b2c23;
}

/*EDIT EMPLOYEES*/


/*TREE VIEWS - SLIDE BOX*/
#mainCenter .tabSectionBottomRight .subSectionWrapper .k-in,
#mainCenter .tabSectionBottomRight .subSectionWrapper .k-in.k-state-hover,
#mainCenter .tabSectionBottomRight .subSectionWrapper .k-in.k-state-active,
#mainCenter .tabSectionBottomRight .subSectionWrapper .k-in.k-state-focused,
#mainCenter .tabSectionBottomRight .subSectionWrapper .k-in.k-state-selected {
    background-color: #F9F9F9;
    border-color: #F9F9F9;
    color: #254A77;
    box-shadow: none;
}


#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left .slideBoxHierarchyTarget.k-treeview .k-plus,
#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left .slideBoxHierarchyTarget.k-treeview .k-minus,
#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left .slideBoxHierarchyTarget.k-treeview .k-plus-disabled,
#mainCenter .tabSectionBottomRight .subSectionWrapper #slideBox-expenseGrid.wide .slideBoxColumn.left .slideBoxHierarchyTarget.k-treeview .k-minus-disabled {
    margin-top: 5px;
}


/* SPREADSHEETS */
#reportType_DropDown_listbox li.k-item,
#profitCenter_DropDown_listbox li.k-item,
#dateType_DropDown-list li.k-item,
#year_DropDown-list li.k-item,
#quarterMonth_DropDown-list li.k-item {
    margin-top: 3px;
    font-size: 12px;
    color: #696e71;
    line-height: 15px;
    font-family: "Helvetica-Light", "Arial Narrow", Arial, sans-serif;

}

#spreadsheetsControlWrapper-main {
    position: absolute;
    left: 26%;
    width: 65%;
    height: auto;
    z-index: 3001;
    display: none;
}

button#showReport-spreadsheetsMain {
    position: relative;
    top: 17px;
    margin-left: 18px;
    width: 207px;
    float: left;
}

button#showChartTop-spreadsheetsMain {
    position: relative;
    top: 17px;
    margin-left: 18px;
    width: 171px;
    float: left;
}

button#hideSpreadsheetTop-spreadsheetsMain {
    position: relative;
    top: 17px;
    margin-left: 18px;
    width: 171px;
    float: left;
}

button#showChartAnalysis-spreadsheetsMain {
    position: relative;
    top: 17px;
    margin-left: 18px;
    width: 171px;
    float: left;
}

#spreadsheetsSlideWrapper-main {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

#spreadsheetsSlideWrapper-main .slideDownOpacityWrapper {
    position: relative;
    height: 100%;
}

#spreadsheetsSlideWrapper-main .horizontal-line {
    position: relative;
    width: 99%;
    height: 1px;
    margin: 0 auto;
    background: #C5C5C5;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlTop {
    height: 30px;
    text-align: center;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlMiddle {
    height: 141px;
    padding-top: 15px;
    text-align: center;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom {
    height: 54px;
    text-align: center;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom button {
    top: 6px;
}

#spreadsheetsSlideWrapper-main .sectionOpacityMask {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 89%;
    background: #F9F9F9;
    opacity: .3;
}

#spreadsheetsSlideWrapper-main .sectionOpacityMask.hide {
    display: none;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom .horizontal-line {
    margin-bottom: 21px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlTop .spreadsheetsControlAnnounce {
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlSectionWrapper {
    position: relative;
    width: 89%;
    height: 27%;
    text-align: left;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlSectionWrapper.first {
    left: 6px;
    height: 30px;
    margin: 12px auto 12px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper {
    position: relative;
    width: 201px;
    float: left;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.first {
    width: 300px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.narrow {
    width: 145px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.middle {
    width: 96px;
    clear: none;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.last {
    width: 95px;
    clear: right;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.controlAnnounce {

}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.controlAnnounce.wide {
    width: 195px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper.controlAnnounce {
    width: 100%;
    margin-bottom: 12px;
    float: none;
    clear: both;
}

#spreadsheetsSlideWrapper-main #spreadsheetsWrapperMain .spreadsheetsControlItem {
    position: relative;
    margin-left: 12px;
    margin-right: 12px;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom button.orange {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom button.orange:hover {
    background: #9b2923;
    color: #fff;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom button.orange.disable {
    opacity: .3;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlBottom button.orange.disable:hover {
    background: #F69322;
    border: 1px solid #254A77;
    color: #fff;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper .k-dropdown-wrap,
#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper .k-picker-wrap {
    border: 1px solid #A9AEB1;
}

#spreadsheetsSlideWrapper-main .spreadsheetsControlItemWrapper .k-dropdown-wrap .k-input {
    text-align: left;
    color: #696E71;
    font-family: "Helvetica-Light", "Arial Narrow", Arial, sans-serif;
}

#mainCenter #reportsControlSlideWrapper {
    position: absolute;
    height: 688px;
    width: 4000px;
}

#mainCenter #reportsControlSlideWrapper .reportsControlSlideItem {
    position: relative;
    width: 1138px;
    height: 100%;
    margin-left: 21px;
    float: left;
}

#mainCenter #reportsControlSlideWrapper #slideItem-reportControlWrapper.reportsControlSlideItem {
    clear: left;
}

#mainCenter #reportsControlSlideWrapper #slideItem-spreadsheetsWrapper.reportsControlSlideItem {
    clear: right;
}

#slideItem-reportControlWrapper .reportControlWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#slideItem-reportControlWrapper .reportControlWrapper-sectionTop {
    position: relative;
    width: 100%;
    height: 20%;
}

#slideItem-reportControlWrapper .reportControlWrapper-sectionTop .reportControl-topAnnounce {
    position: relative;
    left: -21px;
    width: 60%;
    margin: 0 auto;
    padding: 15px 0 15px 0;
    line-height: 33px;
}

#mainCenter.spreadsheets #slideItem-reportControlWrapper .reportControlWrapper-sectionTop .horizontal-line {
    position: relative;
    width: 80%;
    height: 1px;
    margin: 0 auto;
    background: #C5C5C5;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle {
    position: relative;
    width: 87%;
    height: 66%;
    padding-top: 4%;
    padding-left: 12%;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper {
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    margin-left: 0;
    margin-left: 123px;
    float: left;
    border-radius: 6px;

}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper:first-of-type {
    margin-bottom: 69px;
    clear: left;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper:nth-of-type(2) {
    margin-right: 0;
    clear: right;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper:nth-of-type(3) {
    clear: left;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper:last-of-type {
   clear: right;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper.moved {
    width: auto;
    height: auto;
    min-height: 139px;
    margin-right: 45px;
    margin-left: 0;
    float: right;
    clear: right;
    -webkit-transition: 0.8s ease;
    -moz-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    -ms-transition: 0.8s ease;
    transition: All 0.8s ease;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper.selected {
    position: absolute;
    width: 229px;
    margin-bottom: 0;
    clear: none;
    background: #F9F9F9 !important;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper.moved:first-of-type {
    margin-bottom: 0;
}


#slideItem-reportControlWrapper .reportControl-sectionMiddle .reportControl-flipWrapper .reportHomeFlipTarget {
    position: relative;
    padding: 6px;
    text-align: center;

    border: 2px solid #C5C5C5;
    border-radius: 6px;
    -webkit-border--radius: 0;
    -moz-border-radius: 0;
    overflow: hidden;

    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    display: none;
    background: #fff;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper .homeFlipButton {
    position: relative;
    width: 201px;
    height: 132px;
    padding: 5%;
    border-radius: 12px;
    background: #254a77;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper.selected .homeFlipButton {
    background: #fff;
    -webkit-transition: All 0.8s ease;
    -moz-transition: All 0.8s ease;
    -o-transition: All 0.8s ease;
    -ms-transition: All 0.8s ease;
    transition: All 0.8s ease;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper.moved .homeFlipButton {
    width: 156px;
    height: auto;
    min-height:  71px;
    font-size: 13px;
    padding-top: 0;
    padding-bottom: 12%;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper .homeFlipButton:hover {
    background: #9b2c23 !important;
    color: #fff !important;
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper .homeFlipButton .homeFlipButton-announceWrapper {
    margin-top: 24px;
    line-height: 161%;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper #buttonThrobberWrapper {
    position: absolute;
    height: 262px;
    width: 482px;
    text-align: center;
}

#slideItem-reportControlWrapper .reportControl-flipWrapper #buttonThrobberWrapper canvas {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 17% auto 20%;
    left: 12%;
}

#mainCenter.spreadsheets {
    width: 98%;
    padding-left: 15px;
}

#mainCenter.spreadsheets .horizontal-line.spreadsheets {
    position: relative;
    width: 99%;
    height: 1px;
    margin: 0 auto;
    background: #C5C5C5;
}

#mainCenter.spreadsheets .spreadsheetsWrapper {
    position: relative;
    width: 99%;
    height: 98%;
    margin-top: 6px;
    margin-left: 6px;
    overflow: auto;
}

#mainCenter.spreadsheets #spreadsheets-mainLeftWrapper {
    position: relative;
    left: 0;
    width: 48%;
    height: auto;
    max-height: 96%;
    padding-left: 21px;
    padding-top: 18px;
    float: left;
    clear: left;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: all 1.2s ease;
    -moz-transition: margin 0.2s ease;
    -o-transition: margin 0.2s ease;
    -ms-transition: margin 0.2s ease;
    transition: all .6s ease;
}

#mainCenter.spreadsheets #spreadsheets-mainLeftWrapper.modal {
    width: 100%;
    padding-left: 21px;
    padding-top: 3px;
    opacity: 1;
}

#mainCenter.spreadsheets #spreadsheets-mainLeftWrapper.wide {
    width: 96%;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    transition: all .6s ease;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper {
    position: relative;
    left: 0;
    width: 48%;
    height: auto;
    max-height: 96%;
    padding-top: 18px;
    padding-right: 0;
    float: right;
    clear: right;
    opacity: 1;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    transition: all .6s ease;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper.wide {
    position: relative;
    left: 0;
    width: 99%;
    height: auto;
    max-height: 98%;
    margin: 0 auto;
    float: none;
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    transition: all .6s ease;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #parallel-chart-2-testImage {
    position: relative;
    background: url("../images/project-detail-v1-closed") no-repeat;
    height: 583px;
    width: 100%;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #parallel-chart-2-testImage.full {
    position: relative;
    background: url("../images/project-detail-v1-closed") no-repeat;
    height: 583px;
    width: 538px;
}

#mainCenter.spreadsheets #spreadsheets-embeddedWrapper {
    width: 70%;
}

#mainCenter.spreadsheets #spreadsheets-mainLeftWrapper.wide-x {
    width: 99%;
    margin: 0 auto;
    padding-left: 0;
}

#mainCenter.spreadsheets #spreadsheets-mainLeftWrapper.show {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter.spreadsheets #spreadsheets-mainLeftWrapper.hide {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#mainCenter.spreadsheets .spreadsheets-report {
    position: relative;
    height: auto;
    max-height: 643px;
    width: 99%;
    margin: 0 auto;
    border: 1px solid #0F67A6;
}

#mainCenter.spreadsheets #spreadsheets-reportPL {

}

/*GRID*/
#mainCenter.spreadsheets .k-grid-header thead .zeroPad-left {
    padding-left: 3px !important;
}

#mainCenter.spreadsheets .k-grid > table > tbody .k-group-cell + td,
#mainCenter.spreadsheets .k-grid > .k-grid-content .k-group-cell + td,
#mainCenter.spreadsheets .k-grid .k-hierarchy-cell + td {
    position: relative;
    border-left-width: 0;
    line-height: 14px;
}

#mainCenter.spreadsheets .k-grid > table > tbody .k-group-cell + td {
    padding: 8px 0 8px 3px;
}

#mainCenter.spreadsheets .k-grid > .k-grid-content .k-group-cell + td {
    padding: 8px 0 8px 3px;
}

#mainCenter.spreadsheets .k-grid .k-hierarchy-cell + td {
    padding: 8px 0 8px 3px;
}

#mainCenter.spreadsheets .k-grid .k-master-row .k-hierarchy-cell + td {
    padding: 8px 0 0 3px;
}

#mainCenter.spreadsheets .footerAnnounceWrapper,
#mainCenter.spreadsheets .tableAnnounceWrapper {
    position: relative;
    top: 0;
    right: 12px;
}

#mainCenter.spreadsheets .tableAnnounceWrapperRow {
    border-top: 1px solid #0F67A6;
    border-bottom: 1px solid #0F67A6;
    background: #fff;
}

#mainCenter.spreadsheets .tableAnnounceWrapperRow td {
    border-top: 1px solid #0F67A6;
}

#mainCenter.spreadsheets .spreadsheets.incomeExpense .footerAnnounce.main {
    position: relative;
    top: 3px;
    right: 12px;
}

#mainCenter.spreadsheets .tableParentExpandMod {
    color: #919699;
    opacity: .8;

}

#mainCenter.spreadsheets .monthShowing .footerAnnounceWrapper {
    position: relative;
    right: 12px;
}

#mainCenter.spreadsheets .monthShowing .footerAnnounceWrapper .footerAnnounce {
    left: 0;
}

#mainCenter.spreadsheets .footerAnnounce.main {
    border: none;
}

#mainCenter.spreadsheets div.k-grid.middle {
    border-bottom-width: 0;
    border-top: 1px solid #0F67A6;
    border-left: 1px solid #0F67A6;
}

#mainCenter.spreadsheets div.k-grid-footer, .k-grid-footer {
    border-top: 1px solid #0f67a6;
    border-bottom-width: 0;
}

#mainCenter.spreadsheets .spreadsheets.middle tr.k-footer-template td {
    border-bottom: 1px solid #0F67A6;
    border-top: 1px solid #0F67A6;
}

#mainCenter.spreadsheets .spreadsheets.middle.practiceAnalysis tr.k-footer-template td {
    border-bottom: 1px solid #0F67A6;
    border-top: 0;
}

#mainCenter.spreadsheets .spreadsheets.middle.practiceAnalysis tr.k-footer-template td:nth-of-type(1) {

}

#mainCenter.spreadsheets .spreadsheets.middle.practiceAnalysis tr.k-footer-template td:nth-of-type(2) {
    text-align: right;
    border-left: medium none;
}

#mainCenter.spreadsheets .k-footer-template > td:nth-of-type(3) {

}

#mainCenter.spreadsheets .spreadsheets.incomeExpense.middle .k-footer-template > td:nth-of-type(3) {
    border-left: 1px solid #C5C5C5;
}

#mainCenter.spreadsheets .spreadsheets.incomeExpense.middle td:nth-of-type(3) {
  /*border-left: 1px solid #0F67A6;*/
}

#mainCenter.spreadsheets .spreadsheets.middle tr.k-footer-template td.k-hierarchy-cell {
    border-bottom: 1px solid #0F67A6;
    border-top: 1px solid #0F67A6;
}

#mainCenter.spreadsheets .k-group-footer td,
#mainCenter.spreadsheets .k-grid-footer,
#mainCenter.spreadsheets .k-footer-template td,
#mainCenter.spreadsheets .tableAnnounceWrapper {
    background: #fff;
    text-align: right;
    font-family: "Helvetica-Condensed-Bold", "Arial Black", "Arial Bold", Gadget, sans-serif;
    color: #0F67A6;
}

#mainCenter.spreadsheets .practiceAnalysis .k-group-footer td,
#mainCenter.spreadsheets .practiceAnalysis .k-footer-template td {
    text-align: center;
}

#mainCenter.spreadsheets .k-detail-row div.spreadsheets.middle {
    position: relative;
    top: -8px;
    border-right: medium none;
}

#mainCenter.spreadsheets .k-detail-row div.spreadsheets.middle .k-grid-content {
  max-height: 246px;
  min-height: 66px;
}

#mainCenter.spreadsheets .k-icon {
    margin-top: 5px;
}

#mainCenter.spreadsheets .k-select .k-icon {
    margin-top: 5px;
}

#mainCenter.spreadsheets th .k-icon {
    margin-top: -1px;
    margin-left: 2px;
}

.k-grid-header .k-header .k-link {
    position: relative;
}

#mainCenter.spreadsheets .tallHead th .k-icon {
    position: absolute;
    right: 3px;
    top: 38%
}

#mainCenter.spreadsheets .spreadsheets-report.kendoGrid .k-grid-content {
    max-height: 511px;
    min-height: 66px;
}

#mainCenter.spreadsheets .k-hierarchy-cell,
#mainCenter.spreadsheets .k-grid.spreadsheets .k-hierarchy-cell {

}

#mainCenter.spreadsheets .k-grid.spreadsheets .k-detail-cell table {
    left: 0;
}

#mainCenter.spreadsheets .spreadsheets-report tbody:first-of-type th:nth-child(3) {

}

#mainCenter.spreadsheets .k-grid.spreadsheets thead.k-grid-header {
    display: none;
}

#mainCenter.spreadsheets .incomeExpense .k-grid-header-wrap {
    display: none;
}

.k-grid-content td span.tdInsert {
    padding-left: 2px;
}

#mainCenter.spreadsheets .tdOpacityHide {
    opacity: 0;
}

/*TOOLBAR*/
#mainCenter.spreadsheets .k-grid-toolbar {
    position: relative;
    background: #fff;
    min-height: 42px;
    max-height: 63px;
}

#mainCenter.spreadsheets .practiceAnalysis .k-grid-toolbar {
    position: relative;
    background: #fff;
    min-height: 42px;
    max-height: 99px;
}

#mainCenter.spreadsheets .pLHeaderWrapper {
    position: relative;
    padding-top: 15px;
    padding-bottom: 9px;
    text-align: left;
}

#mainCenter.spreadsheets .practiceAnalysis .pLHeaderWrapper {
    position: relative;
    padding-top: 12px;
    padding-bottom: 9px;
    text-align: left;
}

#mainCenter.spreadsheets .practiceAnalysis .plHeaderColumn {
    position: relative;
}

#mainCenter.spreadsheets .practiceAnalysis .plHeaderColumn.left {
    width: 60%;
}

#mainCenter.spreadsheets .practiceAnalysis .plHeaderColumn.left .pLHeaderWrapperTop {

}

#mainCenter.spreadsheets  .pLHeaderWrapperTop {
    position: relative;
    text-align: left;
}

#mainCenter.spreadsheets .pLHeaderWrapperMiddle {
    position: relative;
    text-align: left;
    margin-top: 3px;
}

#mainCenter.spreadsheets .practiceAnalysis .pLHeaderWrapperMiddle {
    position: relative;
    text-align: left;
    margin-top: 6px;
}

#mainCenter.spreadsheets .pLHeaderWrapperTop .pLHeaderAnnounceWrapper {
    position: relative;
    width: 98%;
    margin-left: 12px;
}

#mainCenter.spreadsheets .practiceAnalysis .pLHeaderWrapperTop .pLHeaderAnnounceWrapper {
    position: relative;
    width: 98%;
    margin-left: 12px;
}

#mainCenter.spreadsheets .pLHeaderWrapperMiddle .pLHeaderAnnounceWrapper {
    margin-left: 21px;
    padding: 6px 0 6px 0;
}

#mainCenter.spreadsheets .pLHeaderWrapperTop .pLHeaderTopAnnounceWrapper .pLHeaderAnnounce.top {
    line-height: 21px;
}

/*PRACTICE ANALYSIS*/
#mainCenter.spreadsheets .k-grid.practiceAnalysis thead.k-grid-header {
    display: table-header-group;
}

#mainCenter.spreadsheets .k-grid.practiceAnalysis.middle td {
    border-bottom: 1px solid #254A77;
}

#mainCenter.spreadsheets .k-grid.practiceAnalysis .k-detail-row .k-hierarchy-cell + td {
    padding-top: 15px;
}

#mainCenter.spreadsheets .k-grid.practiceAnalysis .noDataInsert {
    position: relative;
    top: -6px;
}

/*Explore*/
#spreadsheetsEmbeddedTable {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 6%;
    width: 1160px;
    height: 0;
    max-height: 740px;
    z-index: 6001;
    background: #EBECF0;
    display: none;
}

#spreadsheetsEmbeddedTable #spreadsheetsSlideWrapper-embeddedTable {
    position: relative;
    width: 99%;
    height: 99%;
}

#spreadsheetsEmbeddedTable #mainCenter.spreadsheets .spreadsheets-report {
    position: relative;
    width: 99%;
    height: auto;
    margin: 0 auto;
    max-height: 643px;
    border: 1px solid #0F67A6;
}

#spreadsheetsEmbeddedTable #slideDownOpacityWrapper-embeddedTable {
    position: relative;
    width: 98%;
    height: 99%;
    padding: 18px 1px 24px 18px;
    opacity: 0;
}

#spreadsheetsEmbeddedTable #embeddedTableAnnounceWrapper {
    position: relative;
    width: 90%
    height: 21px;
    margin: 6px 0 3px 23px;
}

#spreadsheetsEmbeddedTable #embeddedTableAnnounceWrapper .embeddedTableAnnounce {
    position: relative;
    margin-right: 27px;
    text-align: left;
}

#spreadsheetsEmbeddedTable #embeddedTableAnnounceWrapper button.subsectionButton {
    position: relative;
    top: 18px;
}

#spreadsheetsEmbeddedTable #embeddedTableAnnounceWrapper .horizontal-line {
    width: 97%;
}

#mainCenter.spreadsheets #spreadsheetsEmbeddedTable .spreadsheets-report.kendoGrid .k-grid-content {
    max-height: 446px;
    min-height: 66px;
}

/*NOT USED YET*/
#mainCenter.spreadsheets .k-detail-cell .embdeddedTableControlWrapper {
    position: relative;
    width: 37%;
    height: 81px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 6px 6px 0 6px;
    border: 1px solid #C5C5C5;
    border-radius: 6px;
    background: #F9F9F9;
    text-align: center;
}

#mainCenter.spreadsheets .k-detail-cell .embdeddedTableControlWrapper .embdeddedTableControlAnnounce {
    line-height: 18px;
}

#mainCenter.spreadsheets .k-detail-cell .embdeddedTableControlWrapper button {
    margin-top: 9px;
}

#mainCenter.spreadsheets .compareEmbeddedControlWrapper {
    position: relative;

}

#mainCenter.spreadsheets button.embdeddedTable {
    position: relative;
    top: -1px;
    margin-top: 8px;
    margin-left: 10%;
    margin-bottom: 9px;
}

#mainCenter.spreadsheets .k-grid.practiceAnalysis .k-detail-row.embeddedTable .k-hierarchy-cell,
#mainCenter.spreadsheets .k-grid.practiceAnalysis .k-detail-row.embeddedTable .k-hierarchy-cell + td {
    padding-top: 6px;
}

#mainCenter.spreadsheets .k-grid.practiceAnalysis .k-detail-row.embeddedTable .k-detail-row div.spreadsheets.middle {
    top: 0;
}

#mainCenter.spreadsheets button.compareMasterRow {
    position: relative;
    top: 0;
    margin-top: 8px;
    margin-left: 2%;
    margin-bottom: 9px;
}

/*CHARTS*/
#mainCenter.spreadsheets #spreadsheets-mainRightWrapper.wide #chartWrapper {
    position: relative;
    width: 100%;
    height: 96%;

}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain {
    position: relative;
    height: 642px;
    height: 98%;
    width: 	1060px;
    width: 80%;
    color: #254a77 !important;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain.wide {
    width: 97%;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain.narrow {
    width: 44%;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain .toolTipWrapper {
    padding: 8px 6px 6px 6px;
    background: #EBECF0;
    text-align: center;
    line-height: 12px;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain .toolTipWrapper .tooltipClickAnnounce {
    margin-top: 9px;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain .toolTipWrapper .show {
    display: block;
}

#mainCenter.spreadsheets #spreadsheets-mainRightWrapper #chartMain .toolTipWrapper .hide {
    display: none;
}

#mainCenter.spreadsheets .drillDownWrapper {
    position: relative;
    width: 17%;
    height: 606px;
    padding: 20px 12px 3px 12px;
    border-left: 1px solid #D8D8D8;
    border-right: 1px solid #D8D8D8;
    text-align: center;
    float: right;
    clear: right;
}

#mainCenter.spreadsheets .drillDownAnnounceWrapper {
    position: relative;
    width: 98%;
    height: auto;
    min-height: 63px;
    margin: 0 auto;
}

#mainCenter.spreadsheets .drillDownAnnounceWrapper.tall {
    margin: 0 auto 6px;
}

#mainCenter.spreadsheets .drillDownAnnounceWrapper .drillDownAnnounce {
    position: relative;
    line-height: 18px;
}

#mainCenter.spreadsheets .drillDownAnnounceWrapper .horizontal-line {
    width: 99%;
    margin: 4px auto 8px;
    background: #D8D8D8;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper {
    position: relative;
    margin-top: 15px;
    padding-left: 9px;
    text-align: left;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.first {
    margin-top: 0;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi {

}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper .drillDownSectionAnnounce {
    position: relative;
    height: 16px;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownSectionAnnounce {
    position: relative;
    height: 16px;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper .drillDownItemWrapper {
    position: relative;
    height: 18px;
    padding-left: 12px;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownItemWrapper {
    height: auto;
    margin-top: 6px;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownItemWrapper:first-of-type {
    margin-top: 0;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownItemSectionWrapper {
    position: relative;
    height: 17px;
    padding-left: 12px;

}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper .drillDownItemWrapper .drillDownItemAnnounce {
    position: relative;
    height: 16px;
    float: left;
    clear: left;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownItemWrapper .drillDownItemAnnounce {
    position: relative;
    height: 16px;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownItemSectionWrapper .drillDownItemAnnounce {
    position: relative;
    height: 14px;
    margin-bottom: 3px;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper .drillDownItemWrapper .drillDownItemTarget {
    position: relative;
    height: 16px;
    margin-right: 12px;
    float: right;
    clear: right;
}

#mainCenter.spreadsheets .drillDownWrapper .drillDownSectionWrapper.multi .drillDownItemWrapper .drillDownItemTarget {
    height: 14px;
}

#tempImage {
    width: 795px;
    height: 482px;
    margin: 0 auto;
    background: url("../images/project-detail-v2-closed.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}

#tempImage.full {
    width: 795px;
    height: 730px;
    background: url("../images/project-detail-v2-full.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}

/*MODAL*/

/*GENERAL*/

.chartModalWrapper {
    position: fixed;
    top: 0 !important;
    left: 6% !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4001 !important;
}

.chartModalWrapper .sectionOpacityMask {
    height: 100%;
    opacity: 0;
    display: none;
    z-index: 5000;
}

.chartModalWrapper .sectionOpacityMask.showMask {
    display: block;
}

.chartModalSlideWrapper {
    position: absolute;
    margin: 0 auto;
    background: #E5E5E5;
    border-radius: 0 0 8px 8px
}

.modalChart-head {
    position: relative;
    width: 100%;
    text-align: center;
    background: #B8C7D9;
}

.chartModalSlideWrapper .modalThrobberWrapper {
    position: absolute;
    width: 62%;
    top: 42%;
    height: 99px;
    left: 26%;
    text-align: left;
    z-index: 4003;
    opacity: 0;
}

.chartModalSlideWrapper .modalThrobberWrapper .throbberImageModal {
    position: relative;
    top: 0;
    left: 0;
    width: 88px;
    height: 88px;
    float: left;
    clear: left;
}

.chartModalSlideWrapper .modalThrobberWrapper .throbberModalText {
    position: relative;
    top: 29px;
    left: 0;
    margin-left: 6px;
    float: left;
    clear: right;
}

.chartModalSlideWrapper .breakdownModalWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #EBECF0;
}

.modalChartInnerWrapper {
    position: relative;
    opacity: 0;
    z-index: 4002;
}

.multiChart {}

.modalChartInnerWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.modalChartSectionWrapper {
    position: relative;
    width: 100%;
}

.modalChartSectionTop {
    position: relative;
}

.modalChartSectionMiddle {
    position: relative;
    width: 100%;
    height: 100%;
}

.modalChartSectionBottom {
    position: relative;
    width: 100%;
    height: 100%;
}

.modalChartSection {
    position: relative;
    border: 1px solid #919699;
    border-radius: 6px;
    -webkit-border--radius: 6px;
    -moz-border-radius: 6px;
     background: "#EBECF0";
}

.modalChartInnerSection {
    position: relative;
    width: 100%;
}

.modalChartSection. last {
    background: #fff;
    float: left;
}

.modalChartSection.multiChartSection.first {
    padding-bottom: 1px;
    clear: left;
}

.modalChartSection.multiChartSection.last {
    clear: right;
}

.innerSectionAnnounce {
   position: relative;
   line-height: 13px;
}

.modalChartSection .horizontal-line {
    background: #C5C5C5;
}

.selectAnnounce {
    position: relative;

}

/*Breakdown chart*/
#breakdownModalWrapper {}

#breakdownModalWrapper #modalSlideWrapper {
    position: relative;
    top: 0;
    left: 6% !important;
    margin: 0  !important;
    padding: 0 !important;
    width: 1115px !important;
    height: 0;
}

#modalSlideWrapper #modalThrobberMain {
    position: absolute;
    width: 100%;
    height: 100%;
}

#tempImage {
    position: absolute;
    width: 795px;
    height: 482px;
    background: url("../images/project-detail-v4-full.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    opacity: .2;
}

#tempImage.full {
    width: 795px;
    height: 730px;
    background: url("../images/project-detail-v4-full.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}

#breakdownModalWrapper #detailChartWrapper-PLPeriod {
    width: 100%;
    height: 100%;
}

#breakdownModalWrapper .modalChart-head {
    width: 100%;
    height: 39px;
}

#breakdownModalWrapper .modalHeadAnnounce {
    position: relative;
    width: auto;
    margin-top: 11px;
}

#breakdownModalWrapper .modalChartInnerWrapper {
    width: 98%;
    height: auto;
    padding: 16px 0 0 17px;
}

#breakdownModalWrapper #PLPeriod-top.modalChartSectionWrapper {
    width: 100%;
    height: 381px;
    text-align: left;
}

/*MAIN CHART TOP*/
#breakdownModalWrapper #modalChartMain-PLPeriod.modalChartSection {
    width: 98%;
    height: 96%;
    padding: 9px 0 0 9px;
    background: #EBECF0;
}

#breakdownModalWrapper #mainChartWrapper-multiPieModal {
    width: 77%;
    height: 89%;
    margin-left: 2%;
    float: left;
}

#breakdownModalWrapper #innerSectionTop-PLPeriod {
    height: 87px;
    width: 100%;
}

#breakdownModalWrapper #PLPeriodColorBlock-revenue {
    width: 81%;
    height: 45px;
    background: none repeat scroll 0 0 #357C7F;
    text-align: center;
}

#breakdownModalWrapper #PLPeriodColorBlock-revenue .PLPeriodColorBlockAnnounce {
    position: relative;
    top: 27%;
    height: auto;
}

#breakdownModalWrapper #PLPeriodFloatWrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 3%;
}

#breakdownModalWrapper #PLPeriodFloatWrapper .chartColorBlock {
    position: relative;
    width: 28%;
    height: 57px;
    margin-right: 8%;
    text-align: center;
    float: left;
}

#breakdownModalWrapper #PLPeriodFloatWrapper .chartColorBlock.first {
    clear: left;
}

#breakdownModalWrapper #PLPeriodFloatWrapper .chartColorBlock.last {
    margin-right: 0;
    clear: right;
}

#breakdownModalWrapper #PLPeriodFloatWrapper #PLPeriodColorBlock-direct {
    background: #BA9D3E;
}

#breakdownModalWrapper #PLPeriodFloatWrapper #PLPeriodColorBlock-indirect {
    background: #4C537F;
}

#breakdownModalWrapper #PLPeriodFloatWrapper #PLPeriodColorBlock-netIncome {
    background: #3CAF6B;
}

#breakdownModalWrapper #PLPeriodFloatWrapper .chartColorBlock .PLPeriodColorBlockAnnounce {
    margin-top: 11px;
    line-height: 19px;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod {
    position: relative;
    height: 183px;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod .pieChartWrapper {
    position: relative;
    width: 28%;
    height: 100%;
    margin-right: 8%;
    float: left;
}

#breakdownModalWrapper .modalChartInnerSection .pieChartWrapper .chartTriangle {
    position: absolute;
    top: -27px;
    left: 16%;
    width: 0;
    height: 0;
    border-bottom: 72px solid #D2D8E8;
    border-left: 61px solid rgba(0, 0, 0, 0);
    border-right: 61px solid rgba(0, 0, 0, 0);
    opacity: 0.3;
    display: none;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod .pieChartWrapper.first {
    clear: left;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod .pieChartWrapper.last {
    clear: right;
    margin-right: 0;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod .chartTarget {
    position: relative;
    width: 185px;
    height: 178px;
    width: 97%;
    height: 97%;
    margin: 0 auto;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod .chartTarget svg {
    margin: 0 auto 0 !important;
    left: 0 !important;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper {
    position: relative;
    width: 100%;
    height: 30%;
    display: block !important;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapperContent {
    position: relative;
    width: 100%;
    height: 97%;
    margin-top: 6px;
    text-align: center;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper .pieChartWrapper-hoverTarget {
    position: relative;
    width: auto;
    height: 84%;
    min-width: 27%;
    margin: 0 auto;
    padding: 0 6px 3px 9px;
    background: #F7F8FC;
    border: 1px solid #919699;
    border-radius: 6px;
    text-align: left;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper .pieChartWrapper-hoverTarget.first {
    margin-left: 1.5%;
    margin-right: 10.7%;
    clear: left;
    display: none !important;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper .pieChartWrapper-hoverTarget.last {
    margin-right: 0;
    clear: right;
    display: none !important;
}

#breakdownModalWrapper .pieChartWrapper-hoverTarget .modalChartInnerSection {
    height: 19px;
    width: 100%;
    padding-bottom: 3px;
}

#breakdownModalWrapper .pieChartWrapper-hoverTarget .modalChartInnerSection.innerSection-top {
    height: 12px;
    padding-top: 9px;
    padding-bottom: 6px;
    text-align: center;
}

#breakdownModalWrapper .pieChartWrapper-hoverTarget .modalChartInnerSection.innerSection-top .topAnnounce {
    line-height: 14px;
}

#breakdownModalWrapper .pieChartWrapper-hoverTarget .modalChartInnerSection.innerSection-middle {
    margin-left: 16%;
    padding-bottom: 3px;
    width: 186px;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper #hoverClickAnnounce {
    position: relative;
    width: auto;
    height: auto;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper .modalChartInnerSection .innerSectionAnnounce {
    position: relative;
}

#breakdownModalWrapper #innerSectionMiddle-PLPeriod-slideWrapper .selectAnnounce {
    position: absolute;
    top: 11px;
    left: 34%;
    width: 278px;
    height: 21px;
    display: none !important;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod {
    top: -46px;
    width: 16%;
    height: 354px;
    margin-right: 1%;
    border: 1px solid #C5C5C5;
    border-radius: 6px;
    text-align: center;
    background: #F7F8FC;
    float: right;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .innerSection-top {
    height: 10%;
    text-align: center;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .innerSectionAnnounce {
   padding-top: 6px;
   line-height: 140%;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .horizontal-line {
    width: 88%;
    margin: 3px auto 0;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .innerSection-middle {
    width: 91%;
    height: 88%;
    padding-left: 9%;
    overflow-y: auto;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendItem {
    position: relative;
    width: 95%;
    height: 10%;
    cursor: pointer;
    text-align: left;
}

/*
#breakdownModalWrapper #modalChartLegend-PLPeriod .legendItem:hover .triangle-20 {
    border-bottom-color: #696e71 !important;
}


#breakdownModalWrapper #modalChartLegend-PLPeriod .legendItem:hover .legendAnnounce {
    color: #9b2c23;
}
*/

#breakdownModalWrapper #modalChartLegend-PLPeriod .triangle-20 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-radius: 52px;
    border-right: 10px solid rgba(0, 0, 0, 0);
    transform: translate(0px, 22%);
    -webkit-transform: translate(0px, 22%);
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendItem .triangleRight {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #9b2c23;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent !important;
    border-radius: 52px;
    transform: translate(5px, 27%);
    -webkit-transform: translate(5px, 27%);
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendItem .triangleRightOLD {
    border-bottom: 9px solid rgba(0, 0, 0, 0) !important;
    border-left: 14px solid #FF0000 !important;
    border-radius: 52px;
    border-top: 9px solid rgba(0, 0, 0, 0) !important;
    height: 0;
    position: absolute;
    transform: translate(5px, 27%) !important;
    width: 0;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #a.triangle-20 {
    border-bottom: 16px solid #0396ff;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #b.triangle-20 {
    border-bottom: 16px solid #2c76ff;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #c.triangle-20 {
    border-bottom: 16px solid #5557ff;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #d.triangle-20 {
    border-bottom: 16px solid #7f37ff;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #e.triangle-20 {
    border-bottom: 16px solid #9a22ff;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #f.triangle-20 {
    border-bottom: 16px solid #c403ff;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #g.triangle-20 {
    border-bottom: 16px solid #d285FF;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #h.triangle-20 {
    border-bottom: 16px solid #e5b6FF;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #i.triangle-20 {
    border-bottom: 16px solid #Ead8FF;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod #j.triangle-20 {
    border-bottom: 16px solid #E9e6FF;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendAnnounce {
    position: absolute;
    top: 47%;
    width: 75%;
    line-height: 14px;
    transform: translate(27px, -61%);
    -webkit-transform: translate(27px, -61%);
}

/*
#EBECF0
#breakdownModalWrapper #modalChartLegend-PLPeriod .triangle-20 {
    width: 0;
	height: 0;
	border-left: 10px solid rgba(0, 0, 0, 0);
	border-right: 10px solid rgba(0, 0, 0, 0);
	border-bottom: 16px solid #FFA500;
	border-radius: 52px;
	float: left;
}


#breakdownModalWrapper #modalChartLegend-PLPeriod .triangle-20 {
  border-bottom: 16px solid #FFA500;
  border-left: 10px solid rgba(0, 0, 0, 0);
  border-radius: 52px;
  border-right: 10px solid rgba(0, 0, 0, 0);
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendAnnounce {
  bottom: 0;
  display: block;
  height: auto;
  line-height: 14px;
  margin: auto;
  max-height: 30px;
  padding-top: 2px;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
  width: 81px;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendAnnounce {
    position: relative;
    width: 81px;
    margin-left: 6px;
    padding-top: 2px;
    line-height: 14px;
	float: left;
}
*/

#breakdownModalWrapper #modalChartLegend-PLPeriod .triangle-20.first {
    clear: left;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .triangle-20.last {
    clear: right;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendAnnounce.first {
    clear: left;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendAnnounce.last {
    clear: right;
}

#breakdownModalWrapper #modalChartLegend-PLPeriod .innerSection-bottom {

}

/*MAIN CHART MIDDLE*/
#breakdownModalWrapper #PLPeriod-middle.modalChartSectionWrapper {
    width: 99.8%;
    height: 255px;
    height: 306px;
    padding-top: 12px;
    display: none;
    opacity: 0;
    text-align: left;
}

#breakdownModalWrapper #PLPeriod-middle.modalChartSectionWrapper #PLDetailWrapper.modalChartSection {
    position: relative;
    height: 245px;
    width: 95.7%;
    height: 96%;
    padding: 6px 0 0 27px;
    background: #EBECF0;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperTop {
    position: relative;
    width: 97%;
    height: 9%;
    padding-top: 0.4%;
    text-align: center;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperTop .PLDetailAnnounce {
    width: auto;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperTop .PLDetailAnnounce.last {
    width: auto;
    max-width: 273px;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperTop .horizontal-line {
    margin-top: 0.4%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom {
    position: relative;
    width: 99%;
    height: 90%;
    text-align: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #tempImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 4002;
    display: none;
    background: url("../images/newSection.png") no-repeat;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .multiChartSection {
    position: relative;
    width: 22%;
    height: 95%;
    margin-right: 3%;
    margin-left: 1%;
    margin-top: 1%;
    float: left;
    z-index: 2;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #detailWrapperType {
    position: relative;
    width: 17%;
    margin-right: 0;
    float: right;
    clear: right;
    z-index: 1;
}

#breakdownModalWrapper #PLDetailWrapper button#percentAmountButton {
  left: 10%;
  position: absolute;
  top: 23%;
  width: auto;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .modalChartInnerSectionWrapper {
    position: relative;
    width: auto;
    height: 75%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .modalChartInnerSectionWrapper .listItemWrapper {
    position: relative;
    width: auto;
    height: auto;
    margin-top: 34%;
    margin-left: 14%;
    text-align: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .modalChartInnerSectionWrapper .listItemWrapper.first {
    margin-top: 20%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .modalChartInnerSectionWrapper .listItemAnnounce {
    position: relative;
    width: auto;
    height: 24px;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .modalChartInnerSectionWrapper .horizontal-line {
    position: absolute;
    top: 46%;
    left: -477%;
    width: 468%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper {
    margin-right: 7%;
    margin-left: 0;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper.first {
    margin-left: 0;
    clear: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper.last {
    margin-right: 0;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .multiChartSectionTop {
    position: relative;
    width: 100%;
    height: 23%;
    margin-top: 4%;
    text-align: center;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom  .multiChartSectionTop-announceMain {
    position: relative;
    width: auto;
    height: auto;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .multiChartSectionTop .horizontal-line {
    position: relative;
    width: 95%;
    margin: 0 auto;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom  .multiChartSectionTop-announceTypeWrapper {
    position: relative;
    width: auto;
    height: auto;
    padding-top: 3%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .multiChartSectionTop-announceTypeWrapper .listItemAnnounce {
    position: relative;

}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .multiChartSectionTop-announceTypeWrapper .listAmount {
    position: relative;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper {
    position: relative;
    width: 100%;
    height: 75%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentWrapper .percentageItem.zero {
    opacity: .8;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentageItem {
    position: relative;
    width: 51%;
    height: 33%;
    margin: 0 auto;
    text-align: center;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentageItem.top {
    background: #BA9D3E;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentageItem.middle {
    background: #4C537F;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentageItem.bottom {
    background: #3CAF6B;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentageItem.redBlock {
    background: #9B2C23;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .barWrapper .percentWrapper .percentageItem .percentageItemTarget {
    position: relative;
    top: 37%;
}


/*
#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .innerSectionWrapper {
    position: absolute;
    left: 6%;
    height: 86%;
    z-index: 1;
    display: none;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .innerSectionWrapper.first {
    width: 41%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .innerSectionWrapper.last {
    left: 52%;
    width: 68%;
    height: 75%;
    margin-top: 3%;
    z-index: 2;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom .multiChartSection.first {
    width: 82%;
    clear: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod .innerSection-top {
    width: 93%;
    height: 13%;
    margin: 3px auto 0;
    display: none;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod .innerSection-top .announceWrapper {
    position: absolute;
    width: 47%;
    height: 30px;
    top: 45%;
    left: 50.6%
    line-height: 12px;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod .innerSection-top .announceWrapper {
    position: absolute;
    top: 77%;
    left: 51%;
    width: 47%;
    line-height: 13px;
    text-align: center;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod .innerSection-top .percentageItemAnnounce:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    transform: translate(12%, 12%);
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod .innerSection-top .percentageItemAnnounce:nth-of-type(2) {
    position: absolute;
    top: 0;
    left: 60%;
    width: 31%;
    transform: translate(11%, 68%);
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod .innerSection-top .innerSectionAnnounce {
    padding-bottom: 3px;
    line-height: 17px;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .innerSection-middle {
    width: 100%;
    height: 100%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .innerSection-middle .listItemWrapper {
    position: relative;
    width: 100%;
    height: 20%;
    text-align: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .innerSection-middle .listItemWrapper.first {
    margin-top: 0;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .innerSection-middle .listItemWrapper:nth-of-type(2) {
    margin-top: 4%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .innerSection-middle .listItemWrapper:nth-of-type(3) {
    margin-top: 10%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .innerSection-middle .listItemWrapper.last {
    margin-top: 9.9%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .listItemAnnounce {
    position: relative;
    width: 47%;
    height: 24px;
    line-height: 17px;
    float: left;
    clear: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .listAmount {
    position: relative;
    width: auto;
    max-width: 50%;
    height: 24px;
    line-height: 17px;
    float: left;
    clear: right;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotalsWrapper .horizontal-line {
    position: absolute;
    top: 16%;
    left: 78%;
    width: 23%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle {
    width: 100%;
    height: 85%;
    padding-top: 3px;
    padding-left: 0;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper {
    position: relative;
    width: 24%;
    height: 100%;
    padding-left: 2%;
    float: left;
    clear: left;
    line-height: 13px;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper {
    position: relative;
    width: 100%;
    height: 25%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper.first {
    position: relative;
    margin-top: 59%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper.middle {
    position: relative;
    margin-top: 10%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper.last {
    position: relative;
    margin-top: 16%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper .horizontal-line {
    position: absolute;
    top: 74%;
    left: 99%;
    width: 53%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper .percentageAnnounceItem {
    position: absolute;
    top: 50%;
    border-right: 1px solid #C5C5C5;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle #percentageAnnounceWrapper .percentageAnnounceItemWrapper .percentageAnnounceItem {
    position: absolute;
    top: 50%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper #percentageSectionWrapper {
    position: relative;
    width: 99%;
    height: 98%;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper {
    position: relative;
    width: 20%;
    height: 100%;
    float: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper.first {
    margin-right: 17%;
    margin-left: 2%;
    clear: left;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper.last {
    clear: right;
    margin-right: 0;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem {
    position: relative;
    width: 100%;
    height: 33%;
    text-align: center;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem.zero {
    opacity: .8;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem.top {
    background: #BA9D3E;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem.middle {
    background: #4C537F;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem.bottom {
    background: #3CAF6B;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem.redBlock {
    background: #9B2C23;
}

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodPercentsWrapper .innerSection-middle .percentWrapper .percentageItem .percentageItemTarget {
    position: relative;
    top: 37%;
}
*/

#breakdownModalWrapper #PLDetailWrapper #PLDetailWrapperBottom #PLPeriodTotals-PLPeriod {
    display: none;
}

/*MAIN CHART BOTTOM*/
#breakdownModalWrapper #PLPeriod-bottom.modalChartSectionWrapper {
    width: 100%;
    height: 6%;
    padding-top: 12px;
    text-align: center;
}

#breakdownModalWrapper #PLPeriod-bottom.modalChartSectionWrapper button#modalChart-close {
    width: 95;
    height: 33px;
    margin: 15px auto 0;
}

#breakdownModalWrapper #PLPeriod-bottom.modalChartSectionWrapper button#modalChart-close {
    width: 126px;
    height: 33px;
    margin: 0 auto;
    padding-top: 4px;
}

#breakdownModalWrapper #PLPeriod-bottom.modalChartSectionWrapper button#modalChart-close:hover {
    background: #9b2c23;
}


/*EMBEDDED CHARTS*/
#breakdownModalWrapper #spreadSheetInsertWrapper {
    position: absolute;
    top: 16px;
    left: 61%;
    width: 39%;
    height: 92%;
    border: none;
}

#breakdownModalWrapper #spreadSheetInsertWrapper  .embeddedSpreadsheet {
    position: relative;
}

#breakdownModalWrapper #spreadSheetInsertWrapper  #PLPeriod-spreadsheet-multiPieModal.multiChartSection {
    width: 100%;
    height: 100%;
}

#breakdownModalWrapper #spreadSheetInsertWrapper  #PLPeriod-spreadsheet-multiPieModal.multiChartSection #sectionThrobberWrapper {
    position: absolute;
    top: 25%;
    left: 31%;
    width: 55%;
    height: 32px;
    z-index: 1;
}

#breakdownModalWrapper #spreadSheetInsertWrapper  #PLPeriod-spreadsheet-multiPieModal.multiChartSection #sectionThrobberWrapper.hide {
    display: none;
}

#breakdownModalWrapper #spreadSheetInsertWrapper  #PLPeriod-spreadsheet-multiPieModal.multiChartSection  #throbberImageModalSection {
    position: relative;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    float: left;
    clear: left
}

#breakdownModalWrapper #spreadSheetInsertWrapper  #PLPeriod-spreadsheet-multiPieModal.multiChartSection  #throbberModalSectionText {
    position: relative;
    top: 6px;
    left: 0;
    margin-left: 12px;
    float: left;
    clear: right;
}

#breakdownModalWrapper #spreadSheetInsertWrapper  #PLPeriod-spreadsheet-multiPieModal.multiChartSection #spreadsheetModal-main {
    position: relative;
    width: 100%;
    height: 100%;
}

#PLPeriod-spreadsheet-multiPieModal.multiChartSection #spreadsheetModal-main #spreadsheets-reportPLModal-main.spreadsheets-report {
    max-height: 620px;
    opacity: 0;
}

/*grid in chart*/
#mainCenter.spreadsheets #PLPeriod-spreadsheet-multiPieModal .k-grid-toolbar {
    position: relative;
    min-height: 27px;
    background: none repeat scroll 0 0 #FFFFFF;
}

#mainCenter.spreadsheets #PLPeriod-spreadsheet-multiPieModal .pLHeaderWrapper {
    position: relative;
    padding-bottom: 0;
    padding-top: 8px;
    text-align: left;
}

#mainCenter.spreadsheets #PLPeriod-spreadsheet-multiPieModal div.k-grid-footer,
#PLPeriod-spreadsheet-multiPieModal .k-grid-footer {
    border-top: 1px solid #0F67A6;
    font-size: 11px;
}

#mainCenter.spreadsheets #PLPeriod-spreadsheet-multiPieModal .spreadsheets-report.kendoGrid .k-grid-content {
    height: auto !important;
    max-height: 525px !important;
    min-height: 60px !important;
}


#breakdownModalWrapper .slimScrollBar {
    height: 30px !important;
    z-index: 4002 !important;
    display: block !important;
}

#breakdownModalWrapper .slimScrollRail {
    z-index: 4001 !important;
    display: block !important;
}

/*ADDED WIDTH*/
#breakdownModalWrapper.fullView {
    -webkit-transition: width 0.8s ease;
    -moz-transition: width 0.8s ease;
    -o-transition: width 0.8s ease;
    -ms-transition: width 0.8s ease;
    transition: width 0.4s ease;
}

#breakdownModalWrapper.fullView #modalSlideWrapper {
    left: 3.4% !important;
    width: 1208px !important;
}

#breakdownModalWrapper.fullView .modalChartInnerWrapper {
  padding-left: 12px;
}

#breakdownModalWrapper.fullView #PLPeriod-top.modalChartSectionWrapper  {
    width: 60% !important;
    height: 346px !important;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

#breakdownModalWrapper.fullView #mainChartWrapper-multiPieModal {
    height: 86%;
}

#breakdownModalWrapper.fullView #innerSectionMiddle-PLPeriod {
    height: 162px;
}

#breakdownModalWrapper.fullView #innerSectionMiddle-PLPeriod .pieChartWrapper {

}


#breakdownModalWrapper.fullView #innerSectionMiddle-PLPeriod .chartTarget {
    width: 155px;
    height: 165px;
}

#breakdownModalWrapper.fullView #PLPeriod-middle.modalChartSectionWrapper {
    width: 59.8%;
}

#breakdownModalWrapper.fullView #innerSectionMiddle-PLPeriod-slideWrapper {
    display: none !important;
}

#breakdownModalWrapper.fullView #modalChartLegend-PLPeriod .innerSection-middle {
    padding-left: 4px;
}

#breakdownModalWrapper.fullView #modalChartLegend-PLPeriod .innerSectionAnnounce {
    padding-top: 6px;
    font-size: 12px;
    line-height: 15px;
}

#breakdownModalWrapper.fullView #modalChartLegend-PLPeriod .legendItem {
    font-size: 9px !important;
    line-height: 11px !important;
    transform: translate(4px, 2%) !important;
}

#breakdownModalWrapper.fullView #modalChartLegend-PLPeriod .legendAnnounce {
    transform: translate(23px, -54%);
}

#breakdownModalWrapper.fullView #modalChartLegend-PLPeriod .triangle-20 {
  border-left: 8px solid rgba(0, 0, 0, 0) !important;
  border-right: 8px solid rgba(0, 0, 0, 0) !important;
  position: absolute !important;
  transform: translate(0px, 25%) !important;
  border-bottom-width: 14px !important;
}

#breakdownModalWrapper.fullView #PLPeriod-bottom.modalChartSectionWrapper {
    position: absolute;
    right: 4%;
    bottom: -1%;
    width: 30%;
    height: 6%;
    padding-top: 0;
    text-align: center;
    display: none;
}




/*

#breakdownModalWrapper #modalChartLegend-PLPeriod .legendAnnounce {
  line-height: 14px;
  position: absolute;
  top: 47%;
  transform: translate(19px, -61%);
  width: 80%;
}
*/
/*---portBox 1.0 - jQuery plugin-------------------------------------

 *
 *	written by Joey Navarro
 *	http://www.joeynavarro.com
 *
 *	Copyright (c) 2013 Joey Navarro (http://www.joeynavarro.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *


.portBox-overlay {
	height: 100%;
	width: 100%;
	background: transparent;
	opacity: 0 !important;
	filter: alpha(opacity=60) !important;;
	position: absolute !important;
	top: 0;
	left: 0;
	z-index: -1 !important;
	display: none !important;
}

.portBox {
	max-width:1280px;
	position: absolute;
	display:none;
	background: #ffffff;
	z-index: 4001 !important;
	padding: 30px;
	text-align:left;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 10px;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-box-shadow: 0 0 10px rgba(0,0,0,.4);
	min-width:200px;
	font-family: 'Source Sans Pro', sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.close-portBox{
    font-size: 20px;
    line-height: .5;
    position: absolute;
    top: -6px;
    right: -7px;
    color: #fff !important;
    text-shadow:none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight:bold;
    cursor: pointer;
    border-radius:50%;
    padding:5px;
    background-color:#5c5c5c;
    overflow:visible;
    border:2px solid #fff;
    text-decoration:none;
    display: none !important;
}

.close-portBox:hover{
	color: #5c5c5c !important;
	background-color:#fff;
	border:2px solid #5c5c5c;
	display: none !important;
}
*/
/*----------------------------------------
porBox Content CSS


.project-pics{
	width:70%;
	float:left;
}

	.project-pics img{
		width:100%;
	}

.project-info {
	float: left;
	width:30%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding:0 0 0 40px;
	line-height:28px;
}

.project-info h3,
.project-info h4,
.project-info ul,
.project-info p,
.project-button{
	margin:10px 0;
	float:left;
	width:100%;
}

.project-info h3{
	font-size:28px;
	font-weight:bold;
	color:#030303;
}

.project-info p{
	font-size:16px;
	color:#030303;
}

.project-info h4{
	font-size:18px;
	color:#bfbfbf;
	border-bottom: 1px solid #e3e3e3;
	margin-top:20px;
	letter-spacing:2px;
}

.project-info ul{
	list-style:none;
	padding:0;
	color:#000;
}

.project-info ul li{
	margin-bottom:10px;
	font-size:16px;
}

.project-button{
	line-height: 45px;
	height: 45px;
	border-radius: 3px;
	color:#ffffff;
	text-decoration:none;
	background-color:#99cd4e;
	text-align:center;
	margin-top:15px;
	letter-spacing:2px;
	border: 1px solid #bbb;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	transition: all .15s linear;
	text-shadow:none;
}

	.project-button:hover{
		background: #d0d0d0;
		color: #fff !important;
		-webkit-box-shadow: inset 0 0 1px 1px #eaeaea;
		box-shadow: inset 0 0 1px 1px #eaeaea;
		cursor: pointer;
	}

	.project-button:active {
		background-color:#e3e3e3;
		color:#bfbfbf !important;
		-webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
		box-shadow: inset 0 0 1px 1px #e3e3e3;
	}


@media only screen and (max-width: 1024px){
	.project-pics{
		width: 100%;
	}

	.project-info{
		width: 100%;
		padding:0;
		margin-top:40px;
	}
}

@media only screen and (max-width: 420px){

	.project-info{
		text-align:center;
		margin-top:0;
	}

	.project-info h3{
		font-size:25px;
		line-height:30px;
	}

}


-----------------------------------------*/






























