
/***********************
**  JQDOCK : RIL CSS  **
************************/
#pub_1 {
	position: relative;
	top: 10px;
	left: 0px;
	padding-left: 0px;
}
#pub_2 {
	position: relative;
	top: 190px;
	left: 0px;
	padding-left: 0px;
}
#restofpage {
	position: relative;
	top: 350px;
	left: 0px;
	padding-left: 0px;
}
/*dock styling...*/
/*docks (div.jqDock) get absolute position, zero padding and margin, and visible overflow; width and height are calculated*/
/*...set a default dock background colour...*/
div.jqDock {
	background-color: transparent;
}
/*...override background colour and/or border for specific demo docks...*/
#pub_1 div.jqDock {
	border: 2px solid #ff9900;
}
#pub_2 div.jqDock {
	border: 2px solid #ff9900;
}
/*label styling...*/
/*labels (div.jqDockLabel) only get absolute position and zero margin (with top and left being calculated); the rest is up to you*/
/*...let's set some defaults...*/
div.jqDockLabel {
	border: 0px none;
	 padding: 0px 4px;
	 font-weight: bold;
	 font-size: 14px;
	 white-space: nowrap;
	 color: #000000;
	 background-color: transparent;
}
div.jqDockLabelLink {
	cursor: pointer;
}
div.jqDockLabelImage {
	cursor: default;
}
/*...and some overrides...*/
/*...give the right-hand vertical a smaller, non-bold, deep red label, on a white background...*/
#pub_1 div.jqDockLabel {
	color: #cc0000;
	 background-color: #ffffff;
	 padding: 1px;
	font-family : Arial, Helvetica, sans-serif;
	 font-size: 14px;
	 font-weight: bold;
}
#pub_2 div.jqDockLabel {
	color: #cc0000;
	 background-color: #ffffff;
	 padding: 1px;
	font-family : Arial, Helvetica, sans-serif;
	 font-size: 14px;
	 font-weight: bold;
}

