/**
 * main.css
 *
 * 1. General HTML tags
 * 2. Masthead area
 * 3. Main content and sidebar
 * 4. Footer
 * 5. Media queries for responsive layout
 *
 */

 /* Fonts */

 /* oxygen-regular - latin-ext_latin */
 @font-face {
   font-family: 'Oxygen';
   font-style: normal;
   font-weight: 400;
   src: url('../fonts/oxygen-v15-latin-ext_latin-regular.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/oxygen-v15-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.svg#Oxygen') format('svg'); /* Legacy iOS */
 }

 /* oxygen-700 - latin-ext_latin */
 @font-face {
   font-family: 'Oxygen';
   font-style: normal;
   font-weight: 700;
   src: url('../fonts/oxygen-v15-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/oxygen-v15-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/oxygen-v15-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/oxygen-v15-latin-ext_latin-700.svg#Oxygen') format('svg'); /* Legacy iOS */
 }

 /* raleway-italic - latin-ext_latin */
 @font-face {
   font-family: 'Raleway';
   font-style: italic;
   font-weight: 400;
   src: url('../fonts/raleway-v28-latin-ext_latin-italic.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/raleway-v28-latin-ext_latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/raleway-v28-latin-ext_latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-italic.woff') format('woff'), /* Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/raleway-v28-latin-ext_latin-italic.svg#Raleway') format('svg'); /* Legacy iOS */
 }

 /* raleway-700italic - latin-ext_latin */
 @font-face {
   font-family: 'Raleway';
   font-style: italic;
   font-weight: 700;
   src: url('../fonts/raleway-v28-latin-ext_latin-700italic.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/raleway-v28-latin-ext_latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.woff') format('woff'), /* Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.svg#Raleway') format('svg'); /* Legacy iOS */
 }



/*********************************************************************
 * 1. General HTML tags
 *
 */

* {
	box-sizing: border-box;
}

body {
	padding: 5%;
	max-width: 1600px;
	margin: 0 auto;
}

body, td, input[type=text], textarea {
	font-family: 'Quattrocento', serif;
	font-size: 105%;
	line-height: 1.8em;
	color: #444;
}

img {
	max-width: 100%;
}

h2 {
	font-weight: normal;
}

h3 {
	padding-top: 1em;
	color: #777;
}

a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
}
	a:hover,
	.nav a:hover {
		color: #000;
		border-color: #aaa;
	}

h3 a {
	color: #3263ac;
	border: none;
}

h3 a:hover {
	color: #3263ac;
}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em;
	border-left: 4px solid #ddd;
	font-style: italic;
	color: #777;
}

pre, code {
	background: #eee;
	border: 1px solid #ddd;
}

pre {
	font-size: 14px;
	line-height: 1.4em;
	padding: 1em;
	border-left: 4px solid #ddd;
}

/*********************************************************************
 * 2. Masthead area
 *
 */

.topnav, .topnav li {
	list-style: none;
	padding: 0;
	margin: 0;
}
	.topnav li {
		float: left;
		margin-right: 1em;
		margin-bottom: 1em;
	}
	.topnav a {
		padding: 0.25em 0.5em;
		text-decoration: none;
		display: block;
		background: #eee;
		color: #333;
		border: 1px solid #eee;
	}
	.topnav a:hover {
		background: #ddd;
		border-color: #ddd;
	}
	.topnav li.current a {
		background: #ddd;
		border-color: #ddd;
	}
	.topnav li.edit a {
		background: none;
	}


form.search {
	float: right;
	margin: 0;
	width: 30%;
}
	form.search input {
		margin: 0;
		padding: 0.25em 0.5em;
		border: 1px solid #ccc;
		width: 100%;
	}
	form.search button {
		display: none;
	}

.breadcrumbs {
	clear: both;
	padding-top: 1em;
}
	.breadcrumbs span:after {
		content: ">";
		color: #999;
		padding-left: 0.5em;
		padding-right: 0.25em;
	}

/*********************************************************************
 * 3. Main content and sidebar
 *
 */

#main {
	border-top: 1px solid #eee;
	padding-top: 1em;
	margin-top: 1em;
	clear: both;
}

#content {
	width: 85%;
}

#content, #sidebar {
	padding-bottom: 2em;
}

body.has-sidebar #content {
	width: 65%;
	float: left;
}

body.has-sidebar #sidebar {
	width: 35%;
	padding-left: 5%;
	float: left;
}

