.dummy-submit, .hidden-widget {
	display: none;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/*pointer: default;*/
	cursor: default;
}

.focusglow {
	-webkit-transition: box-shadow .125s ease;
	-moz-transition: box-shadow .125s ease;
	-ms-transition: box-shadow .125s ease;
	-o-transition: box-shadow .125s ease;
	transition: box-shadow .125s ease;
}

.focusglow:hover {
	-webkit-box-shadow: inset 0px 0px 2px 1px #0078a3;
	-moz-box-shadow: inset 0px 0px 2px 1px #0078a3;
	box-shadow: inset 0px 0px 1px 1px #0078a3;
	outline: none;
}

.focusglow:focus {
	-webkit-box-shadow: inset 0px 0px 2px 1px #0078a3;
	-moz-box-shadow: inset 0px 0px 2px 1px #0078a3;
	box-shadow: inset 0px 0px 3px 2px #0078a3;
	outline: none;
}

.invisible {
	background: none repeat scroll 0% 0% transparent !important;
}

.nodisplay {
	display: none !important;
}

.fillheight {
	height: 100%;
}

.fillwidth {
	width: 100%;
}

ul.no-indent {
	padding: 0px;
	margin: 0px;
}

.number-input {
	text-align: right;
	max-width: 130px;
}

.mini-button {
	height: 20px !important;
	width: 20px !important;
	align-self: center;
	flex: 0 0 auto;
	padding: 0;
}

.fat-button {
	height: 32px !important;
	width: 32px !important;
	align-self: center;
	flex: 0 0 auto;
	padding: 0;
}

.no-link {
	cursor: not-allowed;
}

.visible-overflow {
	overflow: visible !important;
}

/* autocomplete */
.autocomplete-val {
	position: relative;
	width: 0px !important;
	height: 0px !important;
	padding: 0px !important;
	margin: -1px !important;
	z-index: -99;
	top: 13px;
	left: -99.1%;
}
.autocomplete-val:invalid {
	border: none !important;
	box-shadow: none;
}

/* Text alignments */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

/*Sizing*/
.w-25 {
	width: 25%;
}
.w-50 {
	width: 50%;
}
.w-75 {
	width: 75%;
}

.w-100 {
	width: 100%;
}

/*Margin*/
.margin-center{
	margin: 0 auto;
}

/* Text Decorations */
.strikethrough-red {
	text-decoration: #F00 line-through solid !important;
}

.mono-code {
	font-family: Consolas, 'Courier New', monospace !important;
	color: #9c2020 !important;
}

.allcaps {
	text-transform: uppercase;
}

.blue-text {
	color: #00F;
}

.redtext {
	color: rgb(255, 53, 53);
}
.red-text {
	color: #F00;
}

.greentext {
	color: rgb(62, 200, 62);
}
.green-text {
	color: #0F0;
}

.yellowtext {
	color: rgb(255, 195, 53);
}
.yellow-text {
	color: #FF0;
}

.text-bold {
	font-weight: bold;
}


/* jQueryUI Fixes */
ul.ui-autocomplete {
	z-index: 105;
}

.clicky {
	cursor: pointer;
}
.help-cursor {
	cursor: help;
}

.fixed-position {
	position: fixed !important;
}

.flexbox-horizontal.flexbox-wrap > .ui-button {
	margin-bottom: .1em;
}

@media print {

	.noprint {
		display: none !important;
	}

}