/* WIL JE GOOGLE WEBFONTS GEBRUIKEN PLAATS DEZE DAN VOLGENS DE @IMPORT METHODE BOVENAAN DEZE STIJLSHEET */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(http://fonts.googleapis.com/css?family=Indie+Flower);

/*
 1.	RAAMWERK 
	=========================================================================================================
	HIER KAN DE LAYOUT VAN DE PAGINA GESTYLED WORDEN */

	/*	PATTERN
	================================================================== */
		div#pattern{
			
			/*display: none;*/ /*GEEN PATTERN OVERLAY TONEN */
			/*background: transparent url("/media/1036/pixelPatternOverlay.gif");*/ /* PATTERN AFBEELDING UIT MEDIADEPOT */
		}

	/*	LOGO
	================================================================== */
		#logo{
			max-width: 200px !important; /* BREEDTE VAN LOGO AFBEELDING */
		}

	/*	HEADERAFBEELDING
	================================================================== */

		/* WIL JE HEADERAFBEELDING VERBERGEN OP MOBIELE VARIANT? GA DAN NAAR: 4. MEDIA-QUERIES */

		#headerImage{
		}

		header #extra{
			width: 220px !important; /*BREEDTE VAN EXTRA AFBEELDING*/
		}

	/*	SITE
	================================================================== */
		#content, aside{
			border-color: #d8d8d8; /*KLEUR VAN SCHEIDINGSLIJN TUSSEN CONTENT EN DE SIDEBARS*/
		}


	/*	FOOTER
	================================================================== */
		footer{
		/*	DE BODY WORDT GEBRUIKT OM DE KLEUR VAN DE FOOTER TE STIJLEN
			ENKELE KLEUR: */
			background: #6cab6a;
			 
		/*	OF BACKGROUND-IMAGE:
			background: #000 url("path/to/image.png") 50% repeat;
		*/
		
			color: #fff; /* TEKSTKLEUR FOOTER */
		}

/*
 2.	MENU'S
	========================================================================================================= */

	/*	HOOFDMENU
	================================================================== */
		
		nav ul li.activeNode a,
        nav ul li.activeTree a,
		nav ul li.activeNode,
        nav ul li.activeTree,
		nav ul ul li a,
		nav ul li ul.sub_menu,
		nav ul li.hover{
			background-color: #f7982a;
		}
	
		nav ul li.activeNode a,
        nav ul li.activeTree a{
			/*background-image: url("/media/1018/ModernCompactMenuBullet.png"); */ /* AFBEELDING ModernCompactMenuBullet UIT MediaSection */
			background-position: 5px 50%;
			background-repeat: no-repeat;
			color: #fff; /*KLEUR VAN GESELECTEERDE MENU LINK */
		}

		nav ul li a{
	font-size: 18px;
	line-height: 20px;
			color: #666; /*STANDAARD KLEUR LINKS */
		}
		
		nav ul li a:hover{
			color: #f7982a; /*HOVER KLEUR MENU LINKS */
		}
		
		nav ul li.hover a,
		nav ul li:hover,
		nav ul li.activeNode a:hover,
		nav ul li.activeNode:hover,
		nav ul li ul.sub_menu a{
			color: #fff; /* HOVER KLEUR GESELECTEERDE MENU LINKS */
		}


		@media only screen and (min-width : 760px) and (max-width : 960px){

			/*	RONDE HOEKEN */
			nav ul li,
			nav ul li.activeNode a{
				border-radius: 4px;
			}

			nav ul li.master:hover{
				border-bottom-right-radius: 0;
				border-bottom-left-radius: 0;
			}
	
			nav ul li ul{
				border-radius: 4px;
				border-top-left-radius: 0;
				box-shadow: 3px 3px 3px rgba(0,0,0,0.2); /*SCHADUW OP SUBMENU */
			}

			nav ul li a:hover{
				color: #FFF; /*HOVER KLEUR MENU LINKS */
			}
		}

	/*	BREADCRUMB
	================================================================== */
		div#breadcrumb{
			color: #999; /* KLEUR TEKST */
		}

		div#breadcrumb a{
			color: #888; /* KLEUR LINKS */
			font-weight: bold; /* LINKS VETGEDRUKT */
			text-decoration: none; /* LINKS ONDERSTREPEN "none" OF "underline"  */
		}

		div#breadcrumb a:hover, div#breadcrumb a:active{
			color: #666; /*HOVERKLEUR LINKS */
		}

	/*	FOOTERMENU
	================================================================== */
		footer ul li a{
			color: #fff; /* KLEUR LINKS */
			text-decoration: none; /* LINKS ONDERSTREPEN "none" OF "underline"  */
		}
	
		footer ul li a:hover, footer ul li a:active{
			color: #ccc; /* HOVERKLEUR LINKS */
		}

	/*	SEOMENU
	================================================================== */
		ul#seomenu{
			background: #eee; /*ACHTERGROND KLEUR */
			border: 1px solid #ccc; /*BORDER*/
			border-bottom-width: 0; /*BORDER ONDERKANT OP 0 OMDAT LINKS EEN BORDER ONDER HEBBEN*/
		}
		
		ul#seomenu li a{
			border-bottom: 1px solid #ccc; /*BORDER LINKS */
			color: #666; /* KLEUR LINKS */
		}
		
		ul#seomenu li a:hover, ul#seomenu li a:active{
			background: #ddd; /* HOVER BACKGROUND KLEUR */
			color: #333; /* HOVERKLEUR LINKS */
		}

