/* Breadcrumbs area*/
ul.breadcrumbs, ul.breadcrumbs-map-top {
	font-family: 'Roboto', sans-serif;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	background-color: #a9a9a9;
	font-size: 1em;
}

/* Breadcrumbs area for the first line of the page with the map */
ul.breadcrumbs-map-top {
	border-top: 1px solid #000000;
}

/* Display breadcrumbs items side by side */
ul.breadcrumbs li, ul.breadcrumbs-map-top li {
	display: inline;
	font-size: 1.1em;
}

/* Breadcrumbs links */
ul.breadcrumbs li a {
	color: #262626;
	text-decoration: underline;
}

/* Breadcrumbs links on mouse-over */
ul.breadcrumbs li a:hover {
	color: #ffffff;
	text-decoration: underline;
}

li.breadcrumbs {
	margin-left: 0px;
}


/* Unique styles for screen resolution of 1024px and below */
@media screen and (max-width: 1024px) {
	ul.breadcrumbs {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 7px;
		padding-bottom: 7px;
	}

	ul.breadcrumbs li {
		display: inline;
		font-size: 1.0em;
	}

	/* Hiding the first level of the breadcrumbs on a small screen */
	.breadcrumbs-level1 {
		display:none;
	}
}


/* Unique styles for screen resolution of 640px and below */
@media screen and (max-width: 640px) {
	ul.breadcrumbs {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	/* Hiding the second level of the breadcrumbs on a small screen */
	.breadcrumbs-level2 {
		display:none;
	}
}


/* Unique styles for screen resolution of 320px and below */
@media screen and (max-width: 320px) {
	/* Hiding the third level of the breadcrumbs on a small screen */
	.breadcrumbs-level3 {
		display:none;
	}
}