@charset "utf-8";
/* CSS Document */

#jwstSearchBox {
	width: 280px; /* default size for home page */
    margin: 0;
	
 /*  position is set ON the widget div when inserted in code
    position: absolute;
	top: 0;
    right: 0;
*/

}


#jwstSearchForm {
    height: 22px;
	width:100%; /* note: border is set on the form as is resp % width */
	
	border: 2px solid #444444;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    
	background-image:url(../../widgetImageCache/blackTrans25png);
	background-repeat:repeat;
	
}

#jwstSearchText {
    font-size: 14px;
    color: #fff;
    border-width: 0;	
    background: transparent;
}

#jwstSearchBox input[type="text"] {
    padding: 2px 5px 2px 5px;
    color: #fff;
    outline: none;
	
	width:calc(100% - 90px); /* full width minus 90px button and borders */

}

#jwstSearchButton {
    float:right; /* changed to right so in tab order search input hits first then search button next */

	height: 22px;
    width: 60px;
    font-size: 14px;
	font-weight:500;
	line-height: 21px;
    color: #000000;
    text-align: center;
    border-width: 0;
	border-left: solid 2px #333333;
	background-color:#C87B06;  /* brighter in order: #593E12 #915D0C #C87B06 #FF9900 */
    /*
	-webkit-border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    border-radius: 0px 0px 0px 0px;
	*/
    cursor: pointer;
}

#jwstSearchButton:hover {
	background-color:#FF9900;  /* brighter in order: #593E12 #915D0C #C87B06 #FF9900 */
	xborder: solid 1px #C87B06;

}


