/*
 * PPI Client CSS
 *   Default/Common styles
 *
 * Colours (reasonably comprehensive):
 *   #692592 ('PPI' Purple) : Sub Menu background, Selected menu item background
 *   #4A1B67                : Content border, Menu borders, Heading text
 *   #9754C1                : Main Menu background
 *   #8037AD                : Main Menu hover background
 *   #F9CC51                : Menu hover text
 *   #F0E8F5                : Table heading background
 *   #FCFCFC                : Content background, Menu text
 *   #333333                : Default text
 *   #C2AFCC                : Borders, Underlines
 *   #F3F0F5                : Body background
 */

/* Basic Styles */
body {
	background-color: #F3F0F5;
    font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
    font-size: 12px;
	color: #333333;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5 {
	font: bold 250%/150% Verdana, Arial, Helvetica, sans-serif;
	color: #4A1B67;
    padding: 0 10px;
    margin: 10px 0;
    text-align: left;
    border-bottom: 1px solid #C2AFCC;
    clear: both;
}

h1 {
    margin: 0 5px 10px;
    padding: 0;
    border-bottom: none;
}

h2, h3, h4, h5 {
    font-size: 173%;
}

h3, #wrapper.login h2, #wrapper.track h2 {
    font-size: 144%;
}

h4 {
    font-size: 120%;
}

h5 {
    font-size: 100%;
}

h2 .view, h3 .view, h4 .view, h5 .view {
    font-size: 70%;
}

#body-content p {
    margin-bottom: 10px;
}

#body-content h2, #body-content h3, #body-content h4 {
    margin-left:-10px;
    margin-right:-10px;
}

/* Forms */
/* Browser Specific Overrides: IE 6, IE 7 */
input, textarea, button {
    outline-color: #C2AFCC;
}

button {
    border: 1px solid #C2AFCC;
}

input#submit {
    background-color: #F0E8F5;
}

/* Tables */
table {
    border-color: #C2AFCC;
}

tbody tr, tr, td, th {
    border-top: 1px solid #C2AFCC;
}

tbody.fix-width tr, tbody.fix-width tr td {
    height: 1px;
    line-height: 1px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #F0E8F5;
    border-top: none;
}

tbody.no-records tr td, tr.no-records td {
    text-align: center;
    font-style: italic;
}

tr.notice td {
    background-color: #F9F4D7;
}

tr.notice + tr.notice, tr.notice + tr.notice th, tr.notice + tr.notice td {
    border-top-color: #D1C4A7;
}

tr.update td {
    background-color: #F4F2F5;
}

tr.update + tr.update, tr.update + tr.update th, tr.update + tr.update td {
    border-top-color: #CABEC5;
}

tr.warning td, tr.error td {
    background-color: #FBCECE;
}

tr.error + tr.error, tr.error + tr.error th, tr.error + tr.error td {
    border-top-color: #E09E9E;
}

tr.potential td {
    background-color: #F4FDFC;
}

tr.potential + tr.potential, tr.potential + tr.potential th, tr.potential + tr.potential td {
    border-top-color: #CAC9CC;
}

tr th {
    background-position: 100% 0%;
}

tr.required th, tr.required-note th, tr.error th, tr.valid th,
 .explain .required, .explain .required-note, .explain .error {
    background-repeat: no-repeat;
    background-image: url('/images/icons/bullet_red.png');
}

tr.required-note th, .explain .required-note {
    background-image: url('/images/icons/bullet_purple.png');
}

tr.valid th {
    background-image: url('/images/icons/bullet_green.png');
}

tr.error th, .explain .error {
    background-image: url('/images/icons/bullet_error.png');
}

p.explain {
    font-weight: bold;
    margin: 0.5em 1em;
    font-size: 0.9em;
}

p.explain span {
    background-position: 0% 0%;
    padding-left: 18px;
    margin: 0 0 0 1.2em;
    font-weight: normal;
}

th, td {
    padding: 5px 10px;
}

th, th.sort a {
    background-color: #F0E8F5;
    color: #39144C;
    vertical-align: top;
}

th .note {
    font-size: 80%;
    text-transform: none;
}

/* Browser Specific Overrides: Other */
th label {

}

