﻿/***********=GRID STYLES (OOCSS)***********/
/***=line (row)***/
.line:before, .line:after {
	content: "";
	display: table;
}
.line:after { clear: both; }


/***=columns (units)***/
.unit {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
.unit-right, unit-reversed, .css_right { float: right; }

.size-full {
	float: none;
	width: auto;
}

.size1of2, .size2of4, .size3of6, .size4of8, .size5of10, .size6of12 { width: 50%; }

.size1of3, .size2of6, .size3of9, .size4of12 { width: 33.33333333%; }
.size2of3, .size4of6, .size6of9, .size8of12 { width: 66.66666666%; }

.size1of4, .size2of8, .size3of12 { width: 25%; }
.size3of4, .size6of8, .size9of12 { width: 75%; }

.size1of5, .size2of10 { width: 20%; }
.size2of5, .size4of10 { width: 40%; }
.size3of5, .size6of10 { width: 60%; }
.size4of5, .size8of10 { width: 80%; }

.size1of6, .size2of12 { width: 16.6666666%; }
.size5of6, .size10of12 { width: 83.3333333%; }

.size1of7 { width: 14.2857143%; }
.size2of7 { width: 28.5714286%; }
.size3of7 { width: 42.8571429%; }
.size4of7 { width: 57.1428572%; }
.size5of7 { width: 71.4285715%; }
.size6of7 { width: 85.7142858%; }

.size1of8 { width: 12.5%; }
.size3of8 { width: 37.5%; }
.size5of8 { width: 62.5%; }
.size7of8 { width: 87.5%; }

.size1of9 { width: 11.11111111%; }
.size2of9 { width: 22.22222222%; }
.size4of9 { width: 44.44444444%; }
.size5of9 { width: 55.55555555%; }
.size7of9 { width: 77.77777778%; }
.size8of9 { width: 88.88888889%; }

.size1of10 { width: 10%; }
.size3of10 { width: 30%; }
.size7of10 { width: 70%; }
.size9of10 { width: 90%; }

.size1of11 { width: 9.09090909%; }
.size2of11 { width: 18.18181818%; }
.size3of11 { width: 27.27272727%; }
.size4of11 { width: 36.36363636%; }
.size5of11 { width: 45.45454545%; }
.size6of11 { width: 54.54545454%; }
.size7of11 { width: 63.63636364%; }
.size8of11 { width: 72.72727273%; }
.size9of11 { width: 81.81818182%; }
.size10of11 { width: 90.90909091%; }

.size1of12 { width: 8.33333333%; }
.size5of12 { width: 41.66666667%; }
.size7of12 { width: 58.33333333%; }
.size11of12 { width: 91.66666667%; }


.last-unit {
	float: none;
	overflow: hidden;
	width: auto;
}

.unit-content-pl { padding-left: 20px; }
.unit-content-pr { padding-right: 20px; }
.unit-content-ml { margin-left: 20px; }
.unit-content-mr { margin-right: 20px; }
.unit-content-mt { margin-top: 20px; }
.unit-content-mb { margin-bottom: 20px; }

/***=content inset***/
.content-inset {
	padding: 12px;
	padding: 1.2rem;
}
/***********=END GRID STYLES***********/



/**********=LAYOUT WRAPS**********/
.wrap {
	display: block;
	position: relative;
}


/***=page wrap (extends wrap)***/
.page-wrap {
	height: 100%;
	/*overflow-x: hidden;*/ /*off for now, blocks window scroll events*/
	width: 100%;
}


/***=mp pusher (extends wrap)***/
.mp-pusher {
	box-sizing: border-box;
	left: 0;
	min-height: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.mp-resized { padding-right: 280px; }


/***=content (extends wrap)***/
.content {
	height: 100%;
	min-height: 76.8rem;
}
.modal-body .content { min-height: 0; }
.mp-menu-trigger + .content { margin-left: 7.2rem; }
.inlinePortlet-body .mp-menu-trigger + .content { margin-left: 0; }


/***=identity bar (extends wrap)***/
.identity-bar {
	background: #fff;
	padding: 0 2.4rem 0 9rem;
}


/***=identity menu (extends wrap)***/
.identity-bar-menu {
	margin: 2.4rem 0 0 2.4rem;
	min-width: 21rem;
}
.identity-bar-menu:focus { outline: none; }
.identity-bar-menu .dropdown-toggle {
	min-width: 21rem;
	white-space: nowrap;
}
.identity-bar-menu .dropdown-toggle > .img {
	display: inline-block;
	margin-right: 0;
}
.identity-bar-menu .dropdown-toggle > .bd {
	display: inline-block;
	padding: 1.4rem 0 1.4rem 0.6rem;
}
.identity-bar-menu .name {
	display: inline-block;
	font-size: 1.4rem;
	margin-left: 5px;
	vertical-align: middle;
}
.identity-bar-menu .dropdown-toggle [class^="icon-"] {
	color: #7f8c8c;
	vertical-align: middle;
}


/***=content wrap (extends wrap)***/
.content-wrap {
	background: transparent;
	padding: 1.5rem 1.2rem 3rem 9rem;
}
.inlinePortlet-body .content-wrap { padding: 0; }
.content-header {
	min-height: 2.4rem;
	padding-top: 0.9rem;
	position: relative;
}
.content-body {
	background: transparent;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 300px;
	padding: 1.5rem 1.2rem 3rem;
	width: 100%;
}
.headless-unit > .content-body { padding-top: 2.4rem; }


/***=full content (extends content-wrap/wrap)***/
.full-content { padding-top: 24px; }
.ui-tabs .full-content { padding-top: 0; }


/***=headless content (extends full-content/content-wrap/wrap)***/
.headless-content {
	background: #fff;
	padding-top: 57px;
}


/***=compartment (extends wrap)***/
.compartment {
	background: #fff;
	height: 100%;
}


/***=simple content wrap (extends wrap)***/
.simple-content-wrap { padding-top: 9px; }


/***=inner tabbed wrap (extends simple-content-wrap/wrap)***/
.inner-tabbed-wrap {
	background-position: 0 5px;
	padding-top: 0;
}


/***=tabbed wrap (extends wrap)***/
.tabbed-wrap { background: #fff; }
.ui-tabs-hide { display: none; }


/***=feature tabs (extends wrap)***/
.feature-tabs {
	border: 1px solid #d1d1d1;
	margin-top: 28px;
}
.content-body .ui-tabs.feature-tabs .ui-widget-header {
	margin-left: 0;
	margin-right: 0;
	padding-right: 0;
}


/***=instrument editor (extends wrap)***/
.instrument-editor {
	overflow-x: auto;
	padding-top: 36px;
}
.conventional-editor { padding-top:  0; }


/***=table wrap (extends wrap)***/
.table-wrap.activated {
	overflow-x: auto;
	padding-bottom: 60px;
}
.mailbox-contents .table-wrap { padding-bottom: 60px; }
.table-wrap.activated table { margin-bottom: 0; }
.table-wrap::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}
.table-wrap::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}


/***=perm wrap (extends wrap)***/
.perm-wrap {
	display: inline-block;
	position: relative;
}


/***=escalation branch***/
.escalation-branch {
	left: 50%;
	margin-left: -13.636363635%;
	position: absolute;
	top: 0;
	z-index: 10;
}
.escalation-branch img {
	height: 100%;
	width: 100%;
}


/***=ep footer (extends wrap)***/
.ep-footer { padding: 15px; }


/***=keyword/keyphrase wrap (extends wrap)***/
.kw-wp-wrap {
	bottom: 0;
	left: 6px;
	padding: 8px 0;
	position: absolute;
}
/**********=LAYOUT WRAPS (end)**********/


/**********=COLUMN FLOW**********/
.column-flow {
	-moz-column-count: 2; /* Firefox */
	-webkit-column-count: 2; /* Safari and Chrome */
	column-count: 2;

	-moz-column-gap: 24px; /* Firefox */
	-webkit-column-gap: 24px; /* Safari and Chrome */
	column-gap: 24px;

	-moz-column-rule: 1px solid rgba(51,49,49,0.25); /* Firefox */
	-webkit-column-rule: 1px solid rgba(51,49,49,0.25); /* Safari and Chrome */
	column-rule: 1px solid rgba(51,49,49,0.25);

	margin: 1.2rem 0 0;
}
.column-flow > div,
.column-flow > li,
.column-flow > table {
	-webkit-column-break-inside:avoid;
	-moz-column-break-inside:avoid;
	-o-column-break-inside:avoid;
	-ms-column-break-inside:avoid;
	column-break-inside:avoid;
}
.column-flow .keep-together {
	display: inline-block;
	width: 100%;
}


/***=column counts (extends .column-flow) ***/
.three-columns { 
	-moz-column-count:3; /* Firefox */
	-webkit-column-count:3; /* Safari and Chrome */
	column-count:3;
}
.four-columns { 
	-moz-column-count:4; /* Firefox */
	-webkit-column-count:4; /* Safari and Chrome */
	column-count:4;
}


/***=featured columns (extends .column-flow) ***/
.featured-columns { 
	background-color: #f8f8f8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 1.2rem; 
}


/***=content block (extends wrap)***/
.content-block {
    display: block;
    overflow: auto;
    padding: 6px 0;
    width: 100%;
}
.content-block-featured {
	background-color: #dfe1e3;
	background-color: rgba(97,107,114,0.2);
	border-radius: 5px;
	margin-bottom: 15px;
	padding: 8px;
	position: relative;
}
.content-block-featured h3 {
	border-bottom: 1px solid #fff;
	margin: 0 0 8px -8px;
	padding: 0 8px 8px;
	width: 100%;
}
.content-block-information {
	background: url(../images/layout/layout-box-bg.png);
	margin: 12px 0;
	padding: 15px 12px;
}
.content-block-information p { color: #333131; }
/**********=COLUMN FLOW (end)**********/



/***********=LAYOUT PATTERNS**********/
/***=master/detail layout (extends wrap)***/
.master-detail {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.master-detail > .unit {
	display: table-cell;
	float: none;
	vertical-align: top;
}
.master-detail > .master { background: #2d2e2e; }
.master-detail > .detail { padding-left: 0; }
.master-detail > .detail .tocs-picklist { padding: 1px 0 0; }


/***=bright master (extends master/detail & wrap)***/
.bright-master { background: #fff; }
.bright-master .column {
	background-position: left -24px;
	border-bottom: medium none;
	height: 100%;
	padding-top: 9px;
}
.bright-master > .master {
	background-color: #fff;
	background-image: none;
}


/***=gallery wrap (extends master/detail, bright-master & wrap)***/
.gallery-wrap {
    border-top: 1px solid #efefef;
    margin: 12px 0 0 -12px;
    padding: 0 12px;
}
.gallery-wrap-wide { display: block; }
.galleryTree { padding-right: 12px; }
.galleryTree select { width: 100%; }
.gallery-narrow { border-left: 1px solid #efefef; }
.gallery-narrow .ui-tabs { padding-left: 12px; }
.gallery-wrap .gallery-wide {
	display: block;
	float: none;
	width: auto;
}


/***=plain master (extends master/detail & wrap)***/
.plain-master {
	display: block;
	width: auto;
}
.plain-master > .unit {
	display: block;
	float: left;
}
.plain-master > .master {
	background-color: transparent;
	background-image: none;
}


/***=vertical master (extends wrap)***/
.master-detail > .vertical-master {
	background: #fff url(../images/layout/layout-box-bg-trans.png);
	border: 1px solid #ddd;
	border-bottom: 2px solid #333131;
	margin-bottom: 1.2rem;
}


/***=panel viewer (extends master/detail & wrap)***/
.panel-viewer-detail {
	background: rgba(255,255,255,0.3);
	border: 1px solid rgba(0,0,0,0.4);
	box-shadow: 0 0 3px #fff;
	margin: 1em 0;
	padding: 12px;
	padding: 1.2rem;
	position: relative;
}

.panel-viewer-detail.no-border { border: none; }

.panel-viewer-bar {
	position: absolute;
	left: -32px;
	top: -1px;
}

.panel-viewer-back {
	background: #444141 url(../images/ui/ui-chevrons.png) no-repeat 0 -32px;
	border: none;
	color: #fff;
	display: block;
	font-size: 1.8rem;
	line-height: 1.78;
	overflow: hidden;
	text-indent: -500px;
	width: 32px;
}

.panel-viewer-detail.success {
	border-color: #57a957;
	box-shadow: 0 0 3px #57a957;
}
.panel-viewer-detail.success .panel-viewer-back { background-color: #57a957; }

.panel-viewer-detail.error {
	border-color: #c43c35;
	box-shadow: 0 0 3px #c43c35;
}
.panel-viewer-detail.error .panel-viewer-back { background-color: #c43c35; }

.panel-viewer-detail.notice {
	border-color: #2a76b0;
	box-shadow: 0 0 3px #2a76b0;
}
.panel-viewer-detail.notice .panel-viewer-back { background-color: #2a76b0; }

.panel-viewer-back:hover { background-position: -3px -32px; }

/***********=LAYOUT PATTERNS (end)**********/



/***********=GENERAL LAYOUT CLASSES**********/
.hidden { display: none; }
.nowrap { white-space: nowrap; }

.float-left { float: left; }
.float-right { float: right; }
.clear-left { clear: left; }
.clear-right { clear: right; }
.clear-both { clear: both; }

.inline-block { display: inline-block; }
.inline { display: inline; }

.align-left { text-align: left; }
.align-right { text-align: right; }
.align-center { text-align: center; }

/***=Fullscreen HTML5***/

:-webkit-full-screen,
:-moz-full-screen,
:-ms-fullscreen,
:fullscreen { /* properties */ }

/* deeper elements */
:-webkit-full-screen video { }

/* fullscreen backdrop*/
::backdrop,
::-ms-backdrop { /* properties */ }

/***=compatibility mode warning***/
body.has-warning { padding-bottom: 32px; }
#CM-warning {
    background: #f5de7a;
	border-top: 1px solid #f26522;
    bottom: 0;
	color: #a0410d;
	font-size: 1.2rem;
    height: 23px;
    left: 0;
	line-height: 1.92;
    margin: 0;
    padding: 0 12px;
    position: fixed;
	text-align: center;
    width: 100%;
}
/***********=GENERAL LAYOUT CLASSES (end)**********/


/***********=TO DEPRECATE**********/
.clear { clear:both; }
.width2 { width: 2%; }
.width3 { width: 3%; }
.width5 { width:5%; }
.width10 { width:10%; }
.width15 { width:15%; }
.width20 { width:20%; }
.width25 { width:25%; }
.width30 { width:30%; }
.width33 { width:33.33%; }
.width35 { width:35%; }
.width40 { width:40%; }
.width45 { width:45%; }
.width50 { width:50%; }
.width55 { width:55%; }
.width60 { width:60%; }
.width65 { width:65%; }
.width67 { width:66.67%; }
.width70 { width:70%; }
.width75 { width:75%; }
.width80 { width:80%; }
.width85 { width:85%; }
.width90 { width:90%; }
.width95 { width:95%; }
.width100 { width:100%; }

.leftColumn {
	clear: left;
	float: left;
	width: 49.5%;
}
.rightColumn {
	clear: right;
	float: right;
	width: 49.5%;
}
.no-overflow { overflow: hidden; }
.leftColumnNarrow {
	float: left;
	margin-bottom: 20px;
	padding-bottom: 20px;
	width: 330px;
}
.rightColumnWide {
	margin-bottom: 20px;
	margin-left: 345px;
	padding-bottom: 20px;
}
/***********=TO DEPRECATE (end)**********/



/**********=RESPONSIVE**********/
/***=wide screens (1440px and greater)***/
@media only screen and (min-width: 90em) {
	/*#region LargeScreenUnits */
	/***=columns (units)***/
	.l-size-full {
		float: none;
		width: auto;
	}
	.l-size-none { display: none; }
	
	.l-size1of2, .l-size2of4, .l-size3of6, .l-size4of8, .l-size5of10, .l-size6of12 { width: 50%; }

	.l-size1of3, .l-size2of6, .l-size3of9, .l-size4of12 { width: 33.33333333%; }
	.l-size2of3, .l-size4of6, .l-size6of9, .l-size8of12 { width: 66.66666666%; }

	.l-size1of4, .l-size2of8, .l-size3of12 { width: 25%; }
	.l-size3of4, .l-size6of8, .l-size9of12 { width: 75%; }

	.l-size1of5, .l-size2of10 { width: 20%; }
	.l-size2of5, .l-size4of10 { width: 40%; }
	.l-size3of5, .l-size6of10 { width: 60%; }
	.l-size4of5, .l-size8of10 { width: 80%; }

	.l-size1of6, .l-size2of12 { width: 16.6666666%; }
	.l-size5of6, .l-size10of12 { width: 83.3333333%; }

	.l-size1of7 { width: 14.2857143%; }
	.l-size2of7 { width: 28.5714286%; }
	.l-size3of7 { width: 42.8571429%; }
	.l-size4of7 { width: 57.1428572%; }
	.l-size5of7 { width: 71.4285715%; }
	.l-size6of7 { width: 85.7142858%; }

	.l-size1of8 { width: 12.5%; }
	.l-size3of8 { width: 37.5%; }
	.l-size5of8 { width: 62.5%; }
	.l-size7of8 { width: 87.5%; }

	.l-size1of9 { width: 11.11111111%; }
	.l-size2of9 { width: 22.22222222%; }
	.l-size4of9 { width: 44.44444444%; }
	.l-size5of9 { width: 55.55555555%; }
	.l-size7of9 { width: 77.77777778%; }
	.l-size8of9 { width: 88.88888889%; }

	.l-size1of10 { width: 10%; }
	.l-size3of10 { width: 30%; }
	.l-size7of10 { width: 70%; }
	.l-size9of10 { width: 90%; }

	.l-size1of11 { width: 9.09090909%; }
	.l-size2of11 { width: 18.18181818%; }
	.l-size3of11 { width: 27.27272727%; }
	.l-size4of11 { width: 36.36363636%; }
	.l-size5of11 { width: 45.45454545%; }
	.l-size6of11 { width: 54.54545454%; }
	.l-size7of11 { width: 63.63636364%; }
	.l-size8of11 { width: 72.72727273%; }
	.l-size9of11 { width: 81.81818182%; }
	.l-size10of11 { width: 90.90909091%; }

	.l-size1of12 { width: 8.33333333%; }
	.l-size5of12 { width: 41.66666667%; }
	.l-size7of12 { width: 58.33333333%; }
	.l-size11of12 { width: 91.66666667%; }
	/*#endregion*/
}


/***=tablet (768px - 1100px)***/
@media only screen and (min-width : 48em) and (max-width : 69em) {
	/*#region MediumScreenUnits */

	/***=columns (units)***/
	.m-size-full {
		float: none;
		width: auto;
	}
	.m-size-none { display: none; }

	.m-size1of2, .m-size2of4, .m-size3of6, .m-size4of8, .m-size5of10, .m-size6of12 { width: 50%; }

	.m-size1of3, .m-size2of6, .m-size3of9, .m-size4of12 { width: 33.33333333%; }
	.m-size2of3, .m-size4of6, .m-size6of9, .m-size8of12 { width: 66.66666666%; }

	.m-size1of4, .m-size2of8, .m-size3of12 { width: 25%; }
	.m-size3of4, .m-size6of8, .m-size9of12 { width: 75%; }

	.m-size1of5, .m-size2of10 { width: 20%; }
	.m-size2of5, .m-size4of10 { width: 40%; }
	.m-size3of5, .m-size6of10 { width: 60%; }
	.m-size4of5, .m-size8of10 { width: 80%; }

	.m-size1of6, .m-size2of12 { width: 16.6666666%; }
	.m-size5of6, .m-size10of12 { width: 83.3333333%; }

	.m-size1of7 { width: 14.2857143%; }
	.m-size2of7 { width: 28.5714286%; }
	.m-size3of7 { width: 42.8571429%; }
	.m-size4of7 { width: 57.1428572%; }
	.m-size5of7 { width: 71.4285715%; }
	.m-size6of7 { width: 85.7142858%; }

	.m-size1of8 { width: 12.5%; }
	.m-size3of8 { width: 37.5%; }
	.m-size5of8 { width: 62.5%; }
	.m-size7of8 { width: 87.5%; }

	.m-size1of9 { width: 11.11111111%; }
	.m-size2of9 { width: 22.22222222%; }
	.m-size4of9 { width: 44.44444444%; }
	.m-size5of9 { width: 55.55555555%; }
	.m-size7of9 { width: 77.77777778%; }
	.m-size8of9 { width: 88.88888889%; }

	.m-size1of10 { width: 10%; }
	.m-size3of10 { width: 30%; }
	.m-size7of10 { width: 70%; }
	.m-size9of10 { width: 90%; }

	.m-size1of11 { width: 9.09090909%; }
	.m-size2of11 { width: 18.18181818%; }
	.m-size3of11 { width: 27.27272727%; }
	.m-size4of11 { width: 36.36363636%; }
	.m-size5of11 { width: 45.45454545%; }
	.m-size6of11 { width: 54.54545454%; }
	.m-size7of11 { width: 63.63636364%; }
	.m-size8of11 { width: 72.72727273%; }
	.m-size9of11 { width: 81.81818182%; }
	.m-size10of11 { width: 90.90909091%; }

	.m-size1of12 { width: 8.33333333%; }
	.m-size5of12 { width: 41.66666667%; }
	.m-size7of12{ width: 58.33333333%; }
	.m-size11of12 { width: 91.66666667%; }

/*#endregion*/

	/***content (extends wrap)***/
	.mp-menu-trigger + .content { margin-left: 4.8rem; }
	.mp-menu-trigger { width: 4.8rem; }


	/***=identity bar (extends wrap)***/
	.identity-bar { padding-left: 6rem; }


	/***=content wrap (extends wrap)***/
	.content-wrap { padding-left: 6rem;}


	/***=assessment wrapper (extends wrap)***/
	.assessment-wrapper { padding-left: 8.3rem; }

	/***=table wrap (extends wrap)***/
	.table-wrap { overflow-x: auto; }
	.table-wrap table { border: 0; }
}

/***=Mobile (Portrait/Landscape - less than 768px) ***/
@media only screen and (max-width: 47.9375em) {
	/*#region SmallScreenUnits */

	/***=columns (units)***/
	.s-size-full {
		float: none;
		width: auto;
	}
	.s-size-none { display: none; }

	.s-size1of2, .s-size2of4, .s-size3of6, .s-size4of8, .s-size5of10, .s-size6of12 { width: 50%; }

	.s-size1of3, .s-size2of6, .s-size3of9, .s-size4of12 { width: 33.33333333%; }
	.s-size2of3, .s-size4of6, .s-size6of9, .s-size8of12 { width: 66.66666666%; }

	.s-size1of4, .s-size2of8, .s-size3of12 { width: 25%; }
	.s-size3of4, .s-size6of8, .s-size9of12 { width: 75%; }

	.s-size1of5, .s-size2of10 { width: 20%; }
	.s-size2of5, .s-size4of10 { width: 40%; }
	.s-size3of5, .s-size6of10 { width: 60%; }
	.s-size4of5, .s-size8of10 { width: 80%; }

	.s-size1of6, .s-size2of12 { width: 16.6666666%; }
	.s-size5of6, .s-size10of12 { width: 83.3333333%; }

	.s-size1of7 { width: 14.2857143%; }
	.s-size2of7 { width: 28.5714286%; }
	.s-size3of7 { width: 42.8571429%; }
	.s-size4of7 { width: 57.1428572%; }
	.s-size5of7 { width: 71.4285715%; }
	.s-size6of7 { width: 85.7142858%; }

	.s-size1of8 { width: 12.5%; }
	.s-size3of8 { width: 37.5%; }
	.s-size5of8 { width: 62.5%; }
	.s-size7of8 { width: 87.5%; }

	.s-size1of9 { width: 11.11111111%; }
	.s-size2of9 { width: 22.22222222%; }
	.s-size4of9 { width: 44.44444444%; }
	.s-size5of9 { width: 55.55555555%; }
	.s-size7of9 { width: 77.77777778%; }
	.s-size8of9 { width: 88.88888889%; }

	.s-size1of10 { width: 10%; }
	.s-size3of10 { width: 30%; }
	.s-size7of10 { width: 70%; }
	.s-size9of10 { width: 90%; }

	.s-size1of11 { width: 9.09090909%; }
	.s-size2of11 { width: 18.18181818%; }
	.s-size3of11 { width: 27.27272727%; }
	.s-size4of11 { width: 36.36363636%; }
	.s-size5of11 { width: 45.45454545%; }
	.s-size6of11 { width: 54.54545454%; }
	.s-size7of11 { width: 63.63636364%; }
	.s-size8of11 { width: 72.72727273%; }
	.s-size9of11 { width: 81.81818182%; }
	.s-size10of11 { width: 90.90909091%; }

	.s-size1of12 { width: 8.33333333%; }
	.s-size5of12 { width: 41.66666667%; }
	.s-size7of12 { width: 58.33333333%; }
	.s-size11of12 { width: 91.66666667%; }

/*#endregion*/

	/*#region WrapExtensions */

	/***=page wrap (extends wrap)***/
	.page-wrap { min-width: 320px; }


	/***=content (extends wrap)***/
	.mp-menu-trigger + .content { margin-left: 0; }


	/***=identity bar (extends wrap)***/
	.identity-bar {
		height: auto;
		height: auto;
		padding: 0 12px 0 60px;
	}
	.identity-bar > .unit { float: none; }


	/***=identity bar menu (extends wrap)***/
	.identity-bar-menu { margin-left: 1.2rem; }


	/***=content wrap (extends wrap)***/
	.content-wrap { padding-left: 1.2rem; }
	.content-body { min-height: 0; }
	

	/***=layout wrap (extends wrap)***/
	.layout-wrap > .unit {
		float: none;
		padding-left: 0;
		padding-right: 0;
		width: auto;
	}
	.layout-wrap .unit-content-pl { padding-left: 0; }
	.layout-wrap .unit-content-pr { padding-right: 0; }
	.layout-wrap .unit-content-ml { margin-left: 0; }
	.layout-wrap .unit-content-mr { margin-right: 0; }


	/***=table wrap (extends wrap)***/
	.table-wrap { overflow-x: auto; }
	.table-wrap table { border: 0; }

	/*#endregion*/


	/***=master/detail layout***/
	.master-detail { display: block; }
	.master-detail > .unit { display: block; }


	/***=feature head (for what's new pages)***/
	.feature-head > .unit {
		float: none;
		width: auto;
	}
	.feature-head .section-nav { margin-bottom: 15px; }

	/***=panel viewer (extends master/detail & wrap)***/
	.panel-viewer-bar {
		left: 0;
		z-index: 1;
	}


	/***=toolbar search***/
	.toolbar-search {
		float: none;
		height: auto;
	}
	.content-header .toolbar {
		height: auto;
		position: static;
	}

}

/***=Mobile (Portrait) (<= 320px)***/
@media only screen and (max-width: 20em) {

}

/***=Mobile (Landscape) - Design for a width of 480px***/
@media only screen and (min-width: 20.0625em) and (max-width: 47.9375em) {

	/***=panel viewer (extends master/detail & wrap)***/
	.panel-viewer-bar { left: -20px; }

}