.nav {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
	.nav .nav {
		padding-left: 1.5em;
		list-style: disc;
	}
	.nav li {
		margin: 1em 0;
	}

	.nav-tree li {
		margin-top: 0;
		margin-bottom: 0;
	}

	.nav a {
		font-weight: bold;
	}

	.nav-tree li a {
		color: #777;
	}

	.nav .current > a {
		color: #333;
	}

.align_left {
	/* for images placed in rich text editor */
	float: left;
	margin: 0 1em 0.5em 0;
	position: relative;
	top: 0.5em;
	max-width: 50%;
}

.align_right {
	/* for images placed in rich text editor */
	float: right;
	margin: 0 0 0.5em 1em;
	max-width: 50%;
}

.align_center {
	/* for images placed in rich text editor */
	display: block;
	margin: 1em auto;
	position: relative;
	top: 0.5em;
}


/*********************************************************************
 * 4. Footer
 *
 */

#footer {
	clear: both;
	border-top: 1px solid #eee;
	font-size: 80%;
}

/*********************************************************************
 * 5. Media queries for responsive layout
 *
 */

@media only screen and (max-width: 767px) {
	/* mobile layout */

	body, td, textarea {
		font-size: 100%;
	}
	body.has-sidebar #content,
	body.has-sidebar #sidebar {
		float: none;
		width: 100%;
		padding: 0;
	}
	form.search {
		float: none;
		width: 100%;
	}
	#content {
		width: 100%;
	}
	#sidebar {
		border-top: 1px solid #eee;
		padding-top: 1em;
	}
	.align_left, .align_right, .align_center {
		display: block;
		float: none;
		margin: 1em auto;
		max-width: 100%;
	}

}

@media only screen and (min-width: 1200px) {
	/* extra-wide desktop layout */

	body, td, textarea {
		font-size: 115%;
	}
}

/*********************************************************************
 * Custom
 *
 */

ul#columnlist {
-moz-column-count: 3;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
column-count: 3;
column-gap: 10px;
}
ul#columnlist li{
line-height: 2em;
display: block;
}

ul#jahre {
    width: 16em;
    overflow:hidden;
/*    padding-left: 0em; */
/*	margin-left: -0.9em; */
}

ul#jahre li{
    line-height: 2em;
    float: left;
    display: inline;
    width: 4em;
	padding: 0.5em 0 0.5em 0.9em;
	border-right: 1px solid #eee;
}

ul#jahre li:nth-child(3n) {
    border-right: medium none;
}

ul#jahre li:hover {
    background-color: #eee;
}

ul#jahre a {
    display: block;
	border: none;
}


/*
ul#columnlistOptfloat {
    width: 17em;
    overflow:hidden;
    padding-left: 0px;
}
ul#columnlistOptfloat li{
    line-height: 2em;
    float: left;
    display: inline;
    width: 2.5em;
    margin: 0 0 1em 2em;
}
/* Zwei Spalten: */
/*ul#columnlistOptfloat .double li {
	width: 50%;
}
*/

body.bildspalte-sidebar #content {
/*	width: 42%; */
	width: 560px;
/*	height: 700px; */
	float: left;
}

body.bildspalte-sidebar #bildspalte {
/*	width: 26%; */
/*	padding-right: 1%; */
	width: 320px;
	padding-right: 20px;
	float: left;
}

body.bildspalte-sidebar #sidebar {
/*	width: 22%; */
/*	padding-left: 5%; */
	width: 260px;
	padding-left: 80px;
/*	width: 240px; */
/*	padding-left: 80px; */
/*	width: 220px; */
/*	padding-left: 40px; */
	float: left;
}
body.bildspalte #content {
	width: 69%;
	float: left;
}

body.bildspalte #bildspalte {
	width: 26%;
	padding-right: 1%;
	float: left;
}

body, td, input[type=text], textarea {
	font-family: 'Oxygen', Arial, sans-serif;
	font-size: 100%;
	line-height: 1.7em;

}

#warenkorb {
  background-color: #eee;
  border: 1px dotted #bbb;
  padding: 2px;
  font-size: 0.6em;
}

#box {
  width: 300px;
  height: 233px;
  background-color: #3263ac;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border: 15px solid #3263ac;
/*  margin-top: 10px; */
  margin-bottom: 20px;
}