th.actions {
    text-indent: 0;
}

th.sort a {
    text-decoration: none;
}

th.sort a:hover {
    text-decoration: none;
}

th.sort.asc, th.sort.desc {
	background-image: url('/images/icons/arrow_up.png');
    background-repeat: no-repeat;
    background-position: 100% 4px;
    /* text-indent: 12px; */
}

th.sort.desc {
	background-image: url('/images/icons/arrow_down.png');
}

td, .info-tables.list-table tbody td {
    width: auto;
}

td.action, .info-tables.list-table tbody td.action {
    width: 18px;
}

td.action img {
    margin-bottom: -3px;
}

td.action.disabled img {
    cursor: auto; /* Fallback for next declaration */
    cursor: not-allowed;
    opacity: 0.3;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
}

td.fixed-width {
    width: 10%;
}

td.fixed-width.wide {
    width: 12.5%;
}

td.fixed-width.double {
    width: 15%;
}

td.fixed-width.very-wide {
    width: 25%;
}

td.fixed-width.narrow {
    width: 7.5%;
}

td.right {
    text-align: right;
}

/* Lists */
ul, ol {
    margin: 5px 0;
}

ul.bulleted li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 15px;
}

/* Wrapper */
#outer-wrapper {
    width: 961px;
    margin-left: -480px;
    left: 50%;
    position: absolute;
    top: 0px;
}

/* Browser Specific Overrides: IE 6, IE 7 */
#wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid #4A1B67;
    background-color: #fcfcfc;
    padding: 10px;
}

#wrapper fieldset {
    width: 100%;
    margin: 0;
    float: left;
}

#wrapper #submit {
    margin-top: -10px;
    margin-bottom: 10px;
}

#wrapper h1 {
    margin-bottom: 0;
}

#wrapper h1 a {
    background-image: url(/images/ppi_banner_large.png);
    background-position: center center;
    background-repeat: no-repeat;
    margin: -10px -10px 0;
    padding: 30px;
    display: block;
}

#wrapper h1 span {
    display: block;
    text-indent: -9999px;
}

/* Login */
.login #outer-wrapper, .track #outer-wrapper {
    width: 842px;
    margin-left: -421px;
}

.login #outer-wrapper h1 a, .track #outer-wrapper h1 a {
    background-image: url(/images/ppi_banner_small.png);
    background-position: 10px 13px;
}

/* Browser Specific Overrides: IE 6, IE 7 */
#login-form {
    margin: 1% 15%;
}

#login-form ol, #login-form li {
    width: 100%;
}

/* Browser Specific Overrides: IE 6, IE 7 */
#login-form #fields input, #login-form #fields select {
    width: 30.5em;
    font-size: 120%;
    padding: 1px 0;
}

#login-form label {
    margin-right: inherit;
    padding-top: 0;
    padding-left: 0.5em;
}

#login-form #submit {
    margin-top: -10px;
}

/* Content */
#body-content {
    padding: 0 10px;
}

#order-progress {
    padding-top: 10px;
    margin-top: -10px;
    background-repeat: no-repeat;
    background-position: right center;
}

#order-progress.bar-1-5 {
    background-image: url('/images/bar-1-5.png');
}

#order-progress.bar-2-5 {
    background-image: url('/images/bar-2-5.png');
}

#order-progress.bar-3-5 {
    background-image: url('/images/bar-3-5.png');
}

#order-progress.bar-4-5 {
    background-image: url('/images/bar-4-5.png');
}

#order-progress.bar-5-5 {
    background-image: url('/images/bar-5-5.png');
}

#order-progress.bar-1-6 {
    background-image: url('/images/bar-1-6.png');
}

#order-progress.bar-2-6 {
    background-image: url('/images/bar-2-6.png');
}

#order-progress.bar-3-6 {
    background-image: url('/images/bar-3-6.png');
}

#order-progress.bar-4-6 {
    background-image: url('/images/bar-4-6.png');
}

#order-progress.bar-5-6 {
    background-image: url('/images/bar-5-6.png');
}

#order-progress.bar-6-6 {
    background-image: url('/images/bar-6-6.png');
}

