﻿/* TextBox*/
.textbox
{
   	background-position: 5px 5px;
	border: solid 1px #dddddd;
	outline: 0;
	line-height: 22px;
	height: 22px;
	padding: 0px 7px 0px 7px;
	-moz-box-shadow:1px 1px 2px #f5f5f5;
	-webkit-box-shadow:1px 1px 2px #f5f5f5;
	box-shadow:1px 1px 2px #f5f5f5;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
    background-color: white;
    cursor: auto;
}

.textbox:focus
{
    border-color: #C9C9C9;
	-moz-box-shadow:0px 0px 8px #dddddd;
	-webkit-box-shadow:0px 0px 8px #dddddd;
	box-shadow:0px 0px 8px #dddddd;
}

.textbox:disabled
{
  	background: -webkit-gradient(linear, left top, left 25, from(#EEEEEE), color-stop(4%, #EEEEEE), to(#EEEEEE));
	background: -moz-linear-gradient(top, #EEEEEE, #EEEEEE 1px, #EEEEEE 25px);
	color: #666;
}

.textbox.full
{
    width: 100%;
    max-width: 100%;
}

.textbox.xlarge
{ 
    width: 317px;    
}

.textbox.large
{ 
    width: 285px;    
}

.textbox.medium
{    
    width: 218px;    
}

.textbox.small
{ 
    width: 118px;
}

.textbox.xsmall
{ 
    width: 58px;
    text-align:center;
}

.textbox.xxsmall
{ 
    width: 35px;    
}

/* GroupBox */
.widget
{
    border: 1px solid #CCCCCC; 
    border-radius: 4px; 
    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px; 
    overflow: hidden; 
    margin-bottom: 20px; 
    padding: 0;
}

.widget .title
{
    height: 20px; 
    border-bottom: none; 
    background: #ffffff; 
    /* Old browsers */ 
    background: -moz-linear-gradient(top, #ffffff 19%, #ededed 100%); /* FF3.6+ */ 
    background: -webkit-gradient(linear, left top, left bottom, color-stop(19%, #ffffff), color-stop(100%, #ededed)); /* Chrome,Safari4+ */ 
    background: -webkit-linear-gradient(top, #ffffff 19%, #ededed 100%); /* Chrome10+,Safari5.1+ */ 
    background: -o-linear-gradient(top, #ffffff 19%, #ededed 100%); /* Opera 11.10+ */ 
    background: -ms-linear-gradient(top, #ffffff 19%, #ededed 100%); /* IE10+ */ 
    background: linear-gradient(top, #ffffff 19%, #ededed 100%); /* W3C */ 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );/*  IE6-9 */ 
}


.widget .content
{    
	background: #ffffff url("../images/inner-shadow.png") repeat-x;
	border-top: 1px solid #cecece;
	padding: 5px 10px;
	/*padding: 15px 25px;*/
}

.widget .section
{
    float: left;
    position: relative;
    width: 400px;
    margin-top: 4px;
    margin-right: 35px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.widget label
{
    float: left;
    position: relative;
    font-size: 11px;
    cursor: pointer;
    line-height: 22px;
    width: 100px;
}

.widget label span
{
    font-size: 12px;
    font-weight: bold;
    color: red;
}

.panel_expanded
{
    background: url('../images/menu-expanded.png') no-repeat scroll 5px 65% transparent;
    color: #2C79B3;    
    font-size: 14px;
    font-weight: bold;
    padding-left: 15px;    
    cursor:pointer;  
}

.panel_collapsed
{
    background: url('../images/menu-collapsed.png') no-repeat scroll 5px 65% transparent;
    background-position: 5px 50%;
    color: #2C79B3;    
    font-size: 14px;
    font-weight: bold;
    padding-left: 15px;    
    cursor:pointer;   
}


/* ActionButton */
.button 
{
    color: #333;
    background-color: #F4F4F4;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #f2f2f2;
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #f2f2f2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #f2f2f2;
    text-shadow: none;
    border: 1px solid #AAA;
    position: relative;
    z-index: 1;
    overflow: visible;
    display: inline-block;
    padding: 5px 12px 6px 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    outline: none;
    background-position: 0 -1px;
    -webkit-transition: all .2s ease-out;
    font-weight: bold;
    font-size: 11px;
    text-transform: capitalize;
    margin-top: -1px;
    background-image: -o-linear-gradient(#F4F4F4, #F4F4F4);
    margin-left: 0;
    margin-right: 3px;
    margin-bottom: 10px;
}

.button:hover {
	color: #666;
	background-color: #999;
	-webkit-box-shadow: 0 0px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #eeeeee;
	-moz-box-shadow: 0 0px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #eeeeee;
	box-shadow: 0 0px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #eeeeee;
	text-shadow:none;
}

/* PickList */

.picklist
{
    background-position: 5px 5px;
	border: solid 1px #dddddd;
	outline: 0;
	line-height: 23px;
	height: 23px;	
	-moz-box-shadow:1px 1px 2px #f5f5f5;
	-webkit-box-shadow:1px 1px 2px #f5f5f5;
	box-shadow:1px 1px 2px #f5f5f5;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
    background-color: white;
    cursor: auto;
}

.picklist:focus
{
    border-color: #C9C9C9;
	-moz-box-shadow:0px 0px 8px #dddddd;
	-webkit-box-shadow:0px 0px 8px #dddddd;
	box-shadow:0px 0px 8px #dddddd;
}

.picklist:disabled
{
  	background: -webkit-gradient(linear, left top, left 25, from(#EEEEEE), color-stop(4%, #EEEEEE), to(#EEEEEE));
	background: -moz-linear-gradient(top, #EEEEEE, #EEEEEE 1px, #EEEEEE 25px);
	color: #666;
}

.picklist.full
{
    width: 100%;
    max-width: 100%;
}

.picklist.large
{
    width: 285px;    
}

.picklist.medium
{
    width: 218px;    
}

.picklist.small
{
    width: 118px;    
}

.picklist.xsmall
{
    width: 58px;    
}

.picklist.xxsmall
{
    width: 25px;    
}

/* CheckBox */

.checkbox input
{
    margin-left: 0px;
    margin-top: 6px;
}

/*DatePicker*/

.dateselect
{
    /*background-image: url("../images/calendar-blue.png");
    background-position: 98px center;
    background-repeat: no-repeat;*/
    width: 118px;
}

/*PageTitle*/

.pagetitle
{
    font-size: 17px;    
    background-position: 5px 0;
    background-repeat: no-repeat;
    width: auto;    
    padding: 5px 0 0 60px;
    line-height: 45px;
    /*border-bottom: 1px solid #CCC;*/
}

/*SectionTitle*/
.sectiontitle
{
    border-bottom: 1px solid #F1F0F5;
    color: #999999;
    font-size: 16px;
    font-weight: normal;
    clear: both;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 5px;    
}


/*DataList
.datalist
{
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #FFFFFF;
    border-color: #F3F3F3 #EEEEEE -moz-use-text-color;
    border-left: 0 solid #EEEEEE;
    border-right: 0 solid #EEEEEE;
    border-style: solid solid none;
    border-width: 0;
    width: 100%;  
}

.datalist th
{
    height: 24px;
    background-color: #E4E4E4;
    border-bottom: 1px solid #D3D3D3;
    color: #777777;
    font-size: 12px;
    font-weight: normal;
    height: 28px;
    line-height:28px;
    padding-left: 10px;
    text-align: left;
    text-shadow: 0 2px 0 #FFFFFF;
    white-space: nowrap;
}


.datalist td
{
    height: 26px;
    padding: 0 3px 0 10px;
    background-color: #FFFFFF;      
    empty-cells:show;
}


.datalist {   
    width: 100%;   
    background-color: #fff;   
    margin: 5px 0 10px 0;   
    border-style: solid solid none; 
    border-collapse:collapse;   
}  
.datalist td {      
    padding: 0 3px 0 10px; 
    empty-cells: show;     
    border-bottom: 1px solid #F7F7F7;    
    height: 26px;    
    text-align: left; 
}  
.datalist th {   
    background-color: #E4E4E4;
    border-bottom: 1px solid #D3D3D3;
    color: #777777;
    font-size: 12px;
    font-weight: normal;
    height: 28px;
    line-height: 28px;
    padding-left: 10px;
    text-align: left;
    text-shadow: 0 2px 0 #FFFFFF; 
}  

.toolbarrow
{
    background-color: #CBCBCB;
    border-bottom: 1px solid #B1B1B1;
    border-top-left-radius: 5px;    
    border-top-right-radius: 5px;
    padding: 5px 0 2px;
}

.footerrow
{
    background-color: #CBCBCB;
    border-bottom: 1px solid #B1B1B1;
    border-top-left-radius: 5px;    
    border-top-right-radius: 5px;
    padding: 5px 0 2px;
}
*/

.ui-icon.fff-icon-delete {background-image:url('/images/delete.png') !important;}
.ui-icon.fff-icon-excel {background-image:url('/images/excel.png') !important;}

/************** NOTIFICATION MESSAGES ****************/
/************** elements.html *******************************/

.notification { 
	height: 51px; overflow: hidden; position: relative; margin-bottom: 20px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; 
	-moz-box-shadow: 1px 1px 2px #ddd;
}
.notification p { margin: 14px 10px 0 75px; font-size: 13px; color: #333; }
.notification a.close { 
	position: absolute; width: 14px; height: 14px; top: 5px; right: 5px; background-image: url('/images/close.png'); background-repeat: no-repeat; }
.notification a.close:hover { cursor: pointer; }
.msgalert a.close { background-position: -14px 0; }
.msgalert a.close:hover { background-position: -14px -14px; }
.msginfo a.close { background-position: -42px 0; }
.msginfo a.close:hover { background-position: -42px -14px; }
.msgsuccess a.close { background-position: -28px 0; }
.msgsuccess a.close:hover { background-position: -28px -14px; }
.msgerror a.close { background-position: 0 0; }
.msgerror a.close:hover { background-position: 0 -14px; }

.msgalert { border: 1px solid #eac572; background: #ffe9ad url('/images/notifications.png') no-repeat 0 -52px; }
.msginfo { border: 1px solid #99c4ea; background: #d1e4f3 url('/images/notifications.png') no-repeat 0 -156px; }
.msgsuccess { border: 1px solid #c1d779; background: #effeb9 url('/images/notifications.png') no-repeat 0 -104px; }
.msgerror { border: 1px solid #e18b7c; background: #fad5cf url('/images/notifications.png') no-repeat 0 0; }


/*Listview*/

.tablestyle 
{
    border-collapse:separate !important; /*round corner fix*/
}

.tablestyle tr th.thead {
    height: 22px;
    padding: 0 2px;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
    color:#FFFFFF;       
}

.tablestyle tr td.tbody {
    font-weight: normal;
    height: 22px;
    padding: 0 2px;
    vertical-align: middle;
}

.tablestyle tr th.thead a {
    text-decoration:none;
    color:#FFFFFF;
}

.width1
{
    width: 1%;
}

.fields_leftcolumn
{
    float: left;
   /* width: 350px;*/
   width: 50%;
}

.fields_rightcolumn
{
    float: right;
    width: 350px;
}

.fields_fullcolumn
{
    clear: both;    
}

.required
{
    color: Red;
}