@CHARSET "ISO-8859-1";

#kwBody {
	width: 100%;
	height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: auto;
}

#adminUserDiv {
	text-align:right; 
	margin:5px 10px 5px 0;
	font-size: 0.8em;
	font-family: Nunito;
}

#adminUserDiv a {
	margin-left: 40px;
}


#adminUserDiv span {
	float: left;
	margin-left: 10px;
	font-size: 0.7em;
}


/* ********************************************* */
/* 			Scaling Background Imgage	 		 */
/* ********************************************* */

#kwBackground {
	/*width: 100%;
	height: 100%;*/
	position: relative;
	z-index: 1;	
	overflow: hidden;
}


#kwContentContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*height: 100%; will be set in kwgeneral->kwWIndowResize*/
	z-index: 2;
	/*bottom: 0px;
	overflow-x: auto;*/
}

.kwBgImg {
	height: 80px;
	margin-left: 5px;
}

.kwBgUrlUnderBgImg {
	margin-left: 5px;
}



/* ********************************************* */
/* 		Error Msg Area, DragDrop				 */
/* ********************************************* */

.kwInputOk {
	background-color: white;
}

.kwInputColorOk {
	background-color: #c3c3c3;
}

.kwInputError {
	background-color: yellow;
}

.kwColorOk {
	color: black;
	background-color: white;
}

.kwColorError {
	color: red;
	background-color: yellow;
}

#kwMsgErrorArea {
	padding: 5px;
	margin:10px; 
	font-size: 0.8em;
	font-weight: normal;
	text-align: left;
}

.kwDragDropActive {
	border: 2px solid red;
}

/* ********************************************* */
/* 			Align, Center divs					 */
/* ********************************************* */

.kwDivWidth1024 {
	width:1024px;
	overflow:hidden;
}

.kwDivWidth900 {
	width:900px;
	overflow:hidden;
}

.kwDivWidth480 {
	width:480px;
	overflow:hidden;
}

.kwDivWidth100P {
	width:100%;
}

.kwCenterDivOuter {
    width: 100%;
    text-align: center;
}

.kwCenterDivInner {
    display: inline-block;
}

.kwCenterDivInnerInline {
    display: inline;
}

.kwDisplayInlineBlock {
    display: inline-block;
}

.kwDivAlignBottomWindow {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
}


/* ********************************************* */
/* 					 Table Elements				 */
/* ********************************************* */

.kwRow {
	display:table-row;
}

.kwCol {
	display:table-cell;
	vertical-align:top;
}

.kwTable {
	display:table;
	width:100%;
	height:100%;
	/*border-collapse: collapse;*/
}

.kwPrintElementDiv {
	text-align:left;
	padding-left:10px;
	font-size: 0.6em;
	font-family: Nunito;
}

.kwTabMenuArea {

}

.kwTabbedMenuItem {
	float:left; 
	padding: 5px 10px 0 10px; 
	margin: 5px 10px 0 5px;	
	cursor: pointer;
}

.kwTabbedMenuItem div:hover {
	font-weight: bold;	
	text-decoration: underline;
}

.kwTabbedArea {
}

.kwTabbedItem {
}


/* ********************************************* */
/* 					 Input						 */
/* ********************************************* */

.kwColorSelectField {
	margin: 5px;
	width: 60px;
}

.kwPalButton {
	height: 15px;
	margin-left: -2px;
	margin-bottom: -2px;
}

.kwPalColorSpan {
	position: relative;
}

.kwPalColorInputDiv {
	position: absolute;	
	top: 0px;
	left: 0px;
}

/* ********************************************* */
/* 					 Display					 */
/* ********************************************* */

.kwDisplayNone {
	display: none;
}

.kwUnderline {
	text-decoration: underline;
}

textarea {
   font-family: inherit;
   font-size: inherit;
}


input {
   font-family: inherit;
   font-size: inherit;
}


/* ********************************************* */
/* 			Alignment, Padding, Margin			 */
/* ********************************************* */

.kwAlignRight {
	text-align: right;	
}

.kwAlignLeft {
	text-align: left;	
}

.kwAlignCenter {
	text-align: center;	
}


.kwPadding5 {
	padding: 5px;	
}

.kwMargin5 {
	margin: 5px;	
}

.kwMargin5b20 {
	margin: 5px 5px 20px 5px;	
}

.kwFloatLeft {
	float: left;
}

.kwFloatRight {
	float: right;
}


/* ********************************************* */
/* 					 Shadows					 */
/* ********************************************* */

.kwShadowBlack {
	-moz-box-shadow: .125em .125em .25em #24202c;
	-webkit-box-shadow: .125em .125em .25em #24202c;
	box-shadow: .125em .125em .25em #24202c;
}

.kwShadowGray {
  	-moz-box-shadow: .125em .125em .25em #1b1b1b;
  	-webkit-box-shadow: .125em .125em .25em #1b1b1b;
  	box-shadow: .125em .125em .25em #1b1b1b;
}

/* ********************************************* */
/* 					 Radius						 */
/* ********************************************* */

.kwRadiusTop {
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
}

.kwRadiusBottom {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
}

.kwRadius {
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
}


/* ********************************************* */
/* 					 Magnify					 */
/* ********************************************* */

.kwMagnify {
	/*width: 200px; */
	margin: 10px auto; 
	position: relative;
}

/*Lets create the magnifying glass*/
.kwLarge {
	width: 175px; height: 175px;
	position: absolute;
	border-radius: 100%;
	
	/*Multiple box shadows to achieve the glass effect*/
	box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 
	0 0 7px 7px rgba(0, 0, 0, 0.25), 
	inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
	
	/*Lets load up the large image first*/
	/* background: url('http://thecodeplayer.com/uploads/media/iphone.jpg') no-repeat; */
	
	/*hide the glass by default*/
	display: none;
}

/*To solve overlap bug at the edges during magnification*/
.kwSmall { display: block; }