/* Menus */
#menus {
    margin: 0 -10px;
    border-top: 1px solid #4A1B67;
    border-bottom: 1px solid #4A1B67;
    position: relative;
    height: 5.8em;
    overflow: hidden;
}

#menus ul {
    position: absolute;
    padding: 5px 10px 0;
    top: 0px;
    width: 50em;
    z-index: 1;
}

/* Browser Specific Overrides: IE 6 */
ul#side-menu {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 30em;
	text-align: right;
    margin-top: 0;
}

ul#main-menu {
    margin-top: 0;
    left: 0px;
}

ul#sub-menu {
    top: 2.5em;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid #4A1B67;
    border-top: 1px solid #4A1B67;
    z-index: 0;
}

#menus li {
	list-style-type: none;
	white-space: nowrap;
    display: inline;
}

/* Browser Specific Overrides: IE 6, IE 7 */
#menus li a, #menus li a.not-link:hover {
	text-align:center;
    display: inline-block;
	line-height:165%;
    width: 6.4em;
    font-size: 135%;
    color: #FCFCFC;
    text-decoration: none;
    margin: 0 0.25em -1px;
    padding: 0 0 2px;
    border: 1px solid #9754C1;
    border-bottom: 1px solid #4A1B67;
    background-color: transparent;
}

/* Browser Specific Overrides: IE 6, IE 7 */
#sub-menu li a, #sub-menu li a.not-link:hover {
    font-size: 100%;
    margin: 0 0.34em -1px;
    width: 8.65em;
    border-color: #692592;
    border-bottom-color: #4A1B67;
}

#menus li a:hover {
    color: #F9CC51;
    background-color: #8037AD;
    border-color: #4A1B67;
}

#menus li.current a, #menus li.current a:hover, #menus li a:active, #sub-menu {
    background-color: #692592;
}

#menus, #sub-menu li.current a, #sub-menu li.current a:hover, #sub-menu li a:active {
    background-color: #9754C1;
}

#menus li.current a, #menus li a:active, #menus li.current a:hover {
    border-color: #4A1B67;
    border-bottom-color: #692592;
}

#sub-menu li.current a, #sub-menu li a:active, #sub-menu li.current a:hover {
    border-color: #4A1B67;
    border-bottom-color: #9754C1;
}

/* Footer */
/* Browser Specific Overrides: IE 6, IE 7 */
#footer {
    text-align: center;
    padding: 5px 0 0;
    margin: 15px 0 -5px;
    border-top: 1px solid #C2AFCC;
    clear: both;
}

#footer ul {
    margin: auto;
    display: inline;
}

/* Browser Specific Overrides: IE 6, IE 7 */
#footer li {
    margin: 0 1%;
    display: inline-block;
    text-align: center;
}

/* Terms */
#terms {
    margin: 5px 20px;
}

#terms p {
    margin-bottom: 0.2em;
}

#terms table, #terms tr, #terms td, #terms th {
    border: none;
    background-color: transparent;
    margin: 0.2em 0 0.4em;
}

#terms table {
    width: 49%;
    margin: 0.2em 25% 0.4em;
}

#terms th {
    color: #333333
}

#terms td, #terms th {
    padding: 0;
}

#terms li {
    list-style-type: decimal;
    list-style-position: outside;
    margin: 0.5em 0 1.5em 1em;
}

#terms li.section {
    font-weight: bold;
}

#terms li dl {
    display: inline;
}

#terms li dt {
    display: inline;
}

#terms li.section dt {
    font-weight: bold;
}

#terms li dd {
    display: block;
    margin: 0.2em 0 0.1em 0;
    font-weight: normal;
}

#terms li dl dl {
    display: inline;
}

#terms li dl dl dt {
    display: block;
    float: left;
    width: 17em;
    font-weight: normal;
}

#terms li dl dl dd {
    display: block;
    margin-left: 17em;
    margin-top: 0;
}

#terms ol {
    margin: 0 0 0 10px;
}


#terms ol li {
    list-style-type: lower-alpha;
    margin-top: 0;
    margin-bottom: 0.1em;
}

#terms ol ol li {
    list-style-type: lower-roman;
}

div#dialog span {
    display: block;
    margin: 0.2em 0 0.3em;
}

