/*!
 *  Stunnplate Defaults
 *  Version: 1.1.1
 *
 */
 /* 
 *  Last Updated: 16/07/14
 *  By: Adam
 *  
 *  Notes:
 *  Based on HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/
 *  Contains page defaults to be overridden in main style.css
 *
 *  Changelog:
 *  27/06/14
 *  Added Show/Hide media query snippet and tidied
 *  25/06/14
 *  Separated files out for user with Sublime Concat and library structure
 *  16/07/14
 *  Added data-hide*= desk outside of the media quries so it works in ie8
 */

/*-------------------------------------------------------*/
/*- GENERAL DEFAULTS                                    -*/
/*-------------------------------------------------------*/

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/*div {box-sizing:border-box;}*/
*, *:before, *:after, section {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

p {margin:0 0 1em 0;}

.img-holder img {width:100%; max-width:100%;}
.content .img-holder {margin-bottom:30px;}

/*-------------------------------------------------------*/
/*- IE FIXES                                            -*/
/*-------------------------------------------------------*/

.ie7 .title {
    padding-top: 20px;
}

/*-------------------------------------------------------*/
/*- HELPER CLASSES                                      -*/
/*-------------------------------------------------------*/

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/**[data-hide*=desk]{display:none!important}*/

/*-------------------------------------------------------*/
/*- SHOW/HIDE MEDIA QUERIES                             -*/
/*-------------------------------------------------------*/
/*MG THESE DO NOT MATCH MASTER MEDIA QUERIES */

/*---------------Wide Screen size---------------*/
@media only screen and (min-width: 1171px) {
*[data-hide*=desk]{display:none!important}
}

/*---------------960 Screen size---------------*/
@media only screen and (min-width: 960px) and (max-width: 1170px) {
*[data-hide*=desk]{display:none!important}
}

/*---------------iPad portrait---------------*/
@media only screen and (min-width: 569px) and (max-width: 959px) {
*[data-hide*=tab]{display:none!important}
}

/*---------------iPhone landscape---------------*/
@media only screen and (min-width: 480px) and (max-width: 568px) {
*[data-hide*=mob]{display:none!important}
}

/*--------------iPhone portrait---------------*/
@media only screen and (max-width: 479px) {
*[data-hide*=mob]{display:none!important}
}

@media only screen and (max-width: 479px) {
    *[data-hide*=tab]{display:none!important}
}

