/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver (the default phpBB 3.3.x style)
	Based on style:
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
    --------------------------------------------------------------
*/

@import url("normalize.css?hash=48eb3f89");
@import url("base.css?hash=7c5543be");
@import url("utilities.css?hash=d8f72c42");
@import url("common.css?hash=a9741ba1");
@import url("links.css?hash=18286e16");
@import url("content.css?hash=be57a41d");
@import url("buttons.css?hash=56f0d25f");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=b64464fb");
@import url("icons.css?hash=64da33ce");
@import url("colours.css?hash=fcb2f289");
@import url("responsive.css?hash=87b53e08");

/* Submit/Reset buttons */
.panel input.button1,
.panel input.button2 {
  background: linear-gradient(#fdfdfd, #eaeaea);
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 11px;
  color: #111;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.panel input.button1:hover,
.panel input.button2:hover {
  background: linear-gradient(#222, #dcdcdc);
  border-color: #666;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.panel input.button1:active,
.panel input.button2:active {
  background: #d8d8d8;
  border-color: #555;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.25);
}
/* Select dropdowns */
.panel select {
  font-size: 11px;
  line-height: 0.95;
  padding: 2px 4px;
  border-radius: 4px;
  border: 1px solid silver;
  background-image: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%);
}
.panel select:hover {
  background-image: none;
  background-color: #fff;
  border-color: #6fa1d4;
}
