
/* Table of Contents
==================================================
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
    #wrapper {
		width: 98%;
		margin: 0 auto;
    }
	
	#container {
		width: 98%;
	}
	
	header {
		width: 100%;
	}
	
	header #container {
		width: 100%;
	}
	
	header #header {
		width: 100%;
		left: 0;
	}
	
	header .navigation-bg
		{
			width: 100%;
		}
	
	header .navigation-bg ul {
	padding-left: 0px;
	}
	
	header .navigation-bg ul li {
	width: 14%;
	}
	header .navigation-bg {
	right:0;
	}
	header .navigation-bg ul li a {
	padding: 0;
	}
/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

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


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

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

    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
    
    /* Equal Columns - do NOT remove */
    #content { overflow:hidden; }
    .floated.sidebar { margin-bottom: -10000px; padding-bottom: 10000px; }
