/**
 * Dragdealer JS v0.9.5
 * http://code.ovidiu.ch/dragdealer-js
 *
 * Copyright (c) 2010, Ovidiu Chereches
 * MIT License
 * http://legal.ovidiu.ch/licenses/MIT
 */

.dragdealer {
	position: relative;
	height: 30px;
	background: #EEE;
}
.dragdealer .handle {
	position: absolute;
	cursor: pointer;
}
.dragdealer .red-bar {
	width: 50px;
	height: 30px;
	background: #7C9ED6;
	color: #FFF;
	line-height: 30px;
	text-align: center;
}
.dragdealer .disabled {
	background: #D2B7EC;
}

/*追加分*/
/* Corners */

.rounded-cornered,
.rounded-cornered .handle {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


/* Scroll bar 変更した*/

#scroll-bar {
	width: 15px;
	height: 302px;
}
#scroll-bar .handle {
		width: 15px;
		height: 54px;
	}
#scroll-bar02 {
	width: 15px;
	height: 302px;
}
#scroll-bar02 .handle {
		width: 15px;
		height: 54px;
	}

/*コメントレイアウト枠の大きさ*/	
#scroll-mask {
	width: 290px;
	height: 300px;
	border: 1px solid #CCC;
	background: #F8F8F8;
	overflow: hidden;
}
#scroll-mask02 {
	width: 290px;
	height: 300px;
	border: 1px solid #CCC;
	background: #F8F8F8;
	overflow: hidden;
}

/*レイアウト枠の中の要素の周りのパディングスペース*/
#scroll-content {
	padding: 5px;
}
#scroll-content02 {
	padding: 5px;
}

/*レイアウト枠の上マージン*/
.top-spaced {
	margin-top: 8px;
}

.right-float {
	float: right;
}
