/*

	CSS WIDGET: Nonlinear Reader Widget
	An offshoot of basic Bootstrap content tabs.
	Iterates over multiple tab contents using only a "next" and "previous" button set.

	Widget Dimensions:
	* 900 pixels wide.
	* 500 pixels tall.
	
	Colours Used:
	* #4D4D4D - grey
	* #1294AC - teal
	* #DEF8FF - light teal
	* #b8b8b8 - light grey
	* #007FA3 - blue

*/

/* HTML and Body */
html, body
{
	height: 100%;
}
body
{
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	font-family: sans-serif;
	font-size: 14px;
}

/* Bootstrap Container */
.container
{
	margin: 0px;
	padding: 0px;	
}

/* Nonlinear Reader Container */
#nonlinear-reader
{
	width: 898px !important;
	max-width: 898px !important;
	height: 498px !important;
	max-height: 498px !important;
	/*border: 1px solid #ddd;*/
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;
	display: block;
	overflow: hidden !important;
}
#nonlinear-reader > div
{
	display: none;
}

/* Goto Buttons (Javascript Defined) */
.goto-button
{

}
.goto-button:hover
{
	
}
.goto-button:active
{

}