.boxy-wrapper { position: absolute; }
.boxy-wrapper.fixed { position: fixed; }

  /* Modal */
  
  .boxy-modal-blackout { position: absolute; background-color: black; left: 0; top: 0; }
  
  /* Border */

  .boxy-wrapper { empty-cells: show; }
	.boxy-wrapper .boxy-top-left,
	.boxy-wrapper .boxy-top-right,
	.boxy-wrapper .boxy-bottom-right,
	.boxy-wrapper .boxy-bottom-left { width: 10px; height: 10px; padding: 0 }
	
	:root .boxy-wrapper .boxy-top-left { background: url('http://static.dopetracks.com/img/boxy-nw.png'); }
	:root .boxy-wrapper .boxy-top-right { background: url('http://static.dopetracks.com/img/boxy-ne.png'); }
	:root .boxy-wrapper .boxy-bottom-right { background: url('http://static.dopetracks.com/img/boxy-se.png'); }
	:root .boxy-wrapper .boxy-bottom-left { background: url('http://static.dopetracks.com/img/boxy-sw.png'); }
	
	/* IE6-8 hacks for the border. IE7+8 should support this natively but fails in conjuction with modal blackout bg. */
	/* NB: these must be absolute paths or URLs to your images */
	.boxy-wrapper .boxy-top-left {
		#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-nw.png');
		-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-nw.png')";
	}
	.boxy-wrapper .boxy-top-right {
		#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-ne.png');
		-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-ne.png')";
	}
	.boxy-wrapper .boxy-bottom-right {
		#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-se.png');
		-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-se.png')";
	}
	.boxy-wrapper .boxy-bottom-left {
		#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-sw.png');
		-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.dopetracks.com/img/boxy-sw.png')";
	}
	
	.boxy-wrapper .boxy-top,
	.boxy-wrapper .boxy-bottom { height: 10px; background-color: black; opacity: 0.6; filter: alpha(opacity=60); padding: 0 }
	
	.boxy-wrapper .boxy-left,
	.boxy-wrapper .boxy-right { width: 10px; background-color: black; opacity: 0.6; filter: alpha(opacity=60); padding: 0 }
	
	/* Title bar */
	
	.boxy-wrapper .title-bar { background-color: #666; padding: 7px; position: relative; border: 1px #3B5998;}
	  .boxy-wrapper .title-bar.dragging { cursor: move; }
	    .boxy-wrapper .title-bar h2 { font-size: 14px; color: white; line-height: 1; margin: 0; padding: 0; font-weight: bold; }
	    .boxy-wrapper .title-bar .close { color: white; position: absolute; top: 6px; right: 6px; font-size: 90%; line-height: 1; }
		
	/* Content Region */
	
	.boxy-inner { overflow: hidden; background-color: white; padding: 0 }
	.boxy-content {  }
	
	/* Question Boxes */

    .boxy-wrapper .question { 
			width: 350px;
			min-height: 50px;
			padding: 10px;
			color: #333;
			font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
			font-size: 11px;
			color: #333;
		}
    .boxy-wrapper .answers {
			text-align: right;
			padding: 8px 10px 8px 10px;
			background-color: #F2F2F2;
			font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
			font-size: 11px;
			color: #333;
			border-top: 1px solid #CCC;
		}
		.boxy-wrapper .answers input[type=button] {
			color: #333;
			border: 1px solid #888;
			background-color: #EEE;
			font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;
			font-weight: bold;
			padding: 4px 8px 4px 8px;
			cursor: pointer;
			white-space: nowrap;
			font-size: 13px;
			text-align: center;
		}

		.boxy-wrapper .answers input[type=button].defaultButton {
			background-color: #5B74A8;
			border-color: #29447E #29447E #1A356E;
			border-width: 1px; 
			color: white;
		}

		
