
/*----- COLUMNS -----*/

 .columns
	{
	display: table;
	width: 100%;
	}

 .columns > .L-col
	{
	display: table-cell;
	vertical-align: top;
	width: 160px;
	border-right: 1px solid #dddddd;
	}

 .columns > .R-col
	{
	display: table-cell;
	vertical-align: top;
	padding-left: 50px;
	box-sizing: border-box;
	position: relative;
	}


/*----- USER MENU -----*/

 #user-menu
	{
	width: 100%;
	}

 #user-menu a
	{
	display: block;
	margin-bottom: 2px;
	padding: 9px 15px;
	font-size: 14px;
	color: #333333;
	}
 #user-menu a:hover
	{
	background-color: #f4f4f4;
	}
 #user-menu a.active
	{
	font-weight: bold;
	background-color: #f4f4f4;
	}

 #user-menu .exit:hover
	{
	color: #ff5555;
	text-decoration: underline;
	}


@media (max-width: 800px) 
 {
 .columns,
 .columns > .R-col
	{
	display: block;
	width: 100%;
	padding: 0;
	}

 .columns > .L-col
	{
	display: none;
	}
 }