/* General Classes */
.notification-error {
	margin: auto;
    margin-bottom: 5px;
	color: #FF0000;
}

.notification-error ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.center {
    text-align: center;
}

.center * {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.center * * {
    margin-left: inherit;
    margin-right: inherit;
}

.decimal, .date {
    text-align: right;
    padding-right: 0.5em;
}

.total {
    font-weight: bold;
}

.icon-holder, .help-holder {
    position: relative;
    display: block;
    width: 100%;
}

.icon, icon.right {
    float: right;
    height: 18px;
    margin: 0 0 -18px;
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
}

.icon.left {
    float: left;
}

.icon.inline {
    margin: -1px 0 0;
    vertical-align: bottom;
    float: none;
}

.emphasis {
    font-style: italic;
}

.help {
    display: block;
    float: right;
    height: 18px;
    margin: 0 0 -18px;
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    text-indent: -9999px;
    background-image: url(/images/icons/help.png);
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    cursor: hand;
}

/* Columns - Incomplete */
.column, .column.normal {
    width: 55%;
}

.column.narrow {
    width: 30%;
}

.column.wide {
    width: 75%;
}

.column.full-width {
    width: 100%;
}

.column.center {
    margin-left: auto;
    margin-right: auto;
}

/* Info Tables - These are vertical tables displaying single records (or similar data) */
.info-tables, .info-tables *.center {
   text-align: center;
}

.info-tables *.decimal {
    text-align: right;
}

.info-tables * {
    text-align: left;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables div.column {
    display: inline-block;
    width: 48%;
    margin: 10px 0.5%;
    text-align:left;
    vertical-align:top;
}

.info-tables div.column.single {
    float: none;
}

.info-tables .tabbed {
    clear: both;
}

.info-tables.tabbed .tabs, .info-tables .tabbed .tabs {
    background-color: #F0E8F5;
    margin: 10px 0 0;
    padding: 0.25em 1.4em 0;
    border: 1px solid #C2AFCC;
}

.info-tables.tabbed .tabs li, .info-tables .tabbed .tabs li {
	list-style-type: none;
	white-space: nowrap;
    display: inline;
}

.info-tables.tabbed .tabs li a, .info-tables .tabbed .tabs li a, .info-tables.tabbed .tabs li button,
 .info-tables .tabbed .tabs li button, .info-tables.tabbed .large-tabs li a, .info-tables .tabbed .large-tabs li a,
 .info-tables.tabbed .large-tabs li button, .info-tables .tabbed .large-tabs li button {
	text-align:center;
    display: inline-block;
	line-height: 165%;
    height: 1.7em;
    width: 3.4em;
    font-family: inherit;
    font-size: 110%;
    font-weight: normal;
    text-decoration: none;
    color: #333333;
    margin: 0 0.1em 0 0;
    padding: 0 0 1px;
    border: 1px solid #F0E8F5;
    border-bottom: none;
    background-color: transparent;
}

.info-tables.tabbed .large-tabs li a, .info-tables .tabbed .large-tabs li a, .info-tables.tabbed .large-tabs li button,
 .info-tables .tabbed .large-tabs li button {
    width: 6.85em;
}

.info-tables.tabbed .large-tabs li.small a, .info-tables .tabbed .large-tabs li.small a, .info-tables.tabbed .large-tabs li.small button,
 .info-tables .tabbed .large-tabs li.small button {
    width: 3.4em;
}

.info-tables.tabbed .tabs li a:hover, .info-tables .tabbed .tabs li a:hover, .info-tables.tabbed .tabs li button:hover,
 .info-tables .tabbed .tabs li button:hover {
    border-color: #C2AFCC;
    background-color: #FCFCFC;
    font-weight: bold;
}

.info-tables.tabbed .tabs li.empty a:hover, .info-tables .tabbed .tabs li.empty a:hover, .info-tables.tabbed .tabs li.empty button:hover,
 .info-tables .tabbed .tabs li.empty button:hover {
    border-color: #F0E8F5;
    background-color: transparent;
}

.info-tables.tabbed .tabs li.current a, .info-tables .tabbed .tabs li.current a, .info-tables.tabbed .tabs li.current button,
 .info-tables .tabbed .tabs li.current button {
    border-color: #C2AFCC;
    background-color: #FCFCFC;
    margin-bottom: -1px;
    padding-bottom: 2px;
    font-weight: bold;
 }

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables.tabbed .tab, .info-tables .tabbed .tab {
    padding: 10px;
    border: 1px solid #C2AFCC;
    border-top: none;
    margin: 0;
    display: block;
}

.info-tables.tabbed .tab a.button.back, .info-tables.tabbed .tab a.button.forward,
 .info-tables.tabbed .tab input.button.back, .info-tables.tabbed .tab input.button.forward,
 .info-tables .tabbed .tab a.button.back, .info-tables .tabbed .tab a.button.forward,
 .info-tables .tabbed .tab input.button.back, .info-tables .tabbed .tab input.button.forward {
    margin-bottom: 0 !important;
}

.info-tables.tabbed .tab *, .info-tables .tabbed .tab * {
    margin: 0;
}

.info-tables.tabbed .tab .icon, .info-tables .tabbed .tab .icon {
    margin-bottom: -18px;
}

.info-tables.tabbed .tab .page-info, .info-tables .tabbed .tab .page-info {
    text-align: center;
    margin: 14px 0 -29px;
}

.info-tables.tabbed .tab .page-info.single, .info-tables .tabbed .tab .page-info.single {
    text-align: center;
    margin-bottom: 0;
}

/* Browser Specific Overrides: IE 6, Other */
.info-tables a.button.forward, .info-tables a.button.back, .info-tables input.button.forward,
 .info-tables input.button.back, .info-tables .tab button.forward, .info-tables .tab button.back,
 .info-tables button.forward, .info-tables button.back {
    float: right;
    margin: 10px 10px;
    padding: 2px 0.75em;
    background-color: #F0E8F5;
    text-align: center;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables input.button.forward, .info-tables input.button.back, .info-tables button.forward, .info-tables button.back {
    /* Not used here */
}

.info-tables a.button.disabled {
    color: #aaa;
}

.info-tables a.button.page, .info-tables input.button.page, button.page {
    margin-top: 25px;
}

.info-tables a.button.back, .info-tables input.button.back, .info-tables .tab button.back, .info-tables button.back {
    float: left;
}

.info-tables a.button {
    display:block;
    border: 1px solid #C2AFCC;
    color: black;
}

.info-tables a.button:hover {
    text-decoration: none;
    cursor: default;
}

.info-tables table {
    width: 100%;
    margin: 0;
    text-align: left;
}

.info-tables table.first {
    margin-left: 1%;
}

.info-tables table th, .info-tables.vertical table.horizontal th {
    width: 30%;
    background-color: #F0E8F5;
    padding: 4px 8px;
}

.info-tables table td, .info-tables.vertical table.horizontal td {
    width: 70%;
    padding: 4px 8px;
    border-right: 1px solid #C2AFCC;
    word-wrap: break-word;
}

.info-tables.vertical table td {
    border-right: none;
}

.info-tables table label {
    float: none;
    line-height: inherit;
    display: inline;
    padding: 2px 0;
}

.info-tables table label.notes {
    text-transform: none;
    font-size: 90%;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables table td label {
    font-weight: normal;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables table input, .info-tables table select, .info-tables table textarea {
    width: 100%;
    border: none;
    outline: 1px solid #C2AFCC;
    font-weight: inherit;
    margin: 1px -3px;
    padding: 1px 3px;
}

.info-tables table select {
    padding: 0;
    width: 101.5%;
    margin-left: -3px;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables table input.checkbox, .info-tables .tabbed table input.checkbox {
    width: auto;
    display: block;
    margin: auto;
    outline: none;
}

.info-tables table input.checkbox.inline {
    margin-bottom: 1px;
    display: inline;
    display: inline-block;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables table input.radio {
    vertical-align: middle;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1px;
    outline: none;
}

/* Browser Specific Overrides: IE 6, IE 7 */
.info-tables table input.file {
    outline: none;
    margin: -1px -4px;
}

.info-tables table input.inline, .info-tables table select.inline {
    width: auto;
    margin: 0;
}

.info-tables table input.inline:first-child, .info-tables table select.inline:first-child {
    margin-left: -3px;
}

.info-tables.vertical table input.inline:first-child, .info-tables.vertical table select.inline:first-child {
    margin-left: inherit;
}

.info-tables table input.inline.numeric-value {
    width: 4.7em;
}

.info-tables table input.inline.radio {
    border: none;
    outline: none;
    margin: 0 auto;
}

.info-tables table option {
    padding: 0px 5px 1px;
    width: auto;
}

.info-tables table ul, .info-tables table ol {
    margin: 0;
}

.info-tables caption {
    margin: 4px 8px -5px;
    font-weight: bold;
}

.info-tables table tr.error td {
    background-color: #FBCECE;
}

.info-tables table tr.error th, .info-tables.vertical table tr.error th {
    background-color: #EFB9B9;
}

.info-tables table tr.error + tr.error, .info-tables table tr.error + tr.error th, .info-tables table tr.error + tr.error td {
    border-top-color: #E09E9E;
}

.info-tables table tr.notice td {
    background-color: #F9F4D7;
}

.info-tables table tr.notice th {
    background-color: #EDDFC2;
}

.info-tables table tr.notice + tr.notice, .info-tables table tr.notice + tr.notice th, .info-tables table tr.notice + tr.notice td {
    border-top-color: #D1C4A7;
}

.info-tables table tr.update td {
    background-color: #F4F2F5;
}

.info-tables table tr.update th {
    background-color: #E6D9E0;
}

.info-tables table tr.update + tr.update, .info-tables table tr.update + tr.update th, .info-tables table tr.update + tr.update td {
    border-top-color: #CABEC5;
}

.info-tables table tr.potential td {
    background-color: #F4FDFC;
}

.info-tables table tr.potential th {
    background-color: #E6E4E7;
}

.info-tables table tr.potential + tr.potential, .info-tables table tr.potential + tr.potential th, .info-tables table tr.potential + tr.potential td {
    border-top-color: #CAC9CC;
}

.info-tables.vertical td, .info-tables .vertical td, .info-tables.vertical td.standard, .info-tables .vertical td.standard {
    width: 20%;
}

.info-tables.vertical td.free-width, .info-tables .vertical td.free-width {
    width: auto;
}

.info-tables.vertical td.action, .info-tables .vertical td.action {
    width: 18px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}

.info-tables.vertical td.wide, .info-tables .vertical td.wide {
    width: 30%;
}

.info-tables.vertical td.narrow, .info-tables .vertical td.narrow  {
    width: 16%;
}

.info-tables.vertical td.very-narrow, .info-tables .vertical td.very-narrow {
    width: 11.5%;
}

.info-tables.vertical th, .info-tables .vertical th, .info-tables.vertical table th, .info-tables .vertical table th {
    width: auto;
}

.info-tables.list-table td, .info-tables.list-table td.free-width, .info-tables.list-table table th {
    width: auto;
}

.info-tables.list-table td.fixed-width, .info-tables.list-table td.fixed-width.standard {
    width: 10%;
}

.info-tables.list-table td.fixed-width.action, .info-tables.list-table td.fixed-width.icon {
    width: 18px;
}

.info-tables.list-table td.fixed-width.medium {
    width: 12.5%;
}

.info-tables.list-table td.fixed-width.wide {
    width: 15%;
}

.info-tables.list-table td.fixed-width.double {
    width: 20.0%;
}

.info-tables.list-table td.fixed-width.double-wide {
    width: 30.0%;
}

.info-tables.list-table td.fixed-width.double-medium {
    width: 25.0%;
}

.info-tables.list-table td.fixed-width.narrow {
    width: 7.5%;
}

.info-tables.list-table td.fixed-width.tiny {
    width: 5.0%;
}

/* Specific Info Table Styles */
#send-parcel, #contact-us, #pick-pack {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

/* Browser Specific Overrides: IE 6 */
#send-parcel h4, #pick-pack h4 {
    margin-left: -16%;
    margin-right: -16%;
}

/* Browser Specific Overrides: IE 6 */
#send-parcel h5, #pick-pack h5, #track h5 {
    margin-left: -10px;
    margin-right: -10px;
}

.icon-holder-2{
	text-align:center;
}
