/**
 * @version    SVN: <svn_id>
 * @package    PdfEmbed
 * @author     Techjoomla <extensions@techjoomla.com>
 * @copyright  Copyright (c) 2009-2015 TechJoomla. All rights reserved.
 * @license    GNU General Public License version 2, or later
 */
 .embed-container
 {
	 position: relative;
	 padding-bottom: 56.25%; /* 16/9 ratio */
	 padding-top: 30px; /* IE6 workaround*/
	 height: 0;
	 overflow: hidden;
 }
 .embed-container iframe,
 .embed-container object,
 .embed-container embed
 {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
 }
 .native-embed-container:not(.native-embed-container.objectused)
 {
	 overflow: auto !important;
 }
 
