* {
  box-sizing: border-box;
}
.body { 
	margin: 0;
	padding: 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	font-size: 15px;
	min-height: 100vh;
	color: #FFFFFF;
	background-color: #000000;
	display: flex;
    flex-direction: column;      /* stack main + footer vertically */
	align-items: center;
}

.main {
	margin: auto;
	padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;                     /* grows to push footer to bottom */
	max-width: 600px;
}

/* Wrapper with logo on left and text stacked on right */
.header-wrapper {
	padding-top: 30px;
	padding-left: 5px;
	padding-bottom: 5px;
	width: 100%;
    display: flex;
    align-items: flex-start;    /* aligns top of text with top of logo */
    gap: 15px;                  /* spacing between logo and text */
    margin-bottom: 20px;
}

/* Logo */
.header-logo {
    height: 70px;               /* adjust size */
    width: auto;
    flex-shrink: 0;             /* prevents logo from shrinking on small screens */
}

/* Text container stacked vertically */
.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title text */
.header_rubrik {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Info list */
.header_info ol {
    margin: 0;
}


a, a:hover, a:focus {
    text-decoration: none !important;
}

.header {
	padding-top: 5px;
	padding-left: 5px;
	padding-bottom: 5px;
	width: 100%;
}
.header_rubrik {
	font-size: 2rem;
}
.content {
	padding-top: 5px;
	padding-left: 5px;
	padding-bottom: 35px;
	width: 100%;
}
.content_title {
	margin-top: 5px;
	font-size: 2rem;
}

.content_title a {
	display: block;
	height: 100%;
    width: 100%;
    text-decoration: none;
}

.content_title  a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
}

.content_title.active a:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

.column {
    height: inherit;
    float: left;
    width: 33.33%;
    padding: 0px;
}

.row {
  margin-bottom: 0px;
}

hr {
	margin: 0px;
}

/* Hide some HR in full browser */
	.hr_hidden {
		margin: 0px;
		display: none;
}
		
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  margin-bottom: 0px;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width : 900px ){
  .column {
	margin-bottom: 10px;
    width: 100%;
	}
	.main {
	margin: auto;
	padding: 10px;
	float: left;
	width: 90%;
	}
	.hr_hidden {
		margin: 0px;
		display: inherit; }
}
.head_left {
	font-weight: bold;
	float: left;
	font-size: larger;
	width: 100%;
	margin-bottom: 5px;
}
.head_center {
	font-weight: bold;
	width: 100%;
	font-size: larger;
	margin-bottom: 5px;
}
.head_right {
	font-weight: bold;
	width: 100%;
	font-size: larger;
	margin-bottom: 5px;
}
.con_right{
}
.con_center{
}
.con_left{
}
ol {
	margin:0;
	padding:0;
	list-style-type:none;
}