/*
 3.	LAYOUTMODELLEN 
	========================================================================================================= */

	/*	TYPOGRAFIE
	================================================================== */
	body{
		font-family: 'Open Sans', serif; /* FONT VOOR TEKST */
	}

	h1,h2,h3,h4,h5{
		font-family: 'Indie Flower', cursive;/*FONT VOOR ALLE TITELS */
		font-weight: 700; /* TITELS VETGEDRUKT */
		text-transform: none; /* ALLE TITELS IN HOOFDLETTERS */
		color: #f7982a; /* KLEUR TITELS */
		line-height: 1.25em;
	}

	/*	KLEUR */
		body, #content li, #aside li{
			color: #222; /* KLEUR VAN TEKST */
		}
		
	/* LINKS */
		a{
			color: #6cab6a;
		}
		a:hover, a:active{
			color: #6cab6a;
		}

        /*OPSOMMINGEN*/

        #content article ul li, aside ul li{
            list-style:none; /* if you�re not already using a reset */
            margin-left: 16px;
            padding-top: 0px;
            margin-right: 35px;
        } 

        #content article ul li:before, aside ul li:before {
            color:#6cab6a; /* color bullet */
            content:"\2022"; /* /2022 is the numerical unicode for &bull; */
            font-size:1.5em; /* set the font-size of the bullet if necessary. Make sure to use em or %*/
            padding-right:.55em; /* give the bullet some padding from the text Make sure to use em*/
            position:relative;
            top:.11em; /* set the vertical position of the bullet if necessary. Make sure to use em or % */
            margin-left: -20px;
        }

        #content ul.pictures li {
            margin-left: 5px;
            margin-right: 0px;
        }

        #content li:last-child{ margin-bottom: 15px;}

        /*FORMULIER CORRECTIE*/
        article #formulier ul li:before {content: "";}

        /*	TABELLEN */
		table, td, th
        {
	        border:1px solid #dddddd;
	        padding: 5px;
        }
	    tr:first-child td, th
        {
	        background-color: #EB6005; /*ACHTERGROND VAN EERSTE RIJ EN/OF KOLOM - WEL !IMPORTANT LATEN STAAN */ 
	        color:white; /* TEKSTKLEUR VAN EERSTE RIJ EN/OF KOLOM */
	        font-weight: 700;
        }
        tr:first-child td p 
        {
	        color:white !important; /* TEKSTKLEUR VAN EERSTE RIJ EN/OF KOLOM */
        }

        /* Mogelijk nog aanpassen */
		table.standaard tr.odd td, table.kolom tr td.even{
			background-color: #f0f0f0; /* ACHTERGROND (ON)EVEN RIJEN EN/OF KOLOMMEN */
		}

		/* (CALL TO ACTION / FORMULIER ) BUTTONS*/
			
			span.ctaL a{
			display: inline-block;     
			text-align: center;     
			vertical-align: middle;     
			padding: 9px 20px;     
			border-radius: 2px;     
			background: #ed0919;         
			color: #ffffff !important;     
			text-decoration: none;
			margin-bottom: 8px;
			clear:right;
			font-family: 'Open Sans', sans-serif;
			font-weight: 400;
		}
		
			span.ctaL a:hover {background: #ed0919;}

	/*	AFBEELDINGEN
		================================================================== */

		figure img, .cycle, .article img{
			box-shadow: 0px 1px 20px 0px rgba(0,0,0,.2); /*SCHADUW ACHTER AFBEELDING */
		}

	/*	RAND */
		figure.border img,
		figure.leftborder img,
		figure.rightborder img,
		figure.border a img,
		figure.leftborder a img,
		figure.rightborder a img{
			border: 2px solid #999; /*NORMAAL*/
		}
		
		figure.border a:hover img,
		figure.leftborder a:hover img,
		figure.rightborder a:hover img{
			border: 2px solid #ff9933; /*HOVER*/
		}

        aside img {
            float:left;
        }

	/*	FORMULIER
		================================================================== */

		input, select, textarea{
			font-family: 'Open Sans', serif; /* FONT VOOR INPUTVELDEN */
			color: #666; /* TEKSTKLEUR INPUTVELDEN */
			border-radius: 4px; /* RONDE HOEKEN */
		}
		
		button{
			background: #ed0919;
		}
		
		button:hover, button:active, button:focus{
			background: #ed0919;
		}

	/*	ARTIKEL
		================================================================== */
		
		.overzicht, .overzicht li, .article, .article.first, #woningform{
			border-color: #d8d8d8; /* KLEUR VAN LIJN TUSSEN VAN ARTIKELEN */
		}
	
		span.datum, .article span{
			color: #ccc; /* KLEUR VAN DATUM */
		}
	
		.article span.plaats, span.plaatsdetail{
			color: #F86218; /*KLEUR VAN PLAATS -> GEBRUIKT VOOR WONINGMODULE */
			font-weight: bold;
		}
	
		.overzicht a{
			color: #333; /* KLEUR LINKS ARTIKELOVERZICHT IN SIDEBAR */
		}
		.overzicht a:hover, .overzicht a:active{
			color: #d7510e; /* HOVER KLEUR LINKS ARTIKELOVERZICHT IN SIDEBAR */
		}
	
		/*PAGING*/
		ul.paging li.current a{
			color: #fff; /* TEKSTKLEUR GESELECTEERDE PAGINA */
			background: #F86218; /*BACKGROUND GESELECTEERDE PAGINA */
		}
	
		/*	VACATUREBANK
		================================================================== */
	
		table#vacaturebank th{
			color: #fff; /* TEKSTKLEUR HEADER TABLE */
			background: #F86218; /* BACKGROUND HEADER TABLE */
		}

		table#vacaturebank td, table#vacaturedetail, table#vacaturedetail td{
			border-color: #d8d8d8; /*KLEUR VAN LIJN IN TABLE */
		}

		/*	KALENDE
		================================================================== */
		.calendar .month {
			background: #EEE; /*ACHTERGROND VAN DATUMBLOK*/
			}
		
		.calendar .month .monthName {
			color: #FFF; /*TEKSTKLEUR MAANDNAAM*/
			background: #F86218; /*ACHTERGROND MAANDNAAM*/
			}
		
		.calendar .month .day.available,
		.calendar .legend .day.available {
			background: #67ae22; /* KLEUR BESCHIKBAAR */
			}
		
		.calendar .month .day.definitief,
		.calendar .legend .day.definitief {
			background: #d73030; /* KLEUR BEZET */
			color: #fff;
			}
		
		.calendar .month .day.optioneel,
		.calendar .legend .day.optioneel {
			background: #ff9c00; /* KLEUR WISSELDAG */
			}

/*
 4.	MEDIA-QUERIES 
	========================================================================================================= */

	/*	VANAF 0px
	================================================================== */


	/*	VANAF 480px
	================================================================== */
		@media only screen and (min-width: 480px){
			
		}
	
	/*	VANAF 760px
	================================================================== */
		@media only screen and (min-width: 760px){

		}
		
	/*	VANAF 960px
	================================================================== */
		@media only screen and (min-width: 960px){
			
		}
	
	/*	VANAF 1080px
	================================================================== */
		@media only screen and (min-width: 1080px) {
			
		}

/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
