/*useful CSS from abigail watson*/

/*Supported Syntax*/

/*clickable*/
/*unselectable*/
/*fullwidth*/
/*fullheight*/
/*bold*/
/*centered*/
/*strikeout*/
/*padded*/
/*padded-horizontal*/
/*with-horizontal-padding*/
/*horizontally-padded*/
/*padded-vertical*/
/*with-vertical-padding*/
/*vertically-padded*/
/*without-padding*/
/*nopadding*/
/*no-padding*/
/*without-right-padding*/
/*without-left-padding*/
/*without-top-padding*/
/*without-bottom-padding*/
/*with-margins*/
/*with-bottom-spacer*/
/*with-bottom-padding*/
/*with-top-spacer*/
/*with-top-padding*/
/*with-right-padding*/
/*with-left-padding*/

/*clicking*/

.clickable {
	cursor: pointer;
}

.unselectable {
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*padding*/

.padded {
	box-sizing: border-box;
	padding: 20px;
}

.padded-horizontal, .with-horizontal-padding, .horizontally-padded {
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

.padded-vertical, .with-vertical-padding, .vertically-padded {
	box-sizing: border-box;
	padding-top: 20px;
	padding-bottom: 20px;
}

.without-margin, .nomargin, .no-margin {
	margin: 0px !important;
}

.without-padding, .nopadding, .no-padding {
	padding: 0px;
}

.without-right-padding {
	padding-right: 0px !important;
}

.without-left-padding {
	padding-left: 0px !important;
}

.without-top-padding {
	padding-top: 0px !important;
}

.without-bottom-padding {
	padding-bottom: 0px !important;
}

.margined, .with-margins {
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.with-bottom-spacer, .with-bottom-padding {
	padding-bottom: 20px !important;
}

.with-top-spacer, .with-top-padding {
	padding-top: 20px !important;
}

.with-right-padding {
	padding-right: 20px !important;
}

.with-left-padding {
	padding-left: 20px !important;
}

/*sizing*/
.fullwidth {
	width: 100%;
}

.fullheight {
	height: 100%;
}

/*text*/
.bold {
	font-weight: bold;
}

.centered {
	text-align: center;
}

.strikeout {
	text-decoration: line-through;
	color: lightgray !important;
}