aside {
	position: fixed;
	top: 0;
	left: 0;

	background: white;
	color: black;

	width: 15em;
	width: 200px;

	height: 100%;
	/*box-shadow: 2px 0 5px #333; */
	z-index: 99;
	-o-transition: width .4s;
	white-space: nowrap;

	border-right: 1px solid #AFB0B7;
}

#toggle-aside {
	position: absolute;
	display: block;

	content: '(';
	font-family: 'symbols';

	text-decoration: none;
	height: 100%;
	width: 1em;
	top: 0;
	right: 0;
	background: black;
	color: white;
	vertical-align: middle;
}

#close-aside-button {
	position: absolute;
	top: .5em;
	right: .5em;
}
#toggle-aside.left {
	content: '(';

}
#toggle-aside.right {
	content: ')';
}

#aside-wrapper {
	overflow: hidden;
	position: absolute;
	top:0;
	right: 1em;
	width: 14em;
}


aside input{
	box-sizing: border-box;
	background: inherit;
	border: none;
	-o-transition: inherit;
}

aside:before {
	position: absolute;
}
aside > header {
	border-bottom: 1px solid #D7D7D7;
	padding: 1em;
	text-align: center;
	cursor: pointer;
}
aside > header h1 { 
	font-size: 1.5em;
	font-weight: normal;
	margin: 0;
	cursor: pointer;
}

section.repository header {
	cursor: default;
	padding: 0; margin: 0;
	text-transform: uppercase;
	color: #888388;
	text-align: justify;
	font-size: .3em;
}

section.repository {
	padding: .5em 1em;
	border-bottom: 1px solid #D7D7D7;
}

section.repository li {
	position: relative;
	color: black;
	-o-transition: color linear .3s, padding linear .3s, width linear .3s;
	line-height: 2em;
	height: 2em;
	font-size: .8em;
	display: block;
	padding-right: 1.3em;
	padding-left: 1.3em;
	margin-left: -1.3em;
	margin-right: -1.3em;
	width: 100%;
}

section.repository li a {
	overflow: hidden;
	color: inherit;
	text-decoration: inherit;
	width: 100%;
	height: 100%;
	display: block;
	text-overflow: ellipsis;
	cursor: pointer;
}
section.repository li:not(.selected) a:hover {
	color: #1cd2dc;
}


section.repository li.selected {
	background: #7E98AE;
	color: white;
}


section.repository li:hover {
}



#search-results {
	height: 0;
	-o-transition: height .3s;
	overflow: hidden;
}

#search-results.selected {
	height: 2em;
}






section.repository a:before {
	content: attr(icon);
	background: attr(icon);
	background: url(attr(icon));
	display: inline-block;
	width: 1.5em;
	font-size: .8em;
	font-family: 'symbols';
	height: 1em;
	margin-right: .3em;
}

section.repository a[href='?source=feedbooks']:before {
	content: '';
	font-family: monospace;
	background: url('feedbooks.png') no-repeat center;
	background-size: 100%;
}

/*--------------------------------------*/