/*
 MyWork CMS Mobile Framework - Full Site Hide Stylesheet
 Author: Martin Krestan
 Author URL: http://www.mywork.com.au
 Version: 1.0
*/

/************************************************************************************
New Asset Styling and Global Overrides
*************************************************************************************/
/* Inputs */
input[type=text],
textarea,
.form-element textarea,
select {
	width: 100%;
	float: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	*width: expression((this.parentNode.clientWidth - parseInt(this.currentStyle['paddingLeft']) - parseInt(this.currentStyle['paddingRight'])) + 'px');
}
.form-element label {
	display: none;
}
/* Float Fix for inline errors */
.form-element input[type="text"] {
  float: none;
}
/* View Full / Mobile Site Buttons */
.view {
	display: block;
	text-align: center;
	margin: 20px auto;
	width: 980px;
}
.view a {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	background-color: #777777;
	background-image: linear-gradient(to bottom, #777777, #555555);
	background-image: -moz-linear-gradient(top,  #777777 0%, #555555 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#777777), color-stop(100%,#555555));
	background-image: -webkit-linear-gradient(top,  #777777 0%,#555555 100%);
	background-image: -o-linear-gradient(top,  #777777 0%,#555555 100%);
	background-image: -ms-linear-gradient(top,  #777777 0%,#555555 100%);
	background-image: linear-gradient(to bottom,  #777777 0%,#555555 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#555555',GradientType=0 );
	background-repeat: repeat-x;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #B3B3B3;
	border-image: none;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
	color: #dddddd;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.75);
	vertical-align: middle;
	padding: 12px;
	display: inline-block;
	width: auto;
}
.view a:hover,
.view a:active,
.view a:focus {
	background-color: #555555;
	color: #ffffff;
	background-position: 0 -15px;
	text-decoration: none;
	transition: background-position 0.1s linear 0s;
}
.view a + a {
	margin-left: 10px;
}
.view a#view_mob_link {
}
/* Global Hides */
.mobile-header, /* Mobile Header */
.mobile-header ul, /* Mobile Header */
.mobile-menu, /* Mobile Menu */
.mobile-menu ul, /* Mobile Menu */
.mobile-menu-bg, /* Mobile Menu BG */
.call-to-action .contact-email a.email i, /* Call To Action Font Icon */
.footer-contact .contact-email a.email i, /* Advanced Footer Font Icon */
.view a#view_full_link { /* View Full Site Link */
	display: none;
}