/*--------------------------------------------------------------------------
   
	Eventcamp

	0. YUI Library is used for CSS reset (http://yuilibrary.com/yui/docs/cssreset/)
	1. Body
	2. Typography
	3. Page Sections
		3.1. Topbar
		3.2. Event
		3.3. About
		3.4. Speakers
		3.5. News
		3.6. FAQ
		3.7. Register
		3.8. Map
		3.9. Sponsors
		3.10. Footer
	4. Forms

--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
	1. Body
--------------------------------------------------------------------------*/

body {
	color: #333;
	background: #fff;
	font: normal 16px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}



/*--------------------------------------------------------------------------
	2. Typography
--------------------------------------------------------------------------*/

/* Links */
a, a:visited { color: #333; text-decoration: none; outline: 0; }
a:hover, a:focus { color: #000; }
p a, p a:visited { line-height: inherit; }

/* Font stylings */
em { font-style: italic; }
strong { font-weight: bold; }
small { font-size: 80%; }



/*--------------------------------------------------------------------------
	3. Sections

	* Each block of the HTML page is named similar to "section-name"
	* If you don't need a specific section, just remove the whole section div block in the HTML file
--------------------------------------------------------------------------*/

/* Common elements */

h2 { 
	font: bold 36px/48px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}

p.desc {
	font: normal 14px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	
}

.font-color-white {
	color: #fff !important;
}

.font-color-black {
	color: #222 !important;
}

/* Colors - Underline */
.underline-color-primary {
	border-bottom: 1px solid #89B561;
}

img { max-width: 100%; }



	/*---------------------------------------------------
		3.1 Topbar

		* This is the fixed top navigation
	---------------------------------------------------*/

	/* Topbar (fixed) */
	/* Please refer to responsive_custom.css for CSS in smaller viewport */
	#section-topbar {
		height: 40px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 10000;
		overflow: visible;
		font: normal normal 16px/24px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	}

	#topbar-inner {
		/*	*	*	*	*	*	*	*	*	*	*	*
			bg_alpha50.png file is used for transparent background 
			Look in the documentation file for usages of transparent png overlays
		*	*	*	*	*	*	*	*	*	*	*	*/
		background: url('../images/alpha/bg_alpha50.png');
	}

		#section-topbar a {
		  color: #fff;
		}

	/*	*	*	*	*	*	*	*	*	*	*	*
		In mobile viewports, the list menu is converted to "select" element via javascript
		https://github.com/lukaszfiszer/selectnav.js
	*	*	*	*	*	*	*	*	*	*	*	*/
	.selectnav { display: none; }


	/*
		Top Bar

		By default, top navigation bar uses "fixed" position
		Menu collapses in mobile viewports
		Refer to css/responsive_custom.css for mobile layouts
	*/
	#section-topbar ul#nav {
		display: block;
		float: right;
		position: relative;
		margin: 0;
	}

	#section-topbar ul#nav > li {
		display: block;
		float: left;
	}


	#section-topbar ul#nav a {
	  display: block;
	  padding: 10px 20px 15px 20px;
	  font: normal 12px/18px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	  text-decoration: none;

	}

		#section-topbar ul#nav a {
			border-top: 3px solid #000;
		}

		#section-topbar ul#nav a:hover {
		  border-top: 3px solid #89B561;
		  text-decoration: none;
		}

		#section-topbar ul#nav .active a {
			border-top: 3px solid #89B561;
		}



	/*---------------------------------------------------
		3.2 Event
		
		* Includes site logo and event details
		* Date, Time, and Location of the event
	---------------------------------------------------*/
	
	#section-event {
		color: #fff;
		/* The background image used in this template is 1980 by 650 pixels */
		background: #111 url('../images/bg_eventcamp.jpg') no-repeat center 0;
	}

	.represent {
		margin: 80px 0 0 0;


	}

	.represent .first { margin-right: 20px; }

		/* Site Title/Logo */
		#section-event h1 { 
			
			
			display: inline-block;
			color: #fff;
			font:  90px/105px 'Oswald', 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			text-transform: uppercase; 
			margin-top: 0px;
			margin-bottom: 20px;
			padding-bottom: 3px;
		text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
		}

	
		#section-event h1 a {
			color: #fff;
		}


		#section-event h2   {
			font-size:  65px;
			line-height: 90px;
			text-shadow: none;
			display: inline-block;
			margin: 0 0 20px 0;
			
			text-shadow: 0 0 10px rgba(0,0,0,0.5) ;
			border-top: 2px solid #fff;
			border-bottom: 2px solid #fff;
			
		}
		


		/* Event information */
		#section-info {
			background: url('../images/alpha/bg_alpha30.png');
			padding: 30px 0;
		}

			#section-info h2 {
				color: #fff;
				font: bold 16px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				text-transform: uppercase;

			}

			#section-info #box-date {
				background: url('../images/icons/icon_date.png') no-repeat left 5px;
				padding-left: 70px;
			}

			#section-info #box-time {
				background: url('../images/icons/icon_time.png') no-repeat left 5px;
				padding-left: 70px;
			}

			#section-info #box-location {
				background: url('../images/icons/icon_map.png') no-repeat left 5px;
				padding-left: 70px;
			}

			#section-info h3 {
				color: #89B561;
				font: bold 21px/24px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				text-transform: uppercase;
				margin-bottom: 4px;
				letter-spacing: 2px;
			}

			#section-info p {
				color: #fff;
				font: normal 18px/24px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			}



	/*---------------------------------------------------
		3.3 About
	---------------------------------------------------*/

	#section-about {
		background: #89B561;
		padding: 60px 0 30px 0;
	}

		#section-about p.desc {
			font: normal 16px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			color: #fff;
			margin-bottom: 30px;
		}

		#section-about p {
			color: #fff;
			font: normal 18px/30px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 30px;
		}

		#section-about img {
			margin-bottom: 30px;
		}

		#section-about h3 {
			font-size: 1.4em;
			line-height: 1.8em;
			color: #fff;
			text-transform: uppercase;
		}



		/*---------------------------------------------------
		3.5 News

		* Contains an example article about the event
	---------------------------------------------------*/

	#section-past-events {
		color: #333;
		background: #fff;
		padding: 60px 0;
	}

		#section-past-events h2 {
		}

		#section-past-events h3 {
				
				font: bold 21px/24px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				text-transform: uppercase;
				margin-bottom: 4px;
				letter-spacing: 2px;
				margin-bottom: 20px;
			}	

		#section-past-events p.desc {
			color: #89B561;

		}

		#section-past-events p.headline {
			color: #666;
			font: italic 24px/36px 'PT Serif', Georgia, serif;
			text-align: left;
		}

		#section-past-events p {
			color: #333;
			font: normal 14px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 30px;
		}

		#section-past-events p img.news-image {
			background: #fff;
			border: 1px solid #ddd;
			padding: 4px;
			float: left;
			margin: 0 20px 10px 0;
		}

			#section-past-events p img.news-image.right {
				float: right;
				margin: 0 0 10px 20px;
			}

		#section-past-events ul {
			font: normal 15px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 30px;
		}

		#section-past-events ul li > p {
			padding: 10px;
			background: #f0f0f0
		}



			#section-past-events ul li {
				color: #444;
				background: #fff;
				margin-top: 2px;
				padding: 16px 24px 16px 0;
			}
	




	/*---------------------------------------------------
		3.4 Speakers
	---------------------------------------------------*/

	#section-fees {
		color: #fff;
		background: #111 url('../images/bg_gradient.jpg') no-repeat center center;
		font: normal normal 13px/21px 'PT Serif', Georgia, serif;
		padding: 60px 0;
	}
		#section-fees h2 {
			color: #fff;
			margin-bottom: 5px;
		}

		#section-fees p.desc {
			color: #89B561;
			margin-bottom: 50px;
		}

		/* Each speaker is wrapped by div#item */
		#section-fees .item {
			background: #111;
			padding: 20px 25px;
			margin-bottom: 40px;
		}

			#section-fees .item span.price {
				color: #fff;
				font: bold 70px/80px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				display: block;
				padding-bottom: 10px;
				border-bottom: 1px solid #222;
				margin-bottom: 10px;
			}

			#section-fees .item span.date {
				font: normal 15px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				color: #89B561;
				display: block;
				margin-bottom: 10px;
			}

			#section-fees .item p {
				font: normal 13px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				color: #888;
			}



	/*---------------------------------------------------
		3.5 News

		* Contains an example article about the event
	---------------------------------------------------*/

	#section-program {
		color: #333;
		background: #fff;
		padding: 60px 0;
	}

		#section-program h2 {
		}

		#section-program p.desc {
			color: #89B561;
		}

		#section-program p.headline {
			color: #666;
			font: italic 24px/36px 'PT Serif', Georgia, serif;
			text-align: left;
		}

		#section-program p {
			color: #333;
			font: normal 14px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 30px;
		}

		#section-program p img.news-image {
			background: #fff;
			border: 1px solid #ddd;
			padding: 4px;
			float: left;
			margin: 0 20px 10px 0;
		}

			#section-program p img.news-image.right {
				float: right;
				margin: 0 0 10px 20px;
			}

		#section-program ul {
			font: normal 15px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 30px;
		}

		#section-program ul li > p {
			padding: 10px;
			background: #f0f0f0
		}



			#section-program ul li {
				color: #444;
				background: #fff;
				margin-top: 2px;
				padding: 16px 24px 16px 0;
			}
	




	/*---------------------------------------------------
		3.6 FAQ
	---------------------------------------------------*/
	
	#section-faq {
		background: #fafafa;
		border-top: 1px solid #eee;
		padding: 60px 0;
	}

		#section-faq h2 {
			color: #111;
		}

		#section-faq p.desc {
			color: #111;
			font: normal 14px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 30px;
		}

		#section-faq h3 {
			display: inline-block;
			font: bold 17px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			color: #fff;
			background: #89B561;
			padding: 10px 15px;
			text-transform: uppercase;
			margin-bottom: 25px;
		}

		#section-faq h4 {
			color: #111;
			font: normal 18px/30px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 15px;
		}

		#section-faq p {
			color: #444;
			font: normal 13px/25px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 40px;
		}



	/*---------------------------------------------------
		3.7 Register
	---------------------------------------------------*/
	
	#section-register
	 {
		color: #fff;
		padding: 0px 0;
		background: #161616;
		padding: 60px 0;
	}
	
		#section-register h2 {
			color: #89B561;
			margin-bottom: 5px;
		}

		#section-register p.desc {
			color: #777;
			margin-bottom: 40px;
		}
		
		/* Register Form */
		#section-register form {
			margin-bottom: 40px;
		}

		#section-register form p,
		#section-register label,
		#section-register legend { 
			font: normal 15px/23px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
		}
		
		#section-register label {
			display: inline-block;
			float: left;
			width: 155px;
			margin: 6px 0;
		}
		
		#section-register input, 
		#section-register textarea, 
		#section-register select { 
			width: 280px; 
			padding: 14px 20px; 
			color: #eee; 
			background: #333;
			margin: 0 0 35px 0; 
			border: 0;
			outline: none;
		}
		
		#section-register input:focus, 
		#section-register textarea:focus, 
		#section-register select:focus { 
			color: #fff;
			background-color: #89B561;
		}
		
		#section-register button.submit,
		.button {
			font: bold 20px/30px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			text-transform: uppercase;
			letter-spacing: 4px;
			display: block;
			cursor: pointer;
			color:#fff;
			background:#89B561;
			padding: 20px 28px;
			border: none;
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			-khtml-border-radius: 3px;
			border-radius: 3px;
			display: inline-block;
			border: 1px solid rgba(255,255,255,0.3);
		}
		
		#section-register button.submit:hover,
		.button:hover { 
			color: #89B561;
			background: #fff; 
		}



		
		#section-register span.required { 
			color: #89B561;
			font-size: 13px;  
		} /* Select the color of the * if the field is required. */

		#contact-warning {
			display: none;
			color: #fff;
			background: #dd3333;
			padding: 20px 25px;
			margin-bottom: 30px;
		}
		
		#contact-success {
			display: none;
			color: #89B561;
			background: #111;
			padding: 20px 25px;
			margin-bottom: 30px;
		}

		#section-register #box-contact {
			margin-bottom: 60px;
		}

			#section-register #box-contact h3 {
				color: #89B561;
				font: bold 15px/23px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				text-transform: uppercase;
				margin-bottom: 15px;
			}

			#section-register #box-contact p.address {
				color: #aaa;
				font: normal 14px/25px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				margin-bottom: 50px;
			}
			
			#section-register #box-contact p.address {
				color: #aaa;
				font: normal 14px/25px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
				margin-bottom: 50px;
			}
			
			
			#section-register #box-contact a {
				color: #fff;
				font: normal 19px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			}
			
				#section-register #box-contact a:hover {
					color: #89B561;
				}

		/* PDF Download */
		a.link-pdf {
			color: #89B561;
			background: url(../images/icons/icon_pdf.png) no-repeat;
			font: bold 16px/30px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			text-transform: uppercase;
		    display: block;
		    padding: 40px 60px;
		}

			a.link-pdf span {
				background: #fff;
				padding: 3px 6px;
			}


		a.link-pdf:hover {
			color: #fff;
		}

			a.link-pdf:hover span {
				background: #000;
			}



	/*---------------------------------------------------
		3.8 Map
	---------------------------------------------------*/

	#section-map {
		height: 300px;
		position: relative;
		overflow: hidden;
	}

		#section-map #box-map {
			position: absolute;
			z-index: 10;
			top: 30px;
		}

			#section-map #box-map h2 {
				color: #222;
			}

		#map-wrap {
			width: 100%;
			height: 100%;
			position: relative;
		}



	/*---------------------------------------------------
		3.9 Sponsors
	---------------------------------------------------*/

	#section-sponsors {
		color: #333;
		background: #fff;
		padding: 60px 0 40px;
	}

		#section-sponsors h2 {
			font: bold 24px/36px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 20px;
		}

		#section-sponsors img {
			margin-bottom: 20px;
		}

	/*---------------------------------------------------
		3.9 Dogodek omogoča
	---------------------------------------------------*/

	#section-omogoca {
		color: #fff;
		background: #231f20;
		padding: 60px 0 60px;
	}

		#section-omogoca h2 {
			font: bold 24px/36px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			margin-bottom: 20px;
		}

		#section-omogoca img {
			margin-bottom: 20px;
		}



	/*---------------------------------------------------
		3.10 Footer
	---------------------------------------------------*/

	#section-footer {
		font: normal 13px/26px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #fff;
		background: #000;
	}

		#section-footer p#copytext {
			color: #777;
			margin: 35px 0;
		}

		#section-footer a { color: #89B561; }

		#section-footer a:hover { color: #eee; }


		#section-footer ul#social {
			float: right;
			border-left: 1px solid #111;
		}

		#section-footer ul#social li {
			display: inline-block;
			float: left;
		}

		#section-footer ul#social li a {
			display: block;
			padding: 30px;
			border-right: 1px solid #111;
		}

		#section-footer ul#social li a:hover {
			background: #89B561;
		}




