/*<meta />*/

#cover
{
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	background: #ffffff;
	z-index: 9999;
}

/********Custom expand and collapse buttons********/

div.collapse,
div.expand
{
	/*
	position: absolute;
	top: 0%;
	left: -1em;
	*/
	width: 20px;
	height: 40px;
	background-color: #c00000;
	/*Set button color*/
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 0px 7px 7px 0px;
	cursor: pointer;
	transition: width .25s;
}

div.collapse:hover,
div.expand:hover
{
	width: 25px;
}

/********Arrow icons for expand/collapse button********/

div.collapse
{
	position: fixed;
	top: 50%;
	margin-left: -2em;
	background-image: url('../Images/Toggle/icon-arrowL-white.png');
}

div.expand
{
	position: fixed;
	top: 50%;
	left: 0;
	margin-left: 0;
	background-image: url('../Images/Toggle/icon-arrowR-white.png');
}

/*******Remove body container padding so button is attached to side nav*******/

div.body-container
{
	padding-left: 2em;
	padding-top: 1em;
	padding-right: 1em;
}

div.topic-container
{
	padding-left: 3em;
	padding-top: 0em;
}

nav.sidenav-wrapper
{
	overflow: hidden auto;
}

/*******Add resize icon to side nav*******/

div.ui-resizable-e
{
	background-repeat: no-repeat;
	background-position: center;
	background-image: none;
	width: 20px !important;
}

/*******Hide bottom-right resize icon*******/

div.ui-resizable-se
{
	display: none !important;
}

div.ui-resizable-s
{
	display: none !important;
}

@media only screen and (max-width: 979px)
{
	div.topic-container
	{
		padding-left: 1em;
		padding-right: 1em;
	}

	div.body-container
	{
		padding-left: 1em;
	}

	/*******Hide expand/collapse icon in tablet and mobile*******/

	div.collapse
	{
		display: none;
	}
}

