@charset "UTF-8";
/* CSS Document */

	div.container {
		width: 100%;
		/*border: 2px solid grey;
		border-radius: 8px;*/
	}
	
	header {
		padding: 1em;
		color: white;
		background-color: #2c3e50;
		clear: left;
		font-family: Arial, Times, serif;
		font-size: 120%;
		text-align: center;
		line-height: 42px;
		vertical-align: middle;
	}
	
	footer {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 1em;
		color: white;
		background-color: #2c3e50;
		clear: left;
		text-align: center;
		line-height: 42px;
		/*vertical-align: middle;*/
	}
	
	article {
		overflow: hidden;
		font-family: Arial, Times, serif;
		font-size: 120%;
		/*margin: auto;*/
		padding: 10px;
		border-bottom: 1px solid grey;
		min-height: 54px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.onoffswitch {
		/*position: fixed;
		left: 250px;*/
		right: 20px;
		width: 90px;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	.onoffswitch-checkbox {
		display: none;
	}
	
	.onoffswitch-label {
		display: block;
		overflow: hidden;
		cursor: pointer;
		border: 2px solid #999999;
		border-radius: 20px;
	}
	
	.onoffswitch-inner {
		display: block;
		width: 200%;
		margin-left: -100%;
		transition: margin 0.3s ease-in 0s;
	}
	
	.onoffswitch-inner:before,
	.onoffswitch-inner:after {
		display: block;
		float: left;
		width: 50%;
		height: 42px;
		padding: 0;
		line-height: 42px;
		font-size: 14px;
		color: white;
		font-family: Trebuchet, Arial, sans-serif;
		font-weight: bold;
		box-sizing: border-box;
	}
	
	.onoffswitch-inner:before {
		content: "ON";
		padding-left: 10px;
		background-color: #34A7C1;
		color: #FFFFFF;
	}
	
	.onoffswitch-inner:after {
		content: "OFF";
		padding-right: 10px;
		background-color: #EEEEEE;
		color: #999999;
		text-align: right;
	}
	
	.onoffswitch-switch {
		display: block;
		width: 27px;
		margin: 7.5px;
		background: #FFFFFF;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 44px;
		border: 2px solid #999999;
		border-radius: 20px;
		transition: all 0.3s ease-in 0s;
	}
	
	.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
		margin-left: 0;
	}
	
	.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
		right: 0px;
	}
		
	#menu {
      top: 0;
      left: 0;
      width: 100%;
      /*height: 50px;*/
      visibility: hidden;
      cursor: -moz-grab;
      cursor: -webkit-grab;
      cursor: grab;
    }
	#menu ul {
		margin: 0px;
		padding: 0px;
		list-style-type: none;
		}
		
	.switchDiv {
		position:relative;
		float:right;
		width:90px;
	}
	
	.button {
      height: 0;
      width: 0;
      position: absolute;
      top: 5px;
      left: 50%;
      cursor: pointer;
      border-style: solid;
    }

    .prev {
      margin-left: -150px;
      border-width: 10px 10px 10px 0;
      border-color: transparent #fff transparent transparent;
    }

    .next {
      margin-left: 150px;
      border-width: 10px 0 10px 10px;
      border-color: transparent transparent transparent #fff;
    }
