/* CSS Document */

.threecol .col1 {

		width:46%;			/* width of center column content (column width minus padding on either side) */

		left:98%;			/* 100% plus left padding of center column */

	}

	.threecol .col2 {

		width:21%;			/* Width of left column content (column width minus padding on either side) */

		left:28%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */

	}

	.threecol .col3 {

		visibility:visible;

		width:18%;			/* Width of right column content (column width minus padding on either side) */

		left:83%;
		z-index: 1;			/* Please make note of the brackets here:

						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
	}

