/* Globals */
.toolset-help,
.toolset-alert {
	position: relative;
	clear: both;
	margin: 20px 0;
	border: 1px solid;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}


/* Validation messages */

.toolset-alert {
	padding: 10px 20px 10px 10px;
	border-color: #fbeed5;
	background-color: #fcf8e3;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	line-height: 1;
}

span.toolset-alert {
	display: inline-block;
	clear: none;
	margin: 2px 1px;
	padding: 4px 6px;
	cursor: pointer;
}

.toolset-alert.hidden {
	display: none;
}

.toolset-alert,
.toolset-alert .toolset-alert-header {
	color: #c09853;
}

	.toolset-alert .toolset-alert-header {
		margin: 0;
	}

	.toolset-alert .toolset-alert-close {
		position: absolute;
		top: 9px;
		right: 5px;
		color: #999;
        cursor:pointer;
	}
	
	.toolset-alert .button {
		text-shadow: none;
	}
	
	.toolset-alert .toolset-rounded-icon {
		width: 25px;
		height: 25px;
		margin-right: 10px;
		line-height: 25px;
		text-align: center;
		color: #fff;
		background: #c09853;
		border-radius: 50%;
	}

.toolset-alert-success {
	border-color: #d6e9c6;
	background-color: #dff0d8;
	color: #468847;
}

	.toolset-alert-success .toolset-alert-header {
	 	color: #468847;
	}
	
	.toolset-alert-success .toolset-rounded-icon {
		background: #468847;
	}

.toolset-alert-error {
	border-color: #eed3d7;
	background-color: #f2dede;
	color: #b94a48;
}

	.toolset-alert-error .toolset-alert-header {
	 	color: #b94a48;
	}
	
	.toolset-alert-error .toolset-rounded-icon {
		background: #b94a48;
	}

.toolset-alert-info {
	border-color: #bce8f1;
	background-color: #d9edf7;
	color: #3a87ad;
}

	.toolset-alert-info .toolset-alert-header {
		color: #3a87ad;
	}
	
	.toolset-alert-info .toolset-rounded-icon {
		background: #3a87ad;
	}

/* Explanation messages */
.toolset-help {
	display: table;
	width: 100%;
	background: #fff;
	border: none;
}

.js-show-toolset-message {
	display: none;
}

	.toolset-help-content {
		display: table-cell;
		vertical-align: middle;
		padding: 15px 25px 15px 180px;
		height: 135px;
		color: #4f4f4f;
		border: solid 1px #cdcdcd;
	}

		.toolset-help-content a {
			display: inline-block;
			line-height: 18px;
			text-decoration: underline;
		}
		.toolset-help-content p,
		.toolset-help-content ul,
		.toolset-help-content ol {
			line-height: 1.6;
		}
		.toolset-help-content ul,
		.toolset-help-content ol {
			margin-left: 0;
			list-style-position: inside;
		}
		.toolset-help-content ul li {
			list-style-type: disc;
		}
		.toolset-help-content ol li {
			list-style-type: decimal;
		}
		.toolset-help-content p:first-child {
			margin-top: 0;
		}
		.toolset-help-content .btn {
			margin: 0 10px 0 0;
			padding: 4px 10px;
			border: 0;
			border-radius: 4px;
			background: #11a99b;
			color: #fff;
			text-decoration: none;
			text-shadow: none;
			font-weight: bold;
		}
		
		.toolset-help-content .btn:hover {
			background: #008C7D;
		}

		.toolset-help-content .toolset-help-content-toolbar {
			margin: 20px 0 10px 0;
		}

	.toolset-help-sidebar {
		position: absolute;
		top: 1px;
		left: 1px;
		bottom: 1px;
		width: 144px;
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		background: url('../img/icon-help-message.png') center center no-repeat #333;
		box-shadow: inset 0 0 15px #111;
	}
		.toolset-help-sidebar .toolset-help-sidebar-ico {
			
		}

	.toolset-help-footer {
		position: relative;
		z-index: 1;
		padding: 5px;
		border-top: 1px solid #cdcdcd;
		background: #fff;
		text-align: right;
	}

		.toolset-help-footer [class^="button-"] {
			margin-left: 5px;
		}


	.toolset-help .icon-remove-sign,
	.toolset-help .icon-remove {
		position: absolute;
		top: 0;
		right: 0;
		color: #999;
		opacity: 1;
		background: #fff;
		border: solid 1px #cdcdcd;
		padding: 2px 4px;
		font-size: 16px;
		cursor: pointer;
	}
	
	.toolset-help .icon-remove-sign:hover,
	.toolset-help .icon-remove:hover {
		background: #b94a48;
		color: #fff;
	}
	
	.toolset-help code {
		display: inline-block;
	}