/*--------------------------------------------------------------------------
   8. Forms
--------------------------------------------------------------------------*/

/* HTML5 Placeholder */
::-webkit-input-placeholder {
   color: #89B561;
}

:-moz-placeholder {  
	color: #89B561;
}

/*--------------------------------------------------------------------------
   9. Custom
--------------------------------------------------------------------------*/

	.button-small


	.mt10 {margin-top:10px !important;}

	.ml5 {margin-left:5px;}
	.font-oswald {
		font-family: "Oswald", 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;			
	}

	.font-family-custom-2 {font-family: 'Shadows Into Light Two', cursive;}

	.e-ts-light {
		text-shadow: 1px 1px 2px #000;
	}

	.e-ls-medium {
		letter-spacing: 0.12em;
	}
	.l-block {
		display: block !important;
	}

	.l-iblock {
		display: inline-block !important;
	}
	.l-inline {
		display: inline !important;
	}

	.right {float: right !important;}
	.left {float: left !important;}

	.f-bold {font-weight: bold; }
	.f-italic {font-variant: italic;}


	blockquote {padding-left: 20px; margin:0 0 20px 60px;
	  font-style: italic;
	 font-size: 1.7em;
	 line-height: 1.2em;
	 color: #89B561;
	}

	.font-color-custom-1 {color: #89B561;}
	.font-color-custom-2 {color: #dcd11f;}
	.font-medium {font-size: 1.4em;}
	.font-large {font-size: 1.8em !important;}	


	 span.foo {
				display: inline-block;
			font: bold 17px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			color: #fff;
			background: #89B561;
			padding: 10px 15px;
			text-transform: uppercase;
			margin-bottom: 0;
			}
			span.bar {
				display: inline-block;
			font: bold 17px/28px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
			color: #fff;
			background: #888;
			padding: 10px 15px;
			text-transform: uppercase;
			margin-bottom: 0;
			}

			span.bar-alt-bg {
				background: #445A30;
			}

			.anchor-link {
    position: absolute;
    top: -60px;
}


.button-small {
	background:#3c7ae4;
	color: #fff !important;
	font-size: 0.8em;
	padding: 5px 10px;
	border-radius: 3px;
}

.button-small:hover {
	background:#3f76d3;

}








/*--------------------------------------------------------------------------
   10. media screens
--------------------------------------------------------------------------*/


@media only screen and (max-width: 767px) {

	#section-info {
		background: url("../images/bg_gradient.jpg") no-repeat scroll center center #111111;
		text-align: center;
	}


	#section-event {
		color: #fff;
		/* The background image used in this template is 1980 by 650 pixels */
		background: #111 url('../images/bg_eventcamp_mobile.jpg') no-repeat center 0;
	}

	#box-contact {
	margin-top: 40px;
	}



 }