bootstrap.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736
  1. html,body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td
  6. {
  7. margin: 0;
  8. padding: 0;
  9. border: 0;
  10. font-weight: normal;
  11. font-style: normal;
  12. font-size: 100%;
  13. line-height: 1;
  14. font-family: inherit;
  15. }
  16. table {
  17. border-collapse: collapse;
  18. border-spacing: 0;
  19. }
  20. ol,ul {
  21. list-style: none;
  22. }
  23. q:before,q:after,blockquote:before,blockquote:after {
  24. content: "";
  25. }
  26. html {
  27. overflow-y: scroll;
  28. font-size: 100%;
  29. -webkit-text-size-adjust: 100%;
  30. -ms-text-size-adjust: 100%;
  31. }
  32. a:focus {
  33. outline: thin dotted;
  34. }
  35. a:hover,a:active {
  36. outline: 0;
  37. }
  38. article,aside,details,figcaption,figure,footer,header,hgroup,nav,section
  39. {
  40. display: block;
  41. }
  42. audio,canvas,video {
  43. display: inline-block;
  44. *display: inline;
  45. *zoom: 1;
  46. }
  47. audio:not ([controls] ){
  48. display: none;
  49. }
  50. sub,sup {
  51. font-size: 75%;
  52. line-height: 0;
  53. position: relative;
  54. vertical-align: baseline;
  55. }
  56. sup {
  57. top: -0.5em;
  58. }
  59. sub {
  60. bottom: -0.25em;
  61. }
  62. img {
  63. border: 0;
  64. -ms-interpolation-mode: bicubic;
  65. }
  66. button,input,select,textarea {
  67. font-size: 100%;
  68. margin: 0;
  69. vertical-align: baseline;
  70. *vertical-align: middle;
  71. }
  72. button,input {
  73. line-height: normal;
  74. *overflow: visible;
  75. }
  76. button::-moz-focus-inner,input::-moz-focus-inner {
  77. border: 0;
  78. padding: 0;
  79. }
  80. button,input[type="button"],input[type="reset"],input[type="submit"] {
  81. cursor: pointer;
  82. -webkit-appearance: button;
  83. }
  84. input[type="search"] {
  85. -webkit-appearance: textfield;
  86. -webkit-box-sizing: content-box;
  87. -moz-box-sizing: content-box;
  88. box-sizing: content-box;
  89. }
  90. input[type="search"]::-webkit-search-decoration {
  91. -webkit-appearance: none;
  92. }
  93. textarea {
  94. overflow: auto;
  95. vertical-align: top;
  96. }
  97. body {
  98. background-color: #ffffff;
  99. margin: 0;
  100. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  101. font-size: 13px;
  102. font-weight: normal;
  103. line-height: 18px;
  104. color: #404040;
  105. }
  106. .container {
  107. width: 940px;
  108. margin-left: auto;
  109. margin-right: auto;
  110. zoom: 1;
  111. }
  112. .container:before,.container:after {
  113. display: table;
  114. content: "";
  115. zoom: 1;
  116. }
  117. .container:after {
  118. clear: both;
  119. }
  120. .container-fluid {
  121. position: relative;
  122. min-width: 940px;
  123. padding-left: 20px;
  124. padding-right: 20px;
  125. zoom: 1;
  126. }
  127. .container-fluid:before,.container-fluid:after {
  128. display: table;
  129. content: "";
  130. zoom: 1;
  131. }
  132. .container-fluid:after {
  133. clear: both;
  134. }
  135. .container-fluid>.sidebar {
  136. position: absolute;
  137. top: 0;
  138. left: 20px;
  139. width: 220px;
  140. }
  141. .container-fluid>.content {
  142. margin-left: 240px;
  143. }
  144. a {
  145. color: #0069d6;
  146. text-decoration: none;
  147. line-height: inherit;
  148. font-weight: inherit;
  149. }
  150. a:hover {
  151. color: #00438a;
  152. text-decoration: underline;
  153. }
  154. .pull-right {
  155. float: right;
  156. }
  157. .pull-left {
  158. float: left;
  159. }
  160. .hide {
  161. display: none;
  162. }
  163. .show {
  164. display: block;
  165. }
  166. .row {
  167. zoom: 1;
  168. margin-left: -20px;
  169. }
  170. .row:before,.row:after {
  171. display: table;
  172. content: "";
  173. zoom: 1;
  174. }
  175. .row:after {
  176. clear: both;
  177. }
  178. .row>[class *="span"] {
  179. display: inline;
  180. float: left;
  181. margin-left: 20px;
  182. }
  183. .span1 {
  184. width: 40px;
  185. }
  186. .span2 {
  187. width: 100px;
  188. }
  189. .span3 {
  190. width: 160px;
  191. }
  192. .span4 {
  193. width: 220px;
  194. }
  195. .span5 {
  196. width: 280px;
  197. }
  198. .span6 {
  199. width: 340px;
  200. }
  201. .span7 {
  202. width: 400px;
  203. }
  204. .span8 {
  205. width: 460px;
  206. }
  207. .span9 {
  208. width: 520px;
  209. }
  210. .span10 {
  211. width: 580px;
  212. }
  213. .span11 {
  214. width: 640px;
  215. }
  216. .span12 {
  217. width: 700px;
  218. }
  219. .span13 {
  220. width: 760px;
  221. }
  222. .span14 {
  223. width: 820px;
  224. }
  225. .span15 {
  226. width: 880px;
  227. }
  228. .span16 {
  229. width: 940px;
  230. }
  231. .span17 {
  232. width: 1000px;
  233. }
  234. .span18 {
  235. width: 1060px;
  236. }
  237. .span19 {
  238. width: 1120px;
  239. }
  240. .span20 {
  241. width: 1180px;
  242. }
  243. .span21 {
  244. width: 1240px;
  245. }
  246. .span22 {
  247. width: 1300px;
  248. }
  249. .span23 {
  250. width: 1360px;
  251. }
  252. .span24 {
  253. width: 1420px;
  254. }
  255. .row>.offset1 {
  256. margin-left: 80px;
  257. }
  258. .row>.offset2 {
  259. margin-left: 140px;
  260. }
  261. .row>.offset3 {
  262. margin-left: 200px;
  263. }
  264. .row>.offset4 {
  265. margin-left: 260px;
  266. }
  267. .row>.offset5 {
  268. margin-left: 320px;
  269. }
  270. .row>.offset6 {
  271. margin-left: 380px;
  272. }
  273. .row>.offset7 {
  274. margin-left: 440px;
  275. }
  276. .row>.offset8 {
  277. margin-left: 500px;
  278. }
  279. .row>.offset9 {
  280. margin-left: 560px;
  281. }
  282. .row>.offset10 {
  283. margin-left: 620px;
  284. }
  285. .row>.offset11 {
  286. margin-left: 680px;
  287. }
  288. .row>.offset12 {
  289. margin-left: 740px;
  290. }
  291. .span-one-third {
  292. width: 300px;
  293. }
  294. .span-two-thirds {
  295. width: 620px;
  296. }
  297. .row>.offset-one-third {
  298. margin-left: 340px;
  299. }
  300. .row>.offset-two-thirds {
  301. margin-left: 660px;
  302. }
  303. p {
  304. font-size: 13px;
  305. font-weight: normal;
  306. line-height: 18px;
  307. margin-bottom: 9px;
  308. }
  309. p small {
  310. font-size: 11px;
  311. color: #bfbfbf;
  312. }
  313. h1,h2,h3,h4,h5,h6 {
  314. font-weight: bold;
  315. color: #404040;
  316. }
  317. h1 small,h2 small,h3 small,h4 small,h5 small,h6 small {
  318. color: #bfbfbf;
  319. }
  320. h1 {
  321. margin-bottom: 18px;
  322. font-size: 30px;
  323. line-height: 36px;
  324. }
  325. h1 small {
  326. font-size: 18px;
  327. }
  328. h2 {
  329. font-size: 24px;
  330. line-height: 36px;
  331. }
  332. h2 small {
  333. font-size: 14px;
  334. }
  335. h3,h4,h5,h6 {
  336. line-height: 18px;
  337. }
  338. h3 {
  339. font-size: 18px;
  340. }
  341. h3 small {
  342. font-size: 14px;
  343. }
  344. h4 {
  345. font-size: 16px;
  346. }
  347. h4 small {
  348. font-size: 12px;
  349. }
  350. h5 {
  351. font-size: 14px;
  352. }
  353. h6 {
  354. font-size: 13px;
  355. color: #bfbfbf;
  356. text-transform: uppercase;
  357. }
  358. ul,ol {
  359. margin: 0 0 18px 25px;
  360. }
  361. ul ul,ul ol,ol ol,ol ul {
  362. margin-bottom: 0;
  363. }
  364. ul {
  365. list-style: disc;
  366. }
  367. ol {
  368. list-style: decimal;
  369. }
  370. li {
  371. line-height: 18px;
  372. color: #808080;
  373. }
  374. ul.unstyled {
  375. list-style: none;
  376. margin-left: 0;
  377. }
  378. dl {
  379. margin-bottom: 18px;
  380. }
  381. dl dt,dl dd {
  382. line-height: 18px;
  383. }
  384. dl dt {
  385. font-weight: bold;
  386. }
  387. dl dd {
  388. margin-left: 9px;
  389. }
  390. hr {
  391. margin: 20px 0 19px;
  392. border: 0;
  393. border-bottom: 1px solid #eee;
  394. }
  395. strong {
  396. font-style: inherit;
  397. font-weight: bold;
  398. }
  399. em {
  400. font-style: italic;
  401. font-weight: inherit;
  402. line-height: inherit;
  403. }
  404. .muted {
  405. color: #bfbfbf;
  406. }
  407. blockquote {
  408. margin-bottom: 18px;
  409. border-left: 5px solid #eee;
  410. padding-left: 15px;
  411. }
  412. blockquote p {
  413. font-size: 14px;
  414. font-weight: 300;
  415. line-height: 18px;
  416. margin-bottom: 0;
  417. }
  418. blockquote small {
  419. display: block;
  420. font-size: 12px;
  421. font-weight: 300;
  422. line-height: 18px;
  423. color: #bfbfbf;
  424. }
  425. blockquote small:before {
  426. content: '\2014 \00A0';
  427. }
  428. address {
  429. display: block;
  430. line-height: 18px;
  431. margin-bottom: 18px;
  432. }
  433. code,pre {
  434. padding: 0 3px 2px;
  435. font-family: Monaco, Andale Mono, Courier New, monospace;
  436. font-size: 12px;
  437. -webkit-border-radius: 3px;
  438. -moz-border-radius: 3px;
  439. border-radius: 3px;
  440. }
  441. code {
  442. background-color: #fee9cc;
  443. color: rgba(0, 0, 0, 0.75);
  444. padding: 1px 3px;
  445. }
  446. pre {
  447. background-color: #f5f5f5;
  448. display: block;
  449. padding: 8.5px;
  450. margin: 0 0 18px;
  451. line-height: 18px;
  452. font-size: 12px;
  453. border: 1px solid #ccc;
  454. border: 1px solid rgba(0, 0, 0, 0.15);
  455. -webkit-border-radius: 3px;
  456. -moz-border-radius: 3px;
  457. border-radius: 3px;
  458. white-space: pre;
  459. white-space: pre-wrap;
  460. word-wrap: break-word;
  461. }
  462. form {
  463. margin-bottom: 18px;
  464. }
  465. fieldset {
  466. margin-bottom: 18px;
  467. padding-top: 18px;
  468. }
  469. fieldset legend {
  470. display: block;
  471. padding-left: 150px;
  472. font-size: 19.5px;
  473. line-height: 1;
  474. color: #404040;
  475. *padding: 0 0 5px 145px;
  476. *line-height: 1.5;
  477. }
  478. form .clearfix {
  479. margin-bottom: 18px;
  480. zoom: 1;
  481. }
  482. form .clearfix:before,form .clearfix:after {
  483. display: table;
  484. content: "";
  485. zoom: 1;
  486. }
  487. form .clearfix:after {
  488. clear: both;
  489. }
  490. label,input,select,textarea {
  491. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  492. font-size: 13px;
  493. font-weight: normal;
  494. line-height: normal;
  495. }
  496. label {
  497. padding-top: 6px;
  498. font-size: 13px;
  499. line-height: 18px;
  500. float: left;
  501. width: 130px;
  502. text-align: right;
  503. color: #404040;
  504. }
  505. form .input {
  506. margin-left: 150px;
  507. }
  508. input[type=checkbox],input[type=radio] {
  509. cursor: pointer;
  510. }
  511. input,textarea,select,.uneditable-input {
  512. display: inline-block;
  513. width: 210px;
  514. height: 18px;
  515. padding: 4px;
  516. font-size: 13px;
  517. line-height: 18px;
  518. color: #808080;
  519. border: 1px solid #ccc;
  520. -webkit-border-radius: 3px;
  521. -moz-border-radius: 3px;
  522. border-radius: 3px;
  523. }
  524. select {
  525. padding: initial;
  526. }
  527. input[type=checkbox],input[type=radio] {
  528. width: auto;
  529. height: auto;
  530. padding: 0;
  531. margin: 3px 0;
  532. *margin-top: 0;
  533. line-height: normal;
  534. border: none;
  535. }
  536. input[type=file] {
  537. background-color: #ffffff;
  538. padding: initial;
  539. border: initial;
  540. line-height: initial;
  541. -webkit-box-shadow: none;
  542. -moz-box-shadow: none;
  543. box-shadow: none;
  544. }
  545. input[type=button],input[type=reset],input[type=submit] {
  546. width: auto;
  547. height: auto;
  548. }
  549. select,input[type=file] {
  550. height: 27px;
  551. *height: auto;
  552. line-height: 27px;
  553. *margin-top: 4px;
  554. }
  555. select[multiple] {
  556. height: inherit;
  557. background-color: #ffffff;
  558. }
  559. textarea {
  560. height: auto;
  561. }
  562. .uneditable-input {
  563. background-color: #ffffff;
  564. display: block;
  565. border-color: #eee;
  566. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  567. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  568. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  569. cursor: not-allowed;
  570. }
  571. .uneditable-input:focus {
  572. border-color: rgba(82, 168, 236, 0.8);
  573. outline: 0;
  574. /* IE6-9 */
  575. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  576. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  577. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  578. }
  579. :-moz-placeholder {
  580. color: #bfbfbf;
  581. }
  582. ::-webkit-input-placeholder {
  583. color: #bfbfbf;
  584. }
  585. input,textarea {
  586. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  587. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  588. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  589. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  590. transition: border linear 0.2s, box-shadow linear 0.2s;
  591. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  592. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  593. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  594. }
  595. input:focus,textarea:focus {
  596. outline: 0;
  597. border-color: rgba(82, 168, 236, 0.8);
  598. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px
  599. rgba(82, 168, 236, 0.6);
  600. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px
  601. rgba(82, 168, 236, 0.6);
  602. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px
  603. rgba(82, 168, 236, 0.6);
  604. }
  605. input[type=file]:focus,input[type=checkbox]:focus,select:focus {
  606. -webkit-box-shadow: none;
  607. -moz-box-shadow: none;
  608. box-shadow: none;
  609. outline: 1px dotted #666;
  610. }
  611. form .clearfix.error>label,form .clearfix.error .help-block,form .clearfix.error .help-inline
  612. {
  613. color: #b94a48;
  614. }
  615. form .clearfix.error input,form .clearfix.error textarea {
  616. color: #b94a48;
  617. border-color: #ee5f5b;
  618. }
  619. form .clearfix.error input:focus,form .clearfix.error textarea:focus {
  620. border-color: #e9322d;
  621. -webkit-box-shadow: 0 0 6px #f8b9b7;
  622. -moz-box-shadow: 0 0 6px #f8b9b7;
  623. box-shadow: 0 0 6px #f8b9b7;
  624. }
  625. form .clearfix.error .input-prepend .add-on,form .clearfix.error .input-append .add-on
  626. {
  627. color: #b94a48;
  628. background-color: #fce6e6;
  629. border-color: #b94a48;
  630. }
  631. form .clearfix.warning>label,form .clearfix.warning .help-block,form .clearfix.warning .help-inline
  632. {
  633. color: #c09853;
  634. }
  635. form .clearfix.warning input,form .clearfix.warning textarea {
  636. color: #c09853;
  637. border-color: #ccae64;
  638. }
  639. form .clearfix.warning input:focus,form .clearfix.warning textarea:focus
  640. {
  641. border-color: #be9a3f;
  642. -webkit-box-shadow: 0 0 6px #e5d6b1;
  643. -moz-box-shadow: 0 0 6px #e5d6b1;
  644. box-shadow: 0 0 6px #e5d6b1;
  645. }
  646. form .clearfix.warning .input-prepend .add-on,form .clearfix.warning .input-append .add-on
  647. {
  648. color: #c09853;
  649. background-color: #d2b877;
  650. border-color: #c09853;
  651. }
  652. form .clearfix.success>label,form .clearfix.success .help-block,form .clearfix.success .help-inline
  653. {
  654. color: #468847;
  655. }
  656. form .clearfix.success input,form .clearfix.success textarea {
  657. color: #468847;
  658. border-color: #57a957;
  659. }
  660. form .clearfix.success input:focus,form .clearfix.success textarea:focus
  661. {
  662. border-color: #458845;
  663. -webkit-box-shadow: 0 0 6px #9acc9a;
  664. -moz-box-shadow: 0 0 6px #9acc9a;
  665. box-shadow: 0 0 6px #9acc9a;
  666. }
  667. form .clearfix.success .input-prepend .add-on,form .clearfix.success .input-append .add-on
  668. {
  669. color: #468847;
  670. background-color: #bcddbc;
  671. border-color: #468847;
  672. }
  673. .input-mini,input.mini,textarea.mini,select.mini {
  674. width: 60px;
  675. }
  676. .input-small,input.small,textarea.small,select.small {
  677. width: 90px;
  678. }
  679. .input-medium,input.medium,textarea.medium,select.medium {
  680. width: 150px;
  681. }
  682. .input-large,input.large,textarea.large,select.large {
  683. width: 210px;
  684. }
  685. .input-xlarge,input.xlarge,textarea.xlarge,select.xlarge {
  686. width: 270px;
  687. }
  688. .input-xxlarge,input.xxlarge,textarea.xxlarge,select.xxlarge {
  689. width: 530px;
  690. }
  691. textarea.xxlarge {
  692. overflow-y: auto;
  693. }
  694. input.span1,textarea.span1 {
  695. display: inline-block;
  696. float: none;
  697. width: 30px;
  698. margin-left: 0;
  699. }
  700. input.span2,textarea.span2 {
  701. display: inline-block;
  702. float: none;
  703. width: 90px;
  704. margin-left: 0;
  705. }
  706. input.span3,textarea.span3 {
  707. display: inline-block;
  708. float: none;
  709. width: 150px;
  710. margin-left: 0;
  711. }
  712. input.span4,textarea.span4 {
  713. display: inline-block;
  714. float: none;
  715. width: 210px;
  716. margin-left: 0;
  717. }
  718. input.span5,textarea.span5 {
  719. display: inline-block;
  720. float: none;
  721. width: 270px;
  722. margin-left: 0;
  723. }
  724. input.span6,textarea.span6 {
  725. display: inline-block;
  726. float: none;
  727. width: 330px;
  728. margin-left: 0;
  729. }
  730. input.span7,textarea.span7 {
  731. display: inline-block;
  732. float: none;
  733. width: 390px;
  734. margin-left: 0;
  735. }
  736. input.span8,textarea.span8 {
  737. display: inline-block;
  738. float: none;
  739. width: 450px;
  740. margin-left: 0;
  741. }
  742. input.span9,textarea.span9 {
  743. display: inline-block;
  744. float: none;
  745. width: 510px;
  746. margin-left: 0;
  747. }
  748. input.span10,textarea.span10 {
  749. display: inline-block;
  750. float: none;
  751. width: 570px;
  752. margin-left: 0;
  753. }
  754. input.span11,textarea.span11 {
  755. display: inline-block;
  756. float: none;
  757. width: 630px;
  758. margin-left: 0;
  759. }
  760. input.span12,textarea.span12 {
  761. display: inline-block;
  762. float: none;
  763. width: 690px;
  764. margin-left: 0;
  765. }
  766. input.span13,textarea.span13 {
  767. display: inline-block;
  768. float: none;
  769. width: 750px;
  770. margin-left: 0;
  771. }
  772. input.span14,textarea.span14 {
  773. display: inline-block;
  774. float: none;
  775. width: 810px;
  776. margin-left: 0;
  777. }
  778. input.span15,textarea.span15 {
  779. display: inline-block;
  780. float: none;
  781. width: 870px;
  782. margin-left: 0;
  783. }
  784. input.span16,textarea.span16 {
  785. display: inline-block;
  786. float: none;
  787. width: 930px;
  788. margin-left: 0;
  789. }
  790. input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]
  791. {
  792. background-color: #f5f5f5;
  793. border-color: #ddd;
  794. cursor: not-allowed;
  795. }
  796. .actions {
  797. background: #f5f5f5;
  798. margin-top: 18px;
  799. margin-bottom: 18px;
  800. padding: 17px 20px 18px 150px;
  801. border-top: 1px solid #ddd;
  802. -webkit-border-radius: 0 0 3px 3px;
  803. -moz-border-radius: 0 0 3px 3px;
  804. border-radius: 0 0 3px 3px;
  805. }
  806. .actions .secondary-action {
  807. float: right;
  808. }
  809. .actions .secondary-action a {
  810. line-height: 30px;
  811. }
  812. .actions .secondary-action a:hover {
  813. text-decoration: underline;
  814. }
  815. .help-inline,.help-block {
  816. font-size: 13px;
  817. line-height: 18px;
  818. color: #bfbfbf;
  819. }
  820. .help-inline {
  821. padding-left: 5px;
  822. *position: relative;
  823. *top: -5px;
  824. }
  825. .help-block {
  826. display: block;
  827. max-width: 600px;
  828. }
  829. .inline-inputs {
  830. color: #808080;
  831. }
  832. .inline-inputs span {
  833. padding: 0 2px 0 1px;
  834. }
  835. .input-prepend input,.input-append input {
  836. -webkit-border-radius: 0 3px 3px 0;
  837. -moz-border-radius: 0 3px 3px 0;
  838. border-radius: 0 3px 3px 0;
  839. }
  840. .input-prepend .add-on,.input-append .add-on {
  841. position: relative;
  842. background: #f5f5f5;
  843. border: 1px solid #ccc;
  844. z-index: 2;
  845. float: left;
  846. display: block;
  847. width: auto;
  848. min-width: 16px;
  849. height: 18px;
  850. padding: 4px 4px 4px 5px;
  851. margin-right: -1px;
  852. font-weight: normal;
  853. line-height: 18px;
  854. color: #bfbfbf;
  855. text-align: center;
  856. text-shadow: 0 1px 0 #ffffff;
  857. -webkit-border-radius: 3px 0 0 3px;
  858. -moz-border-radius: 3px 0 0 3px;
  859. border-radius: 3px 0 0 3px;
  860. }
  861. .input-prepend .active,.input-append .active {
  862. background: #a9dba9;
  863. border-color: #46a546;
  864. }
  865. .input-prepend .add-on {
  866. *margin-top: 1px;
  867. }
  868. .input-append input {
  869. float: left;
  870. -webkit-border-radius: 3px 0 0 3px;
  871. -moz-border-radius: 3px 0 0 3px;
  872. border-radius: 3px 0 0 3px;
  873. }
  874. .input-append .add-on {
  875. -webkit-border-radius: 0 3px 3px 0;
  876. -moz-border-radius: 0 3px 3px 0;
  877. border-radius: 0 3px 3px 0;
  878. margin-right: 0;
  879. margin-left: -1px;
  880. }
  881. .inputs-list {
  882. margin: 0 0 5px;
  883. width: 100%;
  884. }
  885. .inputs-list li {
  886. display: block;
  887. padding: 0;
  888. width: 100%;
  889. }
  890. .inputs-list label {
  891. display: block;
  892. float: none;
  893. width: auto;
  894. padding: 0;
  895. margin-left: 20px;
  896. line-height: 18px;
  897. text-align: left;
  898. white-space: normal;
  899. }
  900. .inputs-list label strong {
  901. color: #808080;
  902. }
  903. .inputs-list label small {
  904. font-size: 11px;
  905. font-weight: normal;
  906. }
  907. .inputs-list .inputs-list {
  908. margin-left: 25px;
  909. margin-bottom: 10px;
  910. padding-top: 0;
  911. }
  912. .inputs-list:first-child {
  913. padding-top: 6px;
  914. }
  915. .inputs-list li+li {
  916. padding-top: 2px;
  917. }
  918. .inputs-list input[type=radio],.inputs-list input[type=checkbox] {
  919. margin-bottom: 0;
  920. margin-left: -20px;
  921. float: left;
  922. }
  923. .form-stacked {
  924. padding-left: 20px;
  925. }
  926. .form-stacked fieldset {
  927. padding-top: 9px;
  928. }
  929. .form-stacked legend {
  930. padding-left: 0;
  931. }
  932. .form-stacked label {
  933. display: block;
  934. float: none;
  935. width: auto;
  936. font-weight: bold;
  937. text-align: left;
  938. line-height: 20px;
  939. padding-top: 0;
  940. }
  941. .form-stacked .clearfix {
  942. margin-bottom: 9px;
  943. }
  944. .form-stacked .clearfix div.input {
  945. margin-left: 0;
  946. }
  947. .form-stacked .inputs-list {
  948. margin-bottom: 0;
  949. }
  950. .form-stacked .inputs-list li {
  951. padding-top: 0;
  952. }
  953. .form-stacked .inputs-list li label {
  954. font-weight: normal;
  955. padding-top: 0;
  956. }
  957. .form-stacked div.clearfix.error {
  958. padding-top: 10px;
  959. padding-bottom: 10px;
  960. padding-left: 10px;
  961. margin-top: 0;
  962. margin-left: -10px;
  963. }
  964. .form-stacked .actions {
  965. margin-left: -20px;
  966. padding-left: 20px;
  967. }
  968. table {
  969. width: 100%;
  970. margin-bottom: 18px;
  971. padding: 0;
  972. font-size: 13px;
  973. border-collapse: collapse;
  974. }
  975. table th,table td {
  976. padding: 10px 10px 9px;
  977. line-height: 18px;
  978. text-align: left;
  979. }
  980. table th {
  981. padding-top: 9px;
  982. font-weight: bold;
  983. vertical-align: middle;
  984. }
  985. table td {
  986. vertical-align: top;
  987. border-top: 1px solid #ddd;
  988. }
  989. table tbody th {
  990. border-top: 1px solid #ddd;
  991. vertical-align: top;
  992. }
  993. .condensed-table th,.condensed-table td {
  994. padding: 5px 5px 4px;
  995. }
  996. .bordered-table {
  997. border: 1px solid #ddd;
  998. border-collapse: separate;
  999. *border-collapse: collapse;
  1000. -webkit-border-radius: 4px;
  1001. -moz-border-radius: 4px;
  1002. border-radius: 4px;
  1003. }
  1004. .bordered-table th+th,.bordered-table td+td,.bordered-table th+td {
  1005. border-left: 1px solid #ddd;
  1006. }
  1007. .bordered-table thead tr:first-child th:first-child,.bordered-table tbody tr:first-child td:first-child
  1008. {
  1009. -webkit-border-radius: 4px 0 0 0;
  1010. -moz-border-radius: 4px 0 0 0;
  1011. border-radius: 4px 0 0 0;
  1012. }
  1013. .bordered-table thead tr:first-child th:last-child,.bordered-table tbody tr:first-child td:last-child
  1014. {
  1015. -webkit-border-radius: 0 4px 0 0;
  1016. -moz-border-radius: 0 4px 0 0;
  1017. border-radius: 0 4px 0 0;
  1018. }
  1019. .bordered-table tbody tr:last-child td:first-child {
  1020. -webkit-border-radius: 0 0 0 4px;
  1021. -moz-border-radius: 0 0 0 4px;
  1022. border-radius: 0 0 0 4px;
  1023. }
  1024. .bordered-table tbody tr:last-child td:last-child {
  1025. -webkit-border-radius: 0 0 4px 0;
  1026. -moz-border-radius: 0 0 4px 0;
  1027. border-radius: 0 0 4px 0;
  1028. }
  1029. table .span1 {
  1030. width: 20px;
  1031. }
  1032. table .span2 {
  1033. width: 60px;
  1034. }
  1035. table .span3 {
  1036. width: 100px;
  1037. }
  1038. table .span4 {
  1039. width: 140px;
  1040. }
  1041. table .span5 {
  1042. width: 180px;
  1043. }
  1044. table .span6 {
  1045. width: 220px;
  1046. }
  1047. table .span7 {
  1048. width: 260px;
  1049. }
  1050. table .span8 {
  1051. width: 300px;
  1052. }
  1053. table .span9 {
  1054. width: 340px;
  1055. }
  1056. table .span10 {
  1057. width: 380px;
  1058. }
  1059. table .span11 {
  1060. width: 420px;
  1061. }
  1062. table .span12 {
  1063. width: 460px;
  1064. }
  1065. table .span13 {
  1066. width: 500px;
  1067. }
  1068. table .span14 {
  1069. width: 540px;
  1070. }
  1071. table .span15 {
  1072. width: 580px;
  1073. }
  1074. table .span16 {
  1075. width: 620px;
  1076. }
  1077. .zebra-striped tbody tr:nth-child(odd) td,.zebra-striped tbody tr:nth-child(odd) th
  1078. {
  1079. background-color: #f9f9f9;
  1080. }
  1081. .zebra-striped tbody tr:hover td,.zebra-striped tbody tr:hover th {
  1082. background-color: #f5f5f5;
  1083. }
  1084. table .header {
  1085. cursor: pointer;
  1086. }
  1087. table .header:after {
  1088. content: "";
  1089. float: right;
  1090. margin-top: 7px;
  1091. border-width: 0 4px 4px;
  1092. border-style: solid;
  1093. border-color: #000 transparent;
  1094. visibility: hidden;
  1095. }
  1096. table .headerSortUp,table .headerSortDown {
  1097. background-color: rgba(141, 192, 219, 0.25);
  1098. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1099. }
  1100. table .header:hover:after {
  1101. visibility: visible;
  1102. }
  1103. table .headerSortDown:after,table .headerSortDown:hover:after {
  1104. visibility: visible;
  1105. filter: alpha(opacity = 60);
  1106. -khtml-opacity: 0.6;
  1107. -moz-opacity: 0.6;
  1108. opacity: 0.6;
  1109. }
  1110. table .headerSortUp:after {
  1111. border-bottom: none;
  1112. border-left: 4px solid transparent;
  1113. border-right: 4px solid transparent;
  1114. border-top: 4px solid #000;
  1115. visibility: visible;
  1116. -webkit-box-shadow: none;
  1117. -moz-box-shadow: none;
  1118. box-shadow: none;
  1119. filter: alpha(opacity = 60);
  1120. -khtml-opacity: 0.6;
  1121. -moz-opacity: 0.6;
  1122. opacity: 0.6;
  1123. }
  1124. table .blue {
  1125. color: #049cdb;
  1126. border-bottom-color: #049cdb;
  1127. }
  1128. table .headerSortUp.blue,table .headerSortDown.blue {
  1129. background-color: #ade6fe;
  1130. }
  1131. table .green {
  1132. color: #46a546;
  1133. border-bottom-color: #46a546;
  1134. }
  1135. table .headerSortUp.green,table .headerSortDown.green {
  1136. background-color: #cdeacd;
  1137. }
  1138. table .red {
  1139. color: #9d261d;
  1140. border-bottom-color: #9d261d;
  1141. }
  1142. table .headerSortUp.red,table .headerSortDown.red {
  1143. background-color: #f4c8c5;
  1144. }
  1145. table .yellow {
  1146. color: #ffc40d;
  1147. border-bottom-color: #ffc40d;
  1148. }
  1149. table .headerSortUp.yellow,table .headerSortDown.yellow {
  1150. background-color: #fff6d9;
  1151. }
  1152. table .orange {
  1153. color: #f89406;
  1154. border-bottom-color: #f89406;
  1155. }
  1156. table .headerSortUp.orange,table .headerSortDown.orange {
  1157. background-color: #fee9cc;
  1158. }
  1159. table .purple {
  1160. color: #7a43b6;
  1161. border-bottom-color: #7a43b6;
  1162. }
  1163. table .headerSortUp.purple,table .headerSortDown.purple {
  1164. background-color: #e2d5f0;
  1165. }
  1166. .topbar {
  1167. height: 40px;
  1168. position: fixed;
  1169. top: 0;
  1170. left: 0;
  1171. right: 0;
  1172. z-index: 10000;
  1173. overflow: visible;
  1174. }
  1175. .topbar a {
  1176. color: #bfbfbf;
  1177. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1178. }
  1179. .topbar h3 a:hover,.topbar .brand:hover,.topbar ul .active>a {
  1180. background-color: #333;
  1181. background-color: rgba(255, 255, 255, 0.05);
  1182. color: #ffffff;
  1183. text-decoration: none;
  1184. }
  1185. .topbar h3 {
  1186. position: relative;
  1187. }
  1188. .topbar h3 a,.topbar .brand {
  1189. float: left;
  1190. display: block;
  1191. padding: 8px 20px 12px;
  1192. margin-left: -20px;
  1193. color: #ffffff;
  1194. font-size: 20px;
  1195. font-weight: 200;
  1196. line-height: 1;
  1197. }
  1198. .topbar p {
  1199. margin: 0;
  1200. line-height: 40px;
  1201. }
  1202. .topbar p a:hover {
  1203. background-color: transparent;
  1204. color: #ffffff;
  1205. }
  1206. .topbar form {
  1207. float: left;
  1208. margin: 5px 0 0 0;
  1209. position: relative;
  1210. filter: alpha(opacity = 100);
  1211. -khtml-opacity: 1;
  1212. -moz-opacity: 1;
  1213. opacity: 1;
  1214. }
  1215. .topbar form.pull-right {
  1216. float: right;
  1217. }
  1218. .topbar input {
  1219. background-color: #444;
  1220. background-color: rgba(255, 255, 255, 0.3);
  1221. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1222. font-size: normal;
  1223. font-weight: 13px;
  1224. line-height: 1;
  1225. padding: 4px 9px;
  1226. color: #ffffff;
  1227. color: rgba(255, 255, 255, 0.75);
  1228. border: 1px solid #111;
  1229. -webkit-border-radius: 4px;
  1230. -moz-border-radius: 4px;
  1231. border-radius: 4px;
  1232. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px
  1233. rgba(255, 255, 255, 0.25);
  1234. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px
  1235. rgba(255, 255, 255, 0.25);
  1236. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px
  1237. rgba(255, 255, 255, 0.25);
  1238. -webkit-transition: none;
  1239. -moz-transition: none;
  1240. -ms-transition: none;
  1241. -o-transition: none;
  1242. transition: none;
  1243. }
  1244. .topbar input:-moz-placeholder {
  1245. color: #e6e6e6;
  1246. }
  1247. .topbar input::-webkit-input-placeholder {
  1248. color: #e6e6e6;
  1249. }
  1250. .topbar input:hover {
  1251. background-color: #bfbfbf;
  1252. background-color: rgba(255, 255, 255, 0.5);
  1253. color: #ffffff;
  1254. }
  1255. .topbar input:focus,.topbar input.focused {
  1256. outline: 0;
  1257. background-color: #ffffff;
  1258. color: #404040;
  1259. text-shadow: 0 1px 0 #ffffff;
  1260. border: 0;
  1261. padding: 5px 10px;
  1262. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  1263. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  1264. box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  1265. }
  1266. .topbar-inner,.topbar .fill {
  1267. background-color: #222;
  1268. background-color: #222222;
  1269. background-repeat: repeat-x;
  1270. background-image: -khtml-gradient(linear, left top, left bottom, from(#333333),
  1271. to(#222222) );
  1272. background-image: -moz-linear-gradient(top, #333333, #222222);
  1273. background-image: -ms-linear-gradient(top, #333333, #222222);
  1274. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333),
  1275. color-stop(100%, #222222) );
  1276. background-image: -webkit-linear-gradient(top, #333333, #222222);
  1277. background-image: -o-linear-gradient(top, #333333, #222222);
  1278. background-image: linear-gradient(top, #333333, #222222);
  1279. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1280. '#333333', endColorstr = '#222222', GradientType = 0 );
  1281. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0
  1282. rgba(0, 0, 0, 0.1);
  1283. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0
  1284. rgba(0, 0, 0, 0.1);
  1285. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0
  1286. rgba(0, 0, 0, 0.1);
  1287. }
  1288. .topbar div>ul,.nav {
  1289. display: block;
  1290. float: left;
  1291. margin: 0 10px 0 0;
  1292. position: relative;
  1293. left: 0;
  1294. }
  1295. .topbar div>ul>li,.nav>li {
  1296. display: block;
  1297. float: left;
  1298. }
  1299. .topbar div>ul a,.nav a {
  1300. display: block;
  1301. float: none;
  1302. padding: 10px 10px 11px;
  1303. line-height: 19px;
  1304. text-decoration: none;
  1305. }
  1306. .topbar div>ul a:hover,.nav a:hover {
  1307. color: #ffffff;
  1308. text-decoration: none;
  1309. }
  1310. .topbar div>ul .active>a,.nav .active>a {
  1311. background-color: #222;
  1312. background-color: rgba(0, 0, 0, 0.5);
  1313. }
  1314. .topbar div>ul.secondary-nav,.nav.secondary-nav {
  1315. float: right;
  1316. margin-left: 10px;
  1317. margin-right: 0;
  1318. }
  1319. .topbar div>ul.secondary-nav .menu-dropdown,.nav.secondary-nav .menu-dropdown,.topbar div>ul.secondary-nav .dropdown-menu,.nav.secondary-nav .dropdown-menu
  1320. {
  1321. right: 0;
  1322. border: 0;
  1323. }
  1324. .topbar div>ul a.menu:hover,.nav a.menu:hover,.topbar div>ul li.open .menu,.nav li.open .menu,.topbar div>ul .dropdown-toggle:hover,.nav .dropdown-toggle:hover,.topbar div>ul .dropdown.open .dropdown-toggle,.nav .dropdown.open .dropdown-toggle
  1325. {
  1326. background: #444;
  1327. background: rgba(255, 255, 255, 0.05);
  1328. }
  1329. .topbar div>ul .menu-dropdown,.nav .menu-dropdown,.topbar div>ul .dropdown-menu,.nav .dropdown-menu
  1330. {
  1331. background-color: #333;
  1332. }
  1333. .topbar div>ul .menu-dropdown a.menu,.nav .menu-dropdown a.menu,.topbar div>ul .dropdown-menu a.menu,.nav .dropdown-menu a.menu,.topbar div>ul .menu-dropdown .dropdown-toggle,.nav .menu-dropdown .dropdown-toggle,.topbar div>ul .dropdown-menu .dropdown-toggle,.nav .dropdown-menu .dropdown-toggle
  1334. {
  1335. color: #ffffff;
  1336. }
  1337. .topbar div>ul .menu-dropdown a.menu.open,.nav .menu-dropdown a.menu.open,.topbar div>ul .dropdown-menu a.menu.open,.nav .dropdown-menu a.menu.open,.topbar div>ul .menu-dropdown .dropdown-toggle.open,.nav .menu-dropdown .dropdown-toggle.open,.topbar div>ul .dropdown-menu .dropdown-toggle.open,.nav .dropdown-menu .dropdown-toggle.open
  1338. {
  1339. background: #444;
  1340. background: rgba(255, 255, 255, 0.05);
  1341. }
  1342. .topbar div>ul .menu-dropdown li a,.nav .menu-dropdown li a,.topbar div>ul .dropdown-menu li a,.nav .dropdown-menu li a
  1343. {
  1344. color: #999;
  1345. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  1346. }
  1347. .topbar div>ul .menu-dropdown li a:hover,.nav .menu-dropdown li a:hover,.topbar div>ul .dropdown-menu li a:hover,.nav .dropdown-menu li a:hover
  1348. {
  1349. background-color: #191919;
  1350. background-repeat: repeat-x;
  1351. background-image: -khtml-gradient(linear, left top, left bottom, from(#292929),
  1352. to(#191919) );
  1353. background-image: -moz-linear-gradient(top, #292929, #191919);
  1354. background-image: -ms-linear-gradient(top, #292929, #191919);
  1355. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929),
  1356. color-stop(100%, #191919) );
  1357. background-image: -webkit-linear-gradient(top, #292929, #191919);
  1358. background-image: -o-linear-gradient(top, #292929, #191919);
  1359. background-image: linear-gradient(top, #292929, #191919);
  1360. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1361. '#292929', endColorstr = '#191919', GradientType = 0 );
  1362. color: #ffffff;
  1363. }
  1364. .topbar div>ul .menu-dropdown .active a,.nav .menu-dropdown .active a,.topbar div>ul .dropdown-menu .active a,.nav .dropdown-menu .active a
  1365. {
  1366. color: #ffffff;
  1367. }
  1368. .topbar div>ul .menu-dropdown .divider,.nav .menu-dropdown .divider,.topbar div>ul .dropdown-menu .divider,.nav .dropdown-menu .divider
  1369. {
  1370. background-color: #222;
  1371. border-color: #444;
  1372. }
  1373. .topbar ul .menu-dropdown li a,.topbar ul .dropdown-menu li a {
  1374. padding: 4px 15px;
  1375. }
  1376. li.menu,.dropdown {
  1377. position: relative;
  1378. }
  1379. a.menu:after,.dropdown-toggle:after {
  1380. width: 0;
  1381. height: 0;
  1382. display: inline-block;
  1383. content: "↓";
  1384. text-indent: -99999px;
  1385. vertical-align: top;
  1386. margin-top: 8px;
  1387. margin-left: 4px;
  1388. border-left: 4px solid transparent;
  1389. border-right: 4px solid transparent;
  1390. border-top: 4px solid #ffffff;
  1391. filter: alpha(opacity = 50);
  1392. -khtml-opacity: 0.5;
  1393. -moz-opacity: 0.5;
  1394. opacity: 0.5;
  1395. }
  1396. .menu-dropdown,.dropdown-menu {
  1397. background-color: #ffffff;
  1398. float: left;
  1399. display: none;
  1400. position: absolute;
  1401. top: 40px;
  1402. z-index: 900;
  1403. min-width: 160px;
  1404. max-width: 220px;
  1405. _width: 160px;
  1406. margin-left: 0;
  1407. margin-right: 0;
  1408. padding: 6px 0;
  1409. zoom: 1;
  1410. border-color: #999;
  1411. border-color: rgba(0, 0, 0, 0.2);
  1412. border-style: solid;
  1413. border-width: 0 1px 1px;
  1414. -webkit-border-radius: 0 0 6px 6px;
  1415. -moz-border-radius: 0 0 6px 6px;
  1416. border-radius: 0 0 6px 6px;
  1417. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  1418. -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  1419. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  1420. -webkit-background-clip: padding-box;
  1421. -moz-background-clip: padding-box;
  1422. background-clip: padding-box;
  1423. }
  1424. .menu-dropdown li,.dropdown-menu li {
  1425. float: none;
  1426. display: block;
  1427. background-color: none;
  1428. }
  1429. .menu-dropdown .divider,.dropdown-menu .divider {
  1430. height: 1px;
  1431. margin: 5px 0;
  1432. overflow: hidden;
  1433. background-color: #eee;
  1434. border-bottom: 1px solid #ffffff;
  1435. }
  1436. .topbar .dropdown-menu a,.dropdown-menu a {
  1437. display: block;
  1438. padding: 4px 15px;
  1439. clear: both;
  1440. font-weight: normal;
  1441. line-height: 18px;
  1442. color: #808080;
  1443. text-shadow: 0 1px 0 #ffffff;
  1444. }
  1445. .topbar .dropdown-menu a:hover,.dropdown-menu a:hover,.topbar .dropdown-menu a.hover,.dropdown-menu a.hover
  1446. {
  1447. background-color: #dddddd;
  1448. background-repeat: repeat-x;
  1449. background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee),
  1450. to(#dddddd) );
  1451. background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  1452. background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
  1453. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee),
  1454. color-stop(100%, #dddddd) );
  1455. background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  1456. background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  1457. background-image: linear-gradient(top, #eeeeee, #dddddd);
  1458. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1459. '#eeeeee', endColorstr = '#dddddd', GradientType = 0 );
  1460. color: #404040;
  1461. text-decoration: none;
  1462. -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px
  1463. rgba(0, 0, 0, 0.025);
  1464. -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px
  1465. rgba(0, 0, 0, 0.025);
  1466. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px
  1467. rgba(0, 0, 0, 0.025);
  1468. }
  1469. .open .menu,.dropdown.open .menu,.open .dropdown-toggle,.dropdown.open .dropdown-toggle
  1470. {
  1471. color: #ffffff;
  1472. background: #ccc;
  1473. background: rgba(0, 0, 0, 0.3);
  1474. }
  1475. .open .menu-dropdown,.dropdown.open .menu-dropdown,.open .dropdown-menu,.dropdown.open .dropdown-menu
  1476. {
  1477. display: block;
  1478. }
  1479. .tabs,.pills {
  1480. margin: 0 0 18px;
  1481. padding: 0;
  1482. list-style: none;
  1483. zoom: 1;
  1484. }
  1485. .tabs:before,.pills:before,.tabs:after,.pills:after {
  1486. display: table;
  1487. content: "";
  1488. zoom: 1;
  1489. }
  1490. .tabs:after,.pills:after {
  1491. clear: both;
  1492. }
  1493. .tabs>li,.pills>li {
  1494. float: left;
  1495. }
  1496. .tabs>li>a,.pills>li>a {
  1497. display: block;
  1498. }
  1499. .tabs {
  1500. border-color: #ddd;
  1501. border-style: solid;
  1502. border-width: 0 0 1px;
  1503. }
  1504. .tabs>li {
  1505. position: relative;
  1506. margin-bottom: -1px;
  1507. }
  1508. .tabs>li>a {
  1509. padding: 0 15px;
  1510. margin-right: 2px;
  1511. line-height: 34px;
  1512. border: 1px solid transparent;
  1513. -webkit-border-radius: 4px 4px 0 0;
  1514. -moz-border-radius: 4px 4px 0 0;
  1515. border-radius: 4px 4px 0 0;
  1516. }
  1517. .tabs>li>a:hover {
  1518. text-decoration: none;
  1519. background-color: #eee;
  1520. border-color: #eee #eee #ddd;
  1521. }
  1522. .tabs .active>a,.tabs .active>a:hover {
  1523. color: #808080;
  1524. background-color: #ffffff;
  1525. border: 1px solid #ddd;
  1526. border-bottom-color: transparent;
  1527. cursor: default;
  1528. }
  1529. .tabs .menu-dropdown,.tabs .dropdown-menu {
  1530. top: 35px;
  1531. border-width: 1px;
  1532. -webkit-border-radius: 0 6px 6px 6px;
  1533. -moz-border-radius: 0 6px 6px 6px;
  1534. border-radius: 0 6px 6px 6px;
  1535. }
  1536. .tabs a.menu:after,.tabs .dropdown-toggle:after {
  1537. border-top-color: #999;
  1538. margin-top: 15px;
  1539. margin-left: 5px;
  1540. }
  1541. .tabs li.open.menu .menu,.tabs .open.dropdown .dropdown-toggle {
  1542. border-color: #999;
  1543. }
  1544. .tabs li.open a.menu:after,.tabs .dropdown.open .dropdown-toggle:after {
  1545. border-top-color: #555;
  1546. }
  1547. .pills a {
  1548. margin: 5px 3px 5px 0;
  1549. padding: 0 15px;
  1550. line-height: 30px;
  1551. text-shadow: 0 1px 1px #ffffff;
  1552. -webkit-border-radius: 15px;
  1553. -moz-border-radius: 15px;
  1554. border-radius: 15px;
  1555. }
  1556. .pills a:hover {
  1557. color: #ffffff;
  1558. text-decoration: none;
  1559. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  1560. background-color: #00438a;
  1561. }
  1562. .pills .active a {
  1563. color: #ffffff;
  1564. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  1565. background-color: #0069d6;
  1566. }
  1567. .pills-vertical>li {
  1568. float: none;
  1569. }
  1570. .tab-content>.tab-pane,.pill-content>.pill-pane,.tab-content>div,.pill-content>div
  1571. {
  1572. display: none;
  1573. }
  1574. .tab-content>.active,.pill-content>.active {
  1575. display: block;
  1576. }
  1577. .breadcrumb {
  1578. padding: 7px 14px;
  1579. margin: 0 0 18px;
  1580. background-color: #f5f5f5;
  1581. background-repeat: repeat-x;
  1582. background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff),
  1583. to(#f5f5f5) );
  1584. background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  1585. background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  1586. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff),
  1587. color-stop(100%, #f5f5f5) );
  1588. background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  1589. background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  1590. background-image: linear-gradient(top, #ffffff, #f5f5f5);
  1591. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1592. '#ffffff', endColorstr = '#f5f5f5', GradientType = 0 );
  1593. border: 1px solid #ddd;
  1594. -webkit-border-radius: 3px;
  1595. -moz-border-radius: 3px;
  1596. border-radius: 3px;
  1597. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  1598. -moz-box-shadow: inset 0 1px 0 #ffffff;
  1599. box-shadow: inset 0 1px 0 #ffffff;
  1600. }
  1601. .breadcrumb li {
  1602. display: inline;
  1603. text-shadow: 0 1px 0 #ffffff;
  1604. }
  1605. .breadcrumb .divider {
  1606. padding: 0 5px;
  1607. color: #bfbfbf;
  1608. }
  1609. .breadcrumb .active a {
  1610. color: #404040;
  1611. }
  1612. .hero-unit {
  1613. background-color: #f5f5f5;
  1614. margin-bottom: 30px;
  1615. padding: 60px;
  1616. -webkit-border-radius: 6px;
  1617. -moz-border-radius: 6px;
  1618. border-radius: 6px;
  1619. }
  1620. .hero-unit h1 {
  1621. margin-bottom: 0;
  1622. font-size: 60px;
  1623. line-height: 1;
  1624. letter-spacing: -1px;
  1625. }
  1626. .hero-unit p {
  1627. font-size: 18px;
  1628. font-weight: 200;
  1629. line-height: 27px;
  1630. }
  1631. footer {
  1632. margin-top: 17px;
  1633. padding-top: 17px;
  1634. border-top: 1px solid #eee;
  1635. }
  1636. .page-header {
  1637. margin-bottom: 17px;
  1638. border-bottom: 1px solid #ddd;
  1639. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  1640. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  1641. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  1642. }
  1643. .page-header h1 {
  1644. margin-bottom: 8px;
  1645. }
  1646. .btn.danger,.alert-message.danger,.btn.danger:hover,.alert-message.danger:hover,.btn.error,.alert-message.error,.btn.error:hover,.alert-message.error:hover,.btn.success,.alert-message.success,.btn.success:hover,.alert-message.success:hover,.btn.info,.alert-message.info,.btn.info:hover,.alert-message.info:hover
  1647. {
  1648. color: #ffffff;
  1649. }
  1650. .btn .close,.alert-message .close {
  1651. font-family: Arial, sans-serif;
  1652. line-height: 18px;
  1653. }
  1654. .btn.danger,.alert-message.danger,.btn.error,.alert-message.error {
  1655. background-color: #c43c35;
  1656. background-repeat: repeat-x;
  1657. background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b),
  1658. to(#c43c35) );
  1659. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  1660. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  1661. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b),
  1662. color-stop(100%, #c43c35) );
  1663. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  1664. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  1665. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  1666. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1667. '#ee5f5b', endColorstr = '#c43c35', GradientType = 0 );
  1668. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1669. border-color: #c43c35 #c43c35 #882a25;
  1670. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1671. }
  1672. .btn.success,.alert-message.success {
  1673. background-color: #57a957;
  1674. background-repeat: repeat-x;
  1675. background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462),
  1676. to(#57a957) );
  1677. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  1678. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  1679. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462),
  1680. color-stop(100%, #57a957) );
  1681. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  1682. background-image: -o-linear-gradient(top, #62c462, #57a957);
  1683. background-image: linear-gradient(top, #62c462, #57a957);
  1684. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1685. '#62c462', endColorstr = '#57a957', GradientType = 0 );
  1686. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1687. border-color: #57a957 #57a957 #3d773d;
  1688. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1689. }
  1690. .btn.info,.alert-message.info {
  1691. background-color: #339bb9;
  1692. background-repeat: repeat-x;
  1693. background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de),
  1694. to(#339bb9) );
  1695. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  1696. background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  1697. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de),
  1698. color-stop(100%, #339bb9) );
  1699. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  1700. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  1701. background-image: linear-gradient(top, #5bc0de, #339bb9);
  1702. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1703. '#5bc0de', endColorstr = '#339bb9', GradientType = 0 );
  1704. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1705. border-color: #339bb9 #339bb9 #22697d;
  1706. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1707. }
  1708. .btn {
  1709. cursor: pointer;
  1710. display: inline-block;
  1711. background-color: #e6e6e6;
  1712. background-repeat: no-repeat;
  1713. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
  1714. color-stop(25%, #ffffff), to(#e6e6e6) );
  1715. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1716. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1717. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1718. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1719. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1720. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1721. '#ffffff', endColorstr = '#e6e6e6', GradientType = 0 );
  1722. padding: 5px 14px 6px;
  1723. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1724. color: #333;
  1725. font-size: 13px;
  1726. line-height: normal;
  1727. border: 1px solid #ccc;
  1728. border-bottom-color: #bbb;
  1729. -webkit-border-radius: 4px;
  1730. -moz-border-radius: 4px;
  1731. border-radius: 4px;
  1732. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px
  1733. rgba(0, 0, 0, 0.05);
  1734. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px
  1735. rgba(0, 0, 0, 0.05);
  1736. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px
  1737. rgba(0, 0, 0, 0.05);
  1738. -webkit-transition: 0.1s linear all;
  1739. -moz-transition: 0.1s linear all;
  1740. -ms-transition: 0.1s linear all;
  1741. -o-transition: 0.1s linear all;
  1742. transition: 0.1s linear all;
  1743. }
  1744. .btn:hover {
  1745. background-position: 0 -15px;
  1746. color: #333;
  1747. text-decoration: none;
  1748. }
  1749. .btn:focus {
  1750. outline: 1px dotted #666;
  1751. }
  1752. .btn.primary {
  1753. color: #ffffff;
  1754. background-color: #0064cd;
  1755. background-repeat: repeat-x;
  1756. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb),
  1757. to(#0064cd) );
  1758. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1759. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1760. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb),
  1761. color-stop(100%, #0064cd) );
  1762. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1763. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1764. background-image: linear-gradient(top, #049cdb, #0064cd);
  1765. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1766. '#049cdb', endColorstr = '#0064cd', GradientType = 0 );
  1767. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1768. border-color: #0064cd #0064cd #003f81;
  1769. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1770. }
  1771. .btn.active,.btn:active {
  1772. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px
  1773. rgba(0, 0, 0, 0.05);
  1774. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px
  1775. rgba(0, 0, 0, 0.05);
  1776. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px
  1777. rgba(0, 0, 0, 0.05);
  1778. }
  1779. .btn.disabled {
  1780. cursor: default;
  1781. background-image: none;
  1782. filter: progid : DXImageTransform.Microsoft.gradient ( enabled = false
  1783. );
  1784. filter: alpha(opacity = 65);
  1785. -khtml-opacity: 0.65;
  1786. -moz-opacity: 0.65;
  1787. opacity: 0.65;
  1788. -webkit-box-shadow: none;
  1789. -moz-box-shadow: none;
  1790. box-shadow: none;
  1791. }
  1792. .btn[disabled] {
  1793. cursor: default;
  1794. background-image: none;
  1795. filter: progid : DXImageTransform.Microsoft.gradient ( enabled = false
  1796. );
  1797. filter: alpha(opacity = 65);
  1798. -khtml-opacity: 0.65;
  1799. -moz-opacity: 0.65;
  1800. opacity: 0.65;
  1801. -webkit-box-shadow: none;
  1802. -moz-box-shadow: none;
  1803. box-shadow: none;
  1804. }
  1805. .btn.large {
  1806. font-size: 15px;
  1807. line-height: normal;
  1808. padding: 9px 14px 9px;
  1809. -webkit-border-radius: 6px;
  1810. -moz-border-radius: 6px;
  1811. border-radius: 6px;
  1812. }
  1813. .btn.small {
  1814. padding: 7px 9px 7px;
  1815. font-size: 11px;
  1816. }
  1817. :root .alert-message,:root .btn {
  1818. border-radius: 0 \0;
  1819. }
  1820. button.btn::-moz-focus-inner,input[type=submit].btn::-moz-focus-inner {
  1821. padding: 0;
  1822. border: 0;
  1823. }
  1824. .close {
  1825. float: right;
  1826. color: #000000;
  1827. font-size: 20px;
  1828. font-weight: bold;
  1829. line-height: 13.5px;
  1830. text-shadow: 0 1px 0 #ffffff;
  1831. filter: alpha(opacity = 25);
  1832. -khtml-opacity: 0.25;
  1833. -moz-opacity: 0.25;
  1834. opacity: 0.25;
  1835. }
  1836. .close:hover {
  1837. color: #000000;
  1838. text-decoration: none;
  1839. filter: alpha(opacity = 40);
  1840. -khtml-opacity: 0.4;
  1841. -moz-opacity: 0.4;
  1842. opacity: 0.4;
  1843. }
  1844. .alert-message {
  1845. position: relative;
  1846. padding: 7px 15px;
  1847. margin-bottom: 18px;
  1848. color: #404040;
  1849. background-color: #eedc94;
  1850. background-repeat: repeat-x;
  1851. background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
  1852. to(#eedc94) );
  1853. background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  1854. background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  1855. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1),
  1856. color-stop(100%, #eedc94) );
  1857. background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  1858. background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  1859. background-image: linear-gradient(top, #fceec1, #eedc94);
  1860. filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
  1861. '#fceec1', endColorstr = '#eedc94', GradientType = 0 );
  1862. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1863. border-color: #eedc94 #eedc94 #e4c652;
  1864. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1865. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  1866. border-width: 1px;
  1867. border-style: solid;
  1868. -webkit-border-radius: 4px;
  1869. -moz-border-radius: 4px;
  1870. border-radius: 4px;
  1871. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1872. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1873. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1874. }
  1875. .alert-message .close {
  1876. margin-top: 1px;
  1877. *margin-top: 0;
  1878. }
  1879. .alert-message a {
  1880. font-weight: bold;
  1881. color: #404040;
  1882. }
  1883. .alert-message.danger p a,.alert-message.error p a,.alert-message.success p a,.alert-message.info p a
  1884. {
  1885. color: #ffffff;
  1886. }
  1887. .alert-message h5 {
  1888. line-height: 18px;
  1889. }
  1890. .alert-message p {
  1891. margin-bottom: 0;
  1892. }
  1893. .alert-message div {
  1894. margin-top: 5px;
  1895. margin-bottom: 2px;
  1896. line-height: 28px;
  1897. }
  1898. .alert-message .btn {
  1899. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  1900. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  1901. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  1902. }
  1903. .alert-message.block-message {
  1904. background-image: none;
  1905. background-color: #fdf5d9;
  1906. filter: progid : DXImageTransform.Microsoft.gradient ( enabled = false
  1907. );
  1908. padding: 14px;
  1909. border-color: #fceec1;
  1910. -webkit-box-shadow: none;
  1911. -moz-box-shadow: none;
  1912. box-shadow: none;
  1913. }
  1914. .alert-message.block-message ul,.alert-message.block-message p {
  1915. margin-right: 30px;
  1916. }
  1917. .alert-message.block-message ul {
  1918. margin-bottom: 0;
  1919. }
  1920. .alert-message.block-message li {
  1921. color: #404040;
  1922. }
  1923. .alert-message.block-message .alert-actions {
  1924. margin-top: 5px;
  1925. }
  1926. .alert-message.block-message.error,.alert-message.block-message.success,.alert-message.block-message.info
  1927. {
  1928. color: #404040;
  1929. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  1930. }
  1931. .alert-message.block-message.error {
  1932. background-color: #fddfde;
  1933. border-color: #fbc7c6;
  1934. }
  1935. .alert-message.block-message.success {
  1936. background-color: #d1eed1;
  1937. border-color: #bfe7bf;
  1938. }
  1939. .alert-message.block-message.info {
  1940. background-color: #ddf4fb;
  1941. border-color: #c6edf9;
  1942. }
  1943. .alert-message.block-message.danger p a,.alert-message.block-message.error p a,.alert-message.block-message.success p a,.alert-message.block-message.info p a
  1944. {
  1945. color: #404040;
  1946. }
  1947. .pagination {
  1948. height: 36px;
  1949. margin: 18px 0;
  1950. }
  1951. .pagination ul {
  1952. float: left;
  1953. margin: 0;
  1954. border: 1px solid #ddd;
  1955. border: 1px solid rgba(0, 0, 0, 0.15);
  1956. -webkit-border-radius: 3px;
  1957. -moz-border-radius: 3px;
  1958. border-radius: 3px;
  1959. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  1960. -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  1961. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  1962. }
  1963. .pagination li {
  1964. display: inline;
  1965. }
  1966. .pagination a {
  1967. float: left;
  1968. padding: 0 14px;
  1969. line-height: 34px;
  1970. border-right: 1px solid;
  1971. border-right-color: #ddd;
  1972. border-right-color: rgba(0, 0, 0, 0.15);
  1973. *border-right-color: #ddd;
  1974. text-decoration: none;
  1975. }
  1976. .pagination a:hover,.pagination .active a {
  1977. background-color: #c7eefe;
  1978. }
  1979. .pagination .disabled a,.pagination .disabled a:hover {
  1980. background-color: transparent;
  1981. color: #bfbfbf;
  1982. }
  1983. .pagination .next a {
  1984. border: 0;
  1985. }
  1986. .well {
  1987. background-color: #f5f5f5;
  1988. margin-bottom: 20px;
  1989. padding: 19px;
  1990. min-height: 20px;
  1991. border: 1px solid #eee;
  1992. border: 1px solid rgba(0, 0, 0, 0.05);
  1993. -webkit-border-radius: 4px;
  1994. -moz-border-radius: 4px;
  1995. border-radius: 4px;
  1996. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1997. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1998. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1999. }
  2000. .well blockquote {
  2001. border-color: #ddd;
  2002. border-color: rgba(0, 0, 0, 0.15);
  2003. }
  2004. .modal-backdrop {
  2005. background-color: #000000;
  2006. position: fixed;
  2007. top: 0;
  2008. left: 0;
  2009. right: 0;
  2010. bottom: 0;
  2011. z-index: 10000;
  2012. }
  2013. .modal-backdrop.fade {
  2014. opacity: 0;
  2015. }
  2016. .modal-backdrop,.modal-backdrop.fade.in {
  2017. filter: alpha(opacity = 80);
  2018. -khtml-opacity: 0.8;
  2019. -moz-opacity: 0.8;
  2020. opacity: 0.8;
  2021. }
  2022. .modal {
  2023. position: fixed;
  2024. top: 50%;
  2025. left: 50%;
  2026. z-index: 11000;
  2027. width: 560px;
  2028. margin: -250px 0 0 -280px;
  2029. background-color: #ffffff;
  2030. border: 1px solid #999;
  2031. border: 1px solid rgba(0, 0, 0, 0.3);
  2032. *border: 1px solid #999;
  2033. -webkit-border-radius: 6px;
  2034. -moz-border-radius: 6px;
  2035. border-radius: 6px;
  2036. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  2037. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  2038. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  2039. -webkit-background-clip: padding-box;
  2040. -moz-background-clip: padding-box;
  2041. background-clip: padding-box;
  2042. }
  2043. .modal .close {
  2044. margin-top: 7px;
  2045. }
  2046. .modal.fade {
  2047. -webkit-transition: opacity .3s linear, top .3s ease-out;
  2048. -moz-transition: opacity .3s linear, top .3s ease-out;
  2049. -ms-transition: opacity .3s linear, top .3s ease-out;
  2050. -o-transition: opacity .3s linear, top .3s ease-out;
  2051. transition: opacity .3s linear, top .3s ease-out;
  2052. top: -25%;
  2053. }
  2054. .modal.fade.in {
  2055. top: 50%;
  2056. }
  2057. .modal-header {
  2058. border-bottom: 1px solid #eee;
  2059. padding: 5px 15px;
  2060. }
  2061. .modal-body {
  2062. padding: 15px;
  2063. }
  2064. .modal-body form {
  2065. margin-bottom: 0;
  2066. }
  2067. .modal-footer {
  2068. background-color: #f5f5f5;
  2069. padding: 14px 15px 15px;
  2070. border-top: 1px solid #ddd;
  2071. -webkit-border-radius: 0 0 6px 6px;
  2072. -moz-border-radius: 0 0 6px 6px;
  2073. border-radius: 0 0 6px 6px;
  2074. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  2075. -moz-box-shadow: inset 0 1px 0 #ffffff;
  2076. box-shadow: inset 0 1px 0 #ffffff;
  2077. zoom: 1;
  2078. margin-bottom: 0;
  2079. }
  2080. .modal-footer:before,.modal-footer:after {
  2081. display: table;
  2082. content: "";
  2083. zoom: 1;
  2084. }
  2085. .modal-footer:after {
  2086. clear: both;
  2087. }
  2088. .modal-footer .btn {
  2089. float: right;
  2090. margin-left: 5px;
  2091. }
  2092. .modal .popover,.modal .twipsy {
  2093. z-index: 12000;
  2094. }
  2095. .twipsy {
  2096. display: block;
  2097. position: absolute;
  2098. visibility: visible;
  2099. padding: 5px;
  2100. font-size: 11px;
  2101. z-index: 1000;
  2102. filter: alpha(opacity = 80);
  2103. -khtml-opacity: 0.8;
  2104. -moz-opacity: 0.8;
  2105. opacity: 0.8;
  2106. }
  2107. .twipsy.fade.in {
  2108. filter: alpha(opacity = 80);
  2109. -khtml-opacity: 0.8;
  2110. -moz-opacity: 0.8;
  2111. opacity: 0.8;
  2112. }
  2113. .twipsy.above .twipsy-arrow {
  2114. bottom: 0;
  2115. left: 50%;
  2116. margin-left: -5px;
  2117. border-left: 5px solid transparent;
  2118. border-right: 5px solid transparent;
  2119. border-top: 5px solid #000000;
  2120. }
  2121. .twipsy.left .twipsy-arrow {
  2122. top: 50%;
  2123. right: 0;
  2124. margin-top: -5px;
  2125. border-top: 5px solid transparent;
  2126. border-bottom: 5px solid transparent;
  2127. border-left: 5px solid #000000;
  2128. }
  2129. .twipsy.below .twipsy-arrow {
  2130. top: 0;
  2131. left: 50%;
  2132. margin-left: -5px;
  2133. border-left: 5px solid transparent;
  2134. border-right: 5px solid transparent;
  2135. border-bottom: 5px solid #000000;
  2136. }
  2137. .twipsy.right .twipsy-arrow {
  2138. top: 50%;
  2139. left: 0;
  2140. margin-top: -5px;
  2141. border-top: 5px solid transparent;
  2142. border-bottom: 5px solid transparent;
  2143. border-right: 5px solid #000000;
  2144. }
  2145. .twipsy-inner {
  2146. padding: 3px 8px;
  2147. background-color: #000000;
  2148. color: white;
  2149. text-align: center;
  2150. max-width: 200px;
  2151. text-decoration: none;
  2152. -webkit-border-radius: 4px;
  2153. -moz-border-radius: 4px;
  2154. border-radius: 4px;
  2155. }
  2156. .twipsy-arrow {
  2157. position: absolute;
  2158. width: 0;
  2159. height: 0;
  2160. }
  2161. .popover {
  2162. position: absolute;
  2163. top: 0;
  2164. left: 0;
  2165. z-index: 1000;
  2166. padding: 5px;
  2167. display: none;
  2168. }
  2169. .popover.above .arrow {
  2170. bottom: 0;
  2171. left: 50%;
  2172. margin-left: -5px;
  2173. border-left: 5px solid transparent;
  2174. border-right: 5px solid transparent;
  2175. border-top: 5px solid #000000;
  2176. }
  2177. .popover.right .arrow {
  2178. top: 50%;
  2179. left: 0;
  2180. margin-top: -5px;
  2181. border-top: 5px solid transparent;
  2182. border-bottom: 5px solid transparent;
  2183. border-right: 5px solid #000000;
  2184. }
  2185. .popover.below .arrow {
  2186. top: 0;
  2187. left: 50%;
  2188. margin-left: -5px;
  2189. border-left: 5px solid transparent;
  2190. border-right: 5px solid transparent;
  2191. border-bottom: 5px solid #000000;
  2192. }
  2193. .popover.left .arrow {
  2194. top: 50%;
  2195. right: 0;
  2196. margin-top: -5px;
  2197. border-top: 5px solid transparent;
  2198. border-bottom: 5px solid transparent;
  2199. border-left: 5px solid #000000;
  2200. }
  2201. .popover .arrow {
  2202. position: absolute;
  2203. width: 0;
  2204. height: 0;
  2205. }
  2206. .popover .inner {
  2207. background: #000000;
  2208. background: rgba(0, 0, 0, 0.8);
  2209. padding: 3px;
  2210. overflow: hidden;
  2211. width: 280px;
  2212. -webkit-border-radius: 6px;
  2213. -moz-border-radius: 6px;
  2214. border-radius: 6px;
  2215. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  2216. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  2217. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  2218. }
  2219. .popover .title {
  2220. background-color: #f5f5f5;
  2221. padding: 9px 15px;
  2222. line-height: 1;
  2223. -webkit-border-radius: 3px 3px 0 0;
  2224. -moz-border-radius: 3px 3px 0 0;
  2225. border-radius: 3px 3px 0 0;
  2226. border-bottom: 1px solid #eee;
  2227. }
  2228. .popover .content {
  2229. background-color: #ffffff;
  2230. padding: 14px;
  2231. -webkit-border-radius: 0 0 3px 3px;
  2232. -moz-border-radius: 0 0 3px 3px;
  2233. border-radius: 0 0 3px 3px;
  2234. -webkit-background-clip: padding-box;
  2235. -moz-background-clip: padding-box;
  2236. background-clip: padding-box;
  2237. }
  2238. .popover .content p,.popover .content ul,.popover .content ol {
  2239. margin-bottom: 0;
  2240. }
  2241. .fade {
  2242. -webkit-transition: opacity 0.15s linear;
  2243. -moz-transition: opacity 0.15s linear;
  2244. -ms-transition: opacity 0.15s linear;
  2245. -o-transition: opacity 0.15s linear;
  2246. transition: opacity 0.15s linear;
  2247. opacity: 0;
  2248. }
  2249. .fade.in {
  2250. opacity: 1;
  2251. }
  2252. .label {
  2253. padding: 1px 3px 2px;
  2254. font-size: 9.75px;
  2255. font-weight: bold;
  2256. color: #ffffff;
  2257. text-transform: uppercase;
  2258. white-space: nowrap;
  2259. background-color: #bfbfbf;
  2260. -webkit-border-radius: 3px;
  2261. -moz-border-radius: 3px;
  2262. border-radius: 3px;
  2263. }
  2264. .label.important {
  2265. background-color: #c43c35;
  2266. }
  2267. .label.warning {
  2268. background-color: #f89406;
  2269. }
  2270. .label.success {
  2271. background-color: #46a546;
  2272. }
  2273. .label.notice {
  2274. background-color: #62cffc;
  2275. }
  2276. .media-grid {
  2277. margin-left: -20px;
  2278. margin-bottom: 0;
  2279. zoom: 1;
  2280. }
  2281. .media-grid:before,.media-grid:after {
  2282. display: table;
  2283. content: "";
  2284. zoom: 1;
  2285. }
  2286. .media-grid:after {
  2287. clear: both;
  2288. }
  2289. .media-grid li {
  2290. display: inline;
  2291. }
  2292. .media-grid a {
  2293. float: left;
  2294. padding: 4px;
  2295. margin: 0 0 18px 20px;
  2296. border: 1px solid #ddd;
  2297. -webkit-border-radius: 4px;
  2298. -moz-border-radius: 4px;
  2299. border-radius: 4px;
  2300. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  2301. -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  2302. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  2303. }
  2304. .media-grid a img {
  2305. display: block;
  2306. }
  2307. .media-grid a:hover {
  2308. border-color: #0069d6;
  2309. -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  2310. -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  2311. box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  2312. }