/*
    Document   : FloatingPane
    Created on : 05 November ?2009, ??15:21:25
    Author     : Harischandra Prasad Tirumani
    Description:
		Style related to FloatingPane.
*/

.FormFloatingPane {
	border-width: 1px 1px 1px 1px;
	border-style: solid; 
	height: auto !important;
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: none;
}

.FormFloatingPane.nonMovable {
}

.FormFloatingPane .FormFloatingPane-Header {
	padding: 0 5px 0 0;
	height: 27px;
	white-space: nowrap;
	border: none;
	color: #FFF;
}
.FormFloatingPane .FormFloatingPane-Title {
	float: left;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	padding: 7px 0 0 22px;
}


.FormFloatingPane .FormFloatingPane-Footer {
	background-color: transparent;
	height: 6px;
}

/* BEGIN Control menu bar and its icons related */
.FormFloatingPane .FormFloatingPane-Controls {
	float: right;
	padding-top: 5px;
}

/* These should be in Icons.css but I'll leave them here until we've
replaced them */
.FormFloatingPane .FormFloatingPane-Controls .dojoxFloatingMinimizeIcon,
.FormFloatingPane .FormFloatingPane-Controls .dojoxFloatingMaximizeIcon,
.FormFloatingPane .FormFloatingPane-Controls .dojoxFloatingRestoreIcon,
.FormFloatingPane .FormFloatingPane-Controls .dojoxFloatingCloseIcon,
.FormFloatingPane .FormFloatingPane-Controls .controlMenuIcon
{
	background-repeat: no-repeat;
	background-color: transparent;
	background-position: center center;
	width: 14px;
	height: 14px;
	margin: 0 1px;
	cursor: pointer;
}

.FormFloatingPane .FormFloatingPane-Controls .controlMenuIcon {
	padding: 0 1px 0 3px;
}

.FormFloatingPane-Maximized .FormFloatingPane-Controls .dojoxFloatingMaximizeIcon {
	display: none;
}

.FormFloatingPane-Controls .dojoxFloatingRestoreIcon {
	display: none;
}

.FormFloatingPane-Maximized .FormFloatingPane-Controls .dojoxFloatingRestoreIcon {
	display: inline-block;
}
/* END Control menu bar and its icons related */

.FormFloatingPane .dojoxFloatingPaneCanvas {
	background: #FFF;
}

.FormFloatingPane .dojoxFloatingPaneContent {
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}

