.action_button{
	height: 35px;
	padding: 0 9px 0 9px;
	color: #fff;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;	  /* Opera/IE 8+ */  
    cursor:pointer;
	-webkit-transition: background-color 0.5s; /* For Safari 3.1 to 6.0 */
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.action_button .button_label{
	float:left;
	margin-right: 9px;
}

.action_button.no_arrow .button_label{
	margin-right: 0px;
}

.action_button .button_arrow{
	float: right;
	/*width: 28px;*/
	height: 100%;
	border-left: 1px solid #fff;
	font-size: 14px;
	padding-top: 3px;
	padding-left: 6px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;	  /* Opera/IE 8+ */
}

.action_button.gray{
	background-color: #90989e;
}

.action_button.red{
	background-color: #5C0815;
}

.action_button.dark_blue{
	background-color: #002052;
}
.action_button.dark_blue .button_arrow{
	border-left: 1px solid #8090a9;
}

.no-touch .action_button.dark_blue:hover {
	background-color:#817F80;	
}

.no-touch .action_button.dark_gray:hover {
	color: #817F80;
	background-color:#FFF;
	border: 1px solid #D2D2D2;
}

.no-touch .action_button.light_blue:hover {
	background-color:#817F80;
	border-color: #D2D2D2;	
}

.action_button.dark_gray{
	background-color: #808080;
	border: 1px solid #808080;
}

.action_button.dark_gray .button_arrow{
	border-left: 1px solid #fff;
}

.action_button.light_blue{
	background-color: #39a9db;
	border: 1px solid #39a9db;
}
.action_button.light_blue .button_arrow{
	border-left: 1px solid #fff;
}

.action_button.font-weight-800{
	font-weight: 800;
}

.unselectable{
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */

	/* Rules below not implemented in browsers yet */
	-o-user-select: none;
	user-select: none;
}


