﻿#venue-details {
	z-index: 10;
	position: relative;  
	background: #eceff0; 
	border: 1px solid #c8c9ca; 
    border-top: none;
	border-right:none;
	display: none;
}

#venue-title-wrapper {
	cursor:pointer; 
	padding:10px;
	position:relative;
}
	
	#venue-title-wrapper h1  {
		font-size: 28px !important;
		margin:0;
	}
	
	#venue-title-wrapper .toggle { 
		position:absolute;
		top:20px;
		right:40px;
		width:18px;
		height:15px;
		background:url(toggle.png) 0 0 no-repeat;
		text-indent:-9999px;
	}
	#venue-title-wrapper.closed .toggle { 
		background-position:0 bottom;
	}
	
#venue-details-wrapper { 
	padding:0 20px 20px 0px;
}

	#venue-details-image { 
		float:left;
		max-width:350px;
        padding-right: 20px;
	}

		#venue-details-image img {
			width: 100%;
            width: 350px;
            max-height: 150px;
		}
		
#venue-details-text { 
	margin:0 40px 0 0px;
    padding-left: 20px;
}

#venue-details-text a {
    color: #007dba;
    text-decoration: none;
}
    #venue-details-text a:hover {
        color: #444;
        text-decoration: none;
    }

@media (max-width:959px) {
	#venue-details {
		width: 100% !important;
        border-left: none;
	}
}

@media (max-width:767px) {
	#venue-details {
        border-left: none;
	}
    #venue-details-toggle-container {
		text-align: right;
		padding-right: 15px;
	}
    #venue-details-image {
		display:none; 
	}

    #venue-details-wrapper {
        max-height: 280px;
        overflow-y: auto;
    }
    #venue-title-wrapper .toggle {
        position: static;
        margin-left: 89%;
    }    
}