/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Basic stuff
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
html, body
{

}
/* Content container adjustment for fixed navbars */
body>.container
{
	margin-top: 100px;
}

.btn-image
{
	filter:grayscale(100%)
}

.btn-image:hover
{
	filter:grayscale(50%)	
}

.btn-image.active
{
	filter:grayscale(0%)	
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ZA WARUDO
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.img-inverted
{
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.img-inverted-hover:hover
{
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.img-shadow
{
	box-shadow: 0px 0px 20px #666, 0px 0px 20px #666;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Tablesorter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.tablesorter-header
{
	cursor: pointer;
}

.tablesorter-headerAsc
{
	text-decoration: underline;
}

.tablesorter-headerDesc
{
	text-decoration: overline;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Hover over title
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
[title]
{
	cursor: help;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Show pointer when row is supposed to be clickable
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.row-clickable { cursor: pointer; }