.bildzeile {
	font-size: 82%;
	margin-bottom: 20px;
	float: left;
	line-height: 1.5em;
}

.button_text {
    outline: 0;
    border: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: #3263ac;
    padding: 5px 13px 4px 13px;
    margin-top: 15px;
}


/* ############################### */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
html {
}
body {
  padding-top: 40px;
  margin: 0;
}
header {
  margin: 0 auto;
  max-width: 979px;
}
header:after {
  content: " ";
  clear: both;
  display: block;
}
header hr {
  background-color: #3263ac;
  color: #3263ac;
  border: #3263ac;
  height: 24px;
  position: absolute;
  margin: 0;
  top: 50px;
  left: 0;
  right: 0;
  z-index: -1;
}
header img {
  background-color: #fff;
  border: none;
  float: left;
  width: 170px;
  height: auto;
  padding: 2px 20px 30px 10px;
}
navigation {
  font-size: 0.9em;
  border-left: 1px solid #eee;
  display: inline-block;
}
navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
navigation ul li {
  display: inline-block;
  background: #fff;
  color: #3263ac;
  line-height: 1.7;
  margin-left: -5px;
  padding-left: 5px;
  width: 153px;
}
navigation ul li span {
  border-bottom: 2px solid #3263ac;
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
navigation ul li.fa {
  background: none;
  padding: 0;
}
navigation ul li span.unsichtbar {
  visibility: hidden;
}
navigation ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding-left: 10px;
    border: none;
	width: 100%;
}
navigation a:hover {
  background-color: #3263ac;
  color: #fff;
  transition: .2s background-color;
}
navigation a.active {
  background-color: #ddd;
  color: #444;
  cursor: default;
}
navigation ul li ul {
  margin-top: 10px;
}
navigation ul ul li {
}

/* ############################### */

.breadcrumbs {
	color: #3263ac;
	font-size: 0.8em;
}
.breadcrumbs a {
	color: #3263ac;
}

#main {
	height: 20em;
	padding-top: 2em;
}

.publikationen {
    float: left;
    width: 33.3%;
}
.publikationen a {
    border-bottom: none;
}
.publikationen img {
	width: 280px;
	border: 1px solid #ccc;
}
.publikationen h4 {
	margin: 0;
}
.publikationen h5 {
    margin-top: 10px;
    margin-bottom: 3px;
}
hr {
  background-color: #eee;
  color: #eee;
  border: #eee;
  height: 1px;
}


#wrap {
/*    background: purple; */
    float: left;
    width: 1160px;
}
#inner-wrap {
/*    background: slateblue; */
    float: left;
    width: 880px;
}

.bildspalte-startseite {
/*    background: red; */
    float: left;
    padding-right: 20px;
/*    margin-top: 2em; */
    margin-bottom: 4em;
    width: 320px;
}
.hauptspalte-startseite {
/*    background: green; */
    float: left;
/*    margin-top: 2em; */
    margin-bottom: 4em;
    width: 560px;
}
.hauptspalte-startseite h2 {
	margin-top: 0;
}

/*#bildspalte img {
    margin-top: 10px;
}
*/
#sidebar h4 {
	margin: 0;
	text-transform: uppercase;
}

form.search {
	float: right;
	margin: 0;
	/* width: 30%; */
	width: 150px;
	height: 20px;
}
	form.search input {
		font-size: 0.9em;
		/* margin: 20px 0px 0px 16px; */
		/* padding: 0.1em 0.5em; */
		padding: 0em 0.5em;
		border: 1px solid #ccc;
		width: 180px;
	}
	form.search button {
		display: none;
	}

#aktuelles {
	line-height: 1.4em;
/*	margin-top: 2em; */
	text-decoration: none;
	border: none;
}
#aktuelles a {
	border-bottom: none;
}
#aktuelles h4 {
	color: #3263ac;
}
#info {
	color: #3263ac;
}
#newsletter input {
	font-size: 95%;
	width: 180px;
	margin-bottom: 0.5em;
}
#rundbrief img {
	border: 1px solid #ccc;
}
#zweigstellen a, #rundbrief a {
	border-bottom: none;
}
#zweigstellen h3, #rundbrief h3, #logos h3, #newsletter h3 {
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

#logos a {
	border: none;
}

#logos img {
	margin-bottom: 0.8em;
}

#bildstreifen {
	margin-bottom: 20px;
}

