﻿/* === IE Hack Guide - Danger Ahead! ===

IE6:
* html selector { property: value; }

========================================

IE7:
selector[attribute] { property: value; }

========================================

IE6 & IE7:
selector { *property: value; }

===================================== */


/* Allows Font Resize */

body {
	*font-size: 62.5%; 
}

/* Horizontal Scrollbar */

* html  {
	overflow-x: hidden;
}

/* Double Float Margin */

* html #hd-logo {
	margin-left: 5px;
}

* html #hd-account {
	margin-right: 5px;
}

* html #hd-nav-main {
	float: left;
}

/* Full Width Sub Nav */
* html #hd-nav-main div {
	width: 1000%;
}

/* Has Layout */
* html .hd-box {
	height: 1%; /* WTF IE? */
}

/* Link Position */

.hd-panels h6 a {
	*top: 0.7em;
}


/* Large Submit Buttons */

input[type=submit] {
	overflow: visible;
	padding: 0 0.25em;
}

/* Fix grid buttons */
* html div.grid td { vertical-align: middle; }

/* Fix button shift */
* html .hd-button { display: inline-block; }
* html div.hd-box p { display: inline-block; }
* html dd textarea { width: 98.5%; }
* html dd input { width: 98.5%; }
* html dd input.attach { width: auto; }
* html #hd-ticket-attach img { margin-right: 16px; top: 5px; }
.charts img { * display:block; }

/** html pre { white-space:pre; width: 98%; }*/
