.actionBar {
	display: block;
	height: 45px;
	padding: 4px 8px 0px 8px;
	z-index:100;
	overflow: hidden;
}

.actionBar h1 {
	font-family: 'Open Sans', sans-serif;
	display: block;
	font-size: 1em;
	font-style: normal;
	font-weight: 600;
	white-space: nowrap;
 	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	height: 35px;
	line-height: 35px;
	vertical-align: 35px;

}

.btnBar {
	display: block;
	padding: 0px 4px 0px 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	height: 35px;
	line-height: 35px;
	min-width: 35px;
	max-width: 140px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	text-overflow: ellipsis;
	font-weight: 200;
}

.btnBarIcon {
	display: block;
	padding: 0px;
	height: 35px;
	min-width: 35px;
	background-position: center center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}

.btnBarIconAndText {
	display: block;
	padding: 0px 4px 0px 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	height: 35px;
	line-height: 35px;
	min-width: 35px;
	max-width: 140px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	text-overflow: ellipsis;
	padding: 0px 8px 0px 22px;
	background-position: left center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	font-weight: 200;
}

.actionBar input[type=text] {
	display: inline-block;
	height: 35px;
	line-height: 35px;
	margin: 0px;
	padding: 0px 8px 0px 8px;
	color: #000;
	background: #E5E5E5;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	font-weight: 200;
	border:none;
	border-radius: 8px;
	border: 1px solid #E5E5E5;
}


.actionBar input[type=text]:-moz-placeholder {
	color: #C7C7C7;
	text-align: center;
	font-size: 0.875em;
}

.actionBar input[type=text]:focus {
	border: 1px solid #C7C7C7;
}

.textEdit input[type=text]{
	padding-right: 26px;
	text-align: left;
}

.textEdit .btnSmallInline {
	display: block;
	float: left;
	position: relative;
	left: -22px;
	width: 20px;
	height: 35px;
	background-image: url('../img/icon-delete.png');
	background-size: 20px 20px;
	background-position: center center;
	background-repeat: no-repeat;
	
}

.textEdit .btnBar {
	display: block;
	float: left;
	position: relative;
	left: -18px;
}

.showFade {
	transition: all 0.6s ease-in-out;
	animation: fadein 0.6s;
	visibility: visible;	
}

.hideFade {
	transition: all 0.6s ease-in-out;
	animation: fadeOut 0.6s;
	visibility: hidden;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}




