/*
 * Rules:
 *
 *	-	A uxExpandiTable may sit at the top level
 *	-	A uxSelectorTable may sit at the top level
 *	-	A uxSelectorTable may sit inside the data cell (TD) of a uxExpandiTable
 *	-	A uxExpandiTable may NOT sit inside a uxSelectorTable PERIOD
 *	-	A uxExpandiTable may NOT sit inside another uxExpandiTable PERIOD
 *	-	A uxSelectorTable may NOT sit inside another uxSelectorTable PERIOD
 *
 */
/*
 * ===========================
 * N/Component: uxExpandiTable
 * ===========================
 */

.uxExpandiTable table {
    width: 100%;
    border-spacing: 0 1px;
    padding: 10px 0 5px 0;
}
.uxExpandiTable table tr th {
    padding: 0 10px;
    color: #333333;
    font-size: 80%;
    text-align: left;
}
.uxExpandiTable table tr td {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#efefef));/* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #ffffff, #efefef);/* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #ffffff, #efefef);/* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #ffffff, #efefef);/* IE 10 */
    background: -o-linear-gradient(top, #ffffff, #efefef);/* Opera 11.10+ */
    

    border-color: #cccccc;
    border-style: solid;
    border-width: 1px 0;
    box-shadow: 0 0 5px #cccccc inset;
}
.uxExpandiTable table tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-width: 1px 0 1px 1px;
}
.uxExpandiTable table tr td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-width: 1px 1px 1px 0;
}
.uxExpandiTable table tr.uxExpandiTable___Row {
    background-color: #ffffff;
    border: none;
    box-shadow: none;
}
.uxExpandiTable table tr.uxExpandiTable___Row td.uxExpandiTable___Cell {
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
}
.uxExpandiTable table tr.uxExpandiTable___Row .uxExpandiTable___ExpandingArea {
    position: relative;
    display: none;
    background-color: transparent;
    height: 10px;
    overflow: hidden;
    opacity: 0.00;
    filter: alpha(opacity=0);
}
.uxExpandiTable table tr.uxExpandiTable___Row .uxExpandiTable___ExpandingArea h1 {
    color: #61A60E;
    font-size: 124%;
}
.uxExpandiTable table tr.uxExpandiTable___Row .uxExpandiTable___ExpandingArea h2 {
    color: #61A60E;
    font-size: 112%;
}
.uxExpandiTable___FillCell {
    display: inline-block;
    width: 100%;
    height: 100%;
}
input.uxExpandiTable___FillCell {
    padding: 0 10px;
    cursor: pointer;
}
.uxExpandiTable___CellContent {
    display: block;
    padding: 10px;
}
.uxExpandiTable .uxExpandiTable___ToggleButton {
    background: none!important;
}
.uxExpandiTable .uxExpandiTable___ToggleButton a {
    position: relative;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #ffffff;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
.uxExpandiTable .uxExpandiTable___ToggleButton a:focus,
.uxExpandiTable .uxExpandiTable___ToggleButton a:hover {
    background-color: #73b9e6;
}
.uxExpandiTable .uxExpandiTable___ToggleButton .uxExpandiTable___Icon {
    position: relative;
    display: inline-block;
    background-color: transparent;
    background-image: url("/accessplan//LMSPortal/Resources/Themes/LMS/Common/Images/Icon/ffffff/icon___ExpandiTableRowIcon___Unopened___res0008x0008.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 16px;
    height: 1em;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.uxExpandiTable .uxExpandiTable___ToggleButton a:focus .uxExpandiTable___Icon,
.uxExpandiTable .uxExpandiTable___ToggleButton a:hover .uxExpandiTable___Icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.uxExpandiTable .uxExpandiTable___ToggleButton___Toggled a {
    position: relative;
    background-color: #73b9e6;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #ffffff;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
.uxExpandiTable .uxExpandiTable___ToggleButton___Toggled .uxExpandiTable___Icon {
    position: relative;
    display: inline-block;
    background-color: transparent;
    background-image: url("/accessplan//LMSPortal/Resources/Themes/LMS/Common/Images/Icon/ffffff/icon___ExpandiTableRowIcon___Opened___res0008x0008.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 16px;
    height: 1em;
}
.uxExpandiTable___Action {
    background-color: #61A60E;
    color: #ffffff;
    text-align: center;
}
.uxExpandiTable___Action:focus,
.uxExpandiTable___Action:hover {
    background-color: #73b9e6;
    color: #ffffff;
    text-align: center;
}
/*
 * ==========================
 * N/Component: uxReviewTable
 * ==========================
 */

.uxReviewTable {
    margin: 0.5em 0;
    border-color: #cccccc;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 0 5px #cccccc;
}
.uxReviewTable h1,
.uxReviewTable h2,
.uxReviewTable h3,
.uxReviewTable h4,
.uxReviewTable h5,
.uxReviewTable h6 {
    padding: 10px;
}
.uxReviewTable table {
    background-color: #ffffff;
    width: 100%;
    border-spacing: 0 1px;
    padding: 2px;
}
.uxReviewTable table tr th {
    background-color: #ffffff;
    width: 33%;
    padding: 5px;
    text-align: right;
    vertical-align: top;
}
.uxReviewTable table tr td {
    background-color: #efefef;
    width: 67%;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
/*
 * ============================
 * N/Component: uxSelectorTable
 * ============================
 */

.uxSelectorTable table {
    width: 100%;
    border-spacing: 0 1px;
    padding: 10px 0;
    overflow: auto;
}
.uxSelectorTable table tr th {
    padding: 0 10px;
    color: #333333;
    font-size: 80%;
    text-align: left;
}
.uxSelectorTable table tr td {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#efefef));/* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #ffffff, #efefef);/* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #ffffff, #efefef);/* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #ffffff, #efefef);/* IE 10 */
    background: -o-linear-gradient(top, #ffffff, #efefef);/* Opera 11.10+ */
   
    border-color: #cccccc;
    border-style: solid;
    border-width: 1px 0;
    box-shadow: 0 0 5px #cccccc inset;
}
.uxSelectorTable table tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-width: 1px 0 1px 1px;
}
.uxSelectorTable table tr td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-width: 1px 1px 1px 0;
}
.uxSelectorTable table tr:focus td,
.uxSelectorTable table tr:hover td {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333333), to(#222222));/* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #333333, #222222); /* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #333333, #222222); /* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #333333, #222222); /* IE 10 */
    background: -o-linear-gradient(top, #333333, #222222); /* Opera 11.10+ */
    
    box-shadow: 0 0 5px #000000 inset;
    color: #ffffff;
}
.uxSelectorTable___FillCell {
    display: inline-block;
    width: 100%;
    height: 100%;
}
input.uxSelectorTable___FillCell {
    padding: 0 10px;
	color: #333333;
    cursor: pointer;
}
.uxSelectorTable___CellContent {
    display: block;
    padding: 10px;
}
.uxSelectorTable___Action {
    background-color: #61A60E;
    color: #ffffff;
    text-align: center;
}

.uxSelectorTable___Action:focus,
.uxSelectorTable___Action:hover {
    background-color: #73b9e6;
    color: #ffffff;
    text-align: center;
	text-decoration: none;
}

.uxSelectorTable___ActionNegative{
	background-color: #C73131;
	color: #ffffff;
	text-align: center;
}



.uxSelectorTable___ActionNegative:hover{
	background-color:#8F2323;
	color: #dddddd;
	text-align:center;
	text-decoration: none;
}

/*
 * ==========================
 * N/Component: uxOverviewTable
 * ==========================
 */

.uxOverviewTable {
    margin: 0.5em 0;
    box-shadow: 0 0 5px #cccccc;
}
.uxOverviewTable h1,
.uxOverviewTable h2,
.uxOverviewTable h3,
.uxOverviewTable h4,
.uxOverviewTable h5,
.uxOverviewTable h6 {
    padding: 10px;
}
.uxOverviewTable table {
    background-color: #ffffff;
    width: 100%;
    border-spacing: 0 1px;
    padding: 2px;
}
.uxOverviewTable table tr th {
    background-color: #ffffff;
    padding: 5px;
    text-align: left !important;
    vertical-align: top;
    white-space: nowrap;
}
.uxOverviewTable table tr td {
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
.uxOverviewTable .interaction table tr td {
    width: 100%;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
/*
 * ==========================
 * N/Component: uxOverviewSummaryTable
 * ==========================
 */

.uxOverviewSummaryTable {
    margin: 0.5em 0;
    box-shadow: 0 0 5px #cccccc;
}
.uxOverviewSummaryTable h1,
.uxOverviewSummaryTable h2,
.uxOverviewSummaryTable h3,
.uxOverviewSummaryTable h4,
.uxOverviewSummaryTable h5,
.uxOverviewSummaryTable h6 {
    padding: 10px;
}
.uxOverviewSummaryTable table {
    background-color: #ffffff;
    width: 100%;
    border-spacing: 0 1px;
    padding: 2px;
}
.uxOverviewSummaryTable table tr th {
    background-color: #ffffff;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
.uxOverviewSummaryTable table tr td {
    width: 100%;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}


.detailsTable {
	color: #333333;
}



.detailsTable tr{
	line-height: 1.75em;
}

.detailsTable tr td{
	min-width: 200px;
}

.detailsTable tr td.description{
	text-align: left;
	font-weight: bold;
}
.detailsTable tr td.value{
	text-align: right;
}