#jahrgaenge h3 {
	margin-top: 0em;
	padding-top: 0em;
}

#jahrgaenge ul {
	width: 12em;
	padding-left: 0em;
	margin-left: -0.9em;
}

#footer {
	margin-top: 20em;
}

table, tbody {
	padding: 0;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    padding-right: 0.5em;
    color: #3263ac;
}
.fa-phone-square:before {
    content: "\f098";
    padding-left: 0.05em;
}
.fa-fax:before {
    content: "\f1ac";
}
.fa-envelope:before {
    content: "\f0e0";
}
.fa-globe:before {
    content: "\f0ac";
    padding-left: 0.1em;
    padding-right: 0.05em;
}
.osteuropa {
	font-variant: small-caps;
}
h4 {
	margin-bottom: 0px;
}
p {
	margin-top: 5px;
}

.unterrubriken {
	padding-left: 0;
	list-style: none;
    padding: 0 0 20px 0;
    margin-top: 0px;
    margin-left: 320px;
    height: 24px;
    padding: 0px;
    width: 560px;
    background-color: #3263ac;
    color: #ffffff;
    margin-top: 20px;
    line-height: 20px;
    font-size: 95%;
/*    border-left: 10px solid #3263AC; */
}
	.unterrubriken .unterrubriken {
		padding-left: 1.5em;
		list-style: disc;
	}
	.unterrubriken li {
		float:left;
		padding: 2px 2px 2px 12px;
		background-color: #3263AC;

	}
	.unterrubriken-o-tree li {
		margin-top: 0;
		margin-bottom: 0;
	}
/*	.unterrubriken a:before {
		content: "\2022";
		padding-left: 0.1em;
		padding-right: 0.5em;
		text-decoration: none;
	}
*/
	.unterrubriken a {
	border: none;
	padding: 2px 10px 2px 10px;
	color: #fff;
	}
	.unterrubriken a:hover {
        background-color: #fff;
        color: #000;
        transition: .2s background-color;
    }

h1 {
	line-height: 1.3em;
    color: #444;
    font-size: 24px;
    font-weight: 400;
    margin-top: 0px;
}

h2 {
	line-height: 1.3em;
}

h3 {
	color: #3263ac;
}

h5 {
	margin: 0;
	line-height: 1.5em;
	text-transform: uppercase;
	margin-top: 10px;
}

.name {
	color: #3263ac;
	border: none;
}

.name a:hover {
	color: #3263ac;
}

header hr {
	top: 90px;
}

.dateiinfo {
	color: #aaa;
}
/*
.lang {
	color: #3263ac;
	width: 40px;
}
.lang a:hover {
	color: #fff;
}
*/

ul#international li {
	margin-left: -8px;
	padding-left: 0px;
	width: 90%;
}

ul#international a {
	padding: 0px;
}

ul#international img {
	padding: 0px;
	border: 1px solid #ccc;
}

navigation {
	padding-top: 8px;
	padding-left: 20px;
}

navigation ul li span {
	padding-bottom: 3px;
}

navigation ul li {
	padding-left: 20px;
	margin-left: -20px;
}


/* OSTEUROPA */
/*****************
header {
    margin-left: 20px;
    max-width: none;
}

header img {
    background-color: #fff;
    border: none;
    float: left;
    width: 300px;
    height: auto;
    padding: 0px 0px 30px 4px;
}

#kategorie-1 {
	width: 9.5em;
}

#kategorie-2 {
	width: 9.1em;
}

#kategorie-3 {
	width: 10.9em;
}

#kategorie-4 {
	width: 12.7em;
	border-right: 1px solid #ccc;
	margin-right: 17px;
}

/* // OSTEUROPA */



/* DGO */
/*******************/
header {
  margin-left: 150px;
  margin-top: 35px;
}

header img {
  background-color: #fff;
  border: none;
  float: left;
  width: 170px;
  height: auto;
  padding: 7px 14px 30px 14px;
}

#kategorie-1 {
	width: 9.0em;
}

#kategorie-2 {
	width: 10.3em;
}

#kategorie-3 {
	width: 11.5em;
}

#kategorie-4 {
	width: 11.4em;
	margin-right: 17px;
}

#extra {
	width: 4.2em;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	margin-right: 17px;
}


/* // DGO */

.current {
	font-weight: bold;
/*	text-decoration: underline; */
}

#socialmedia img {
	border: 1px solid #ccc;
}
#socialmedia a {
	border-bottom: none;
}

#socialmedia h3 {
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

#gefangeninrussland img {
	border: none;
}

#gefangeninrussland a {
	border-bottom: none;
}

#gefangeninrussland h3 {
	font-size: 1.12em;
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

#forumbelarus img {
	border: 1px solid #ccc;
}
#forumbelarus a {
	border-bottom: none;
}

#forumbelarus h3 {
	font-size: 1.12em;
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

#bildspalte a {
	border-bottom: none;
}

#bildspalte a:hover {
	border-bottom: 1px solid #ccc;
}

.bildspalte-startseite a {
	border-bottom: none;
}
.bildspalte-startseite a:hover {
	border-bottom: 1px solid #ccc;
}

.titelbild {
	border: 1px solid #ccc;
}
.link, #link {
	font-weight: bold;
	color: #3263ac;
	border-bottom: 1px solid #ccc;
}

#extras {
	float: right;
}


.float {
	float: left;
	margin-right: 10px;
}

.float a, a:hover {
	border: none;
	text-decoration: none;
}

.clear {
	float: clear;
}

em {
	/* font-family: 'Arial', sans-serif; */
    font-family: 'Raleway', 'Arial', sans-serif;
}

h5 a, h5 a:hover {
	border-bottom: none;
	color: #3263ac;
}

.kalender {
	padding-bottom: 1.5em;
}

.kalender h5 {
	margin: 0;
}

blockquote {
	font-style: normal;
	margin-top: 3em;
}

figcaption {
	font-size: 70%;
	line-height: normal;
	color: #777;
}

#subscription-form ul li {
	list-style: none;
}

#subscription-form ul, ul li ul {
	padding-left: 0em;
}

#subscription-form label:not(.subscription) {
	display: block;
	font-size: 0.8em;
}

#subscription-form input:not(.subscription) {
	margin-bottom: 0.8em;
	width: 100%;
	max-width: 400px;
}

.required > label::after {
    content: " *";
    color: #3263ac;
}

/* Anmeldungen */
#subscription-form textarea, select:not(.workshops) {
	margin-bottom: 0.8em;
	width: 100%;
	max-width: 400px;
}

#subscription-form select.workshops {
	margin-bottom: 0.8em;
	width: 90%;
}

ul#fachgruppe {
-moz-column-count: 3;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
column-count: 3;
column-gap: 10px;
}

ul#fachgruppe li{
line-height: 2em;
display: block;
}

ul#fachgruppenliste {
-moz-column-count: 1;
-moz-column-gap: 10px;
-webkit-column-count: 1;
-webkit-column-gap: 10px;
column-count: 1;
column-gap: 10px;
border-left: 5px solid #3263ac;
padding-left: 20px;
}

ul#fachgruppenliste li{
line-height: 2em;
display: block;
}

.highlight {
	margin-left: 7px;
	text-transform: uppercase;
	background-color: #fff;
	color: #3263ac;
	border: 1px solid #3263ac;
	font-size: 0.8em;
	padding: 2px 6px 2px 6px;
	font-weight: bold;
}

.jungedgo {
	color: #3263ac;
}

.jungedgo::after {
	padding-left: 0.2em;
	display: inline-block;
	content: ' ';
	background-image: url('../images/icon-junge-dgo.svg');
	background-repeat: no-repeat;
	background-size: 14px 16px;
	height: 14px;
	width: 16px;
	background-position-x: right;
}

.forumbelarus, .forumbelarus a {
	color: #999999;
}

.forumbelarus::after {
	padding-left: 0.2em;
	display: inline-block;
	content: ' ';
	background-image: url('../images/icon-forum-belarus.svg');
	background-repeat: no-repeat;
	background-size: 14px 16px;
	height: 14px;
	width: 16px;
	background-position-x: right;
}

.socialicon {
	vertical-align: top;
	width: 2em;
	height: 26px;
	position: relative;
	fill: #3263ac;
}

ul.zweigstelle {
-moz-column-count: 3;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
column-count: 3;
column-gap: 10px;
padding-left: 0px;
list-style: none;
}

.event-title, .event-format {
	font-size: 16px;
	line-height: 1.7em;
	font-weight: normal;
	margin: 0;
	padding: 0;
	color: #444;
}

.event-partners a {
	border: none;
}

.event-partners img {
	padding: 10px 0 10px 0;
}
