bootstrap.css 150 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953
  1. /* @import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700"); */
  2. /*!
  3. * bootswatch v3.3.7
  4. * Homepage: http://bootswatch.com
  5. * Copyright 2012-2016 Thomas Park
  6. * Licensed under MIT
  7. * Based on Bootstrap
  8. */
  9. /*!
  10. * Bootstrap v3.3.7 (http://getbootstrap.com)
  11. * Copyright 2011-2016 Twitter, Inc.
  12. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  13. */
  14. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  15. html {
  16. font-family: sans-serif;
  17. -ms-text-size-adjust: 100%;
  18. -webkit-text-size-adjust: 100%;
  19. }
  20. body {
  21. margin: 0;
  22. }
  23. article,
  24. aside,
  25. details,
  26. figcaption,
  27. figure,
  28. footer,
  29. header,
  30. hgroup,
  31. main,
  32. menu,
  33. nav,
  34. section,
  35. summary {
  36. display: block;
  37. }
  38. audio,
  39. canvas,
  40. progress,
  41. video {
  42. display: inline-block;
  43. vertical-align: baseline;
  44. }
  45. audio:not([controls]) {
  46. display: none;
  47. height: 0;
  48. }
  49. [hidden],
  50. template {
  51. display: none;
  52. }
  53. a {
  54. background-color: transparent;
  55. }
  56. a:active,
  57. a:hover {
  58. outline: 0;
  59. }
  60. abbr[title] {
  61. border-bottom: 1px dotted;
  62. }
  63. b,
  64. strong {
  65. font-weight: bold;
  66. }
  67. dfn {
  68. font-style: italic;
  69. }
  70. h1 {
  71. font-size: 2em;
  72. margin: 0.67em 0;
  73. }
  74. mark {
  75. background: #ff0;
  76. color: #000;
  77. }
  78. small {
  79. font-size: 80%;
  80. }
  81. sub,
  82. sup {
  83. font-size: 75%;
  84. line-height: 0;
  85. position: relative;
  86. vertical-align: baseline;
  87. }
  88. sup {
  89. top: -0.5em;
  90. }
  91. sub {
  92. bottom: -0.25em;
  93. }
  94. img {
  95. border: 0;
  96. }
  97. svg:not(:root) {
  98. overflow: hidden;
  99. }
  100. figure {
  101. margin: 1em 40px;
  102. }
  103. hr {
  104. -webkit-box-sizing: content-box;
  105. -moz-box-sizing: content-box;
  106. box-sizing: content-box;
  107. height: 0;
  108. }
  109. pre {
  110. overflow: auto;
  111. }
  112. code,
  113. kbd,
  114. pre,
  115. samp {
  116. font-family: monospace, monospace;
  117. font-size: 1em;
  118. }
  119. button,
  120. input,
  121. optgroup,
  122. select,
  123. textarea {
  124. color: inherit;
  125. font: inherit;
  126. margin: 0;
  127. }
  128. button {
  129. overflow: visible;
  130. }
  131. button,
  132. select {
  133. text-transform: none;
  134. }
  135. button,
  136. html input[type="button"],
  137. input[type="reset"],
  138. input[type="submit"] {
  139. -webkit-appearance: button;
  140. cursor: pointer;
  141. }
  142. button[disabled],
  143. html input[disabled] {
  144. cursor: default;
  145. }
  146. button::-moz-focus-inner,
  147. input::-moz-focus-inner {
  148. border: 0;
  149. padding: 0;
  150. }
  151. input {
  152. line-height: normal;
  153. }
  154. input[type="checkbox"],
  155. input[type="radio"] {
  156. -webkit-box-sizing: border-box;
  157. -moz-box-sizing: border-box;
  158. box-sizing: border-box;
  159. padding: 0;
  160. }
  161. input[type="number"]::-webkit-inner-spin-button,
  162. input[type="number"]::-webkit-outer-spin-button {
  163. height: auto;
  164. }
  165. input[type="search"] {
  166. -webkit-appearance: textfield;
  167. -webkit-box-sizing: content-box;
  168. -moz-box-sizing: content-box;
  169. box-sizing: content-box;
  170. }
  171. input[type="search"]::-webkit-search-cancel-button,
  172. input[type="search"]::-webkit-search-decoration {
  173. -webkit-appearance: none;
  174. }
  175. fieldset {
  176. border: 1px solid #c0c0c0;
  177. margin: 0 2px;
  178. padding: 0.35em 0.625em 0.75em;
  179. }
  180. legend {
  181. border: 0;
  182. padding: 0;
  183. }
  184. textarea {
  185. overflow: auto;
  186. }
  187. optgroup {
  188. font-weight: bold;
  189. }
  190. table {
  191. border-collapse: collapse;
  192. border-spacing: 0;
  193. }
  194. td,
  195. th {
  196. padding: 0;
  197. }
  198. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  199. @media print {
  200. *,
  201. *:before,
  202. *:after {
  203. background: transparent !important;
  204. color: #000 !important;
  205. -webkit-box-shadow: none !important;
  206. box-shadow: none !important;
  207. text-shadow: none !important;
  208. }
  209. a,
  210. a:visited {
  211. text-decoration: underline;
  212. }
  213. a[href]:after {
  214. content: " (" attr(href) ")";
  215. }
  216. abbr[title]:after {
  217. content: " (" attr(title) ")";
  218. }
  219. a[href^="#"]:after,
  220. a[href^="javascript:"]:after {
  221. content: "";
  222. }
  223. pre,
  224. blockquote {
  225. border: 1px solid #999;
  226. page-break-inside: avoid;
  227. }
  228. thead {
  229. display: table-header-group;
  230. }
  231. tr,
  232. img {
  233. page-break-inside: avoid;
  234. }
  235. img {
  236. max-width: 100% !important;
  237. }
  238. p,
  239. h2,
  240. h3 {
  241. orphans: 3;
  242. widows: 3;
  243. }
  244. h2,
  245. h3 {
  246. page-break-after: avoid;
  247. }
  248. .navbar {
  249. display: none;
  250. }
  251. .btn > .caret,
  252. .dropup > .btn > .caret {
  253. border-top-color: #000 !important;
  254. }
  255. .label {
  256. border: 1px solid #000;
  257. }
  258. .table {
  259. border-collapse: collapse !important;
  260. }
  261. .table td,
  262. .table th {
  263. background-color: #fff !important;
  264. }
  265. .table-bordered th,
  266. .table-bordered td {
  267. border: 1px solid #ddd !important;
  268. }
  269. }
  270. @font-face {
  271. font-family: 'Glyphicons Halflings';
  272. src: url('../fonts/glyphicons-halflings-regular.eot');
  273. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  274. }
  275. .glyphicon {
  276. position: relative;
  277. top: 1px;
  278. display: inline-block;
  279. font-family: 'Glyphicons Halflings';
  280. font-style: normal;
  281. font-weight: normal;
  282. line-height: 1;
  283. -webkit-font-smoothing: antialiased;
  284. -moz-osx-font-smoothing: grayscale;
  285. }
  286. .glyphicon-asterisk:before {
  287. content: "\002a";
  288. }
  289. .glyphicon-plus:before {
  290. content: "\002b";
  291. }
  292. .glyphicon-euro:before,
  293. .glyphicon-eur:before {
  294. content: "\20ac";
  295. }
  296. .glyphicon-minus:before {
  297. content: "\2212";
  298. }
  299. .glyphicon-cloud:before {
  300. content: "\2601";
  301. }
  302. .glyphicon-envelope:before {
  303. content: "\2709";
  304. }
  305. .glyphicon-pencil:before {
  306. content: "\270f";
  307. }
  308. .glyphicon-glass:before {
  309. content: "\e001";
  310. }
  311. .glyphicon-music:before {
  312. content: "\e002";
  313. }
  314. .glyphicon-search:before {
  315. content: "\e003";
  316. }
  317. .glyphicon-heart:before {
  318. content: "\e005";
  319. }
  320. .glyphicon-star:before {
  321. content: "\e006";
  322. }
  323. .glyphicon-star-empty:before {
  324. content: "\e007";
  325. }
  326. .glyphicon-user:before {
  327. content: "\e008";
  328. }
  329. .glyphicon-film:before {
  330. content: "\e009";
  331. }
  332. .glyphicon-th-large:before {
  333. content: "\e010";
  334. }
  335. .glyphicon-th:before {
  336. content: "\e011";
  337. }
  338. .glyphicon-th-list:before {
  339. content: "\e012";
  340. }
  341. .glyphicon-ok:before {
  342. content: "\e013";
  343. }
  344. .glyphicon-remove:before {
  345. content: "\e014";
  346. }
  347. .glyphicon-zoom-in:before {
  348. content: "\e015";
  349. }
  350. .glyphicon-zoom-out:before {
  351. content: "\e016";
  352. }
  353. .glyphicon-off:before {
  354. content: "\e017";
  355. }
  356. .glyphicon-signal:before {
  357. content: "\e018";
  358. }
  359. .glyphicon-cog:before {
  360. content: "\e019";
  361. }
  362. .glyphicon-trash:before {
  363. content: "\e020";
  364. }
  365. .glyphicon-home:before {
  366. content: "\e021";
  367. }
  368. .glyphicon-file:before {
  369. content: "\e022";
  370. }
  371. .glyphicon-time:before {
  372. content: "\e023";
  373. }
  374. .glyphicon-road:before {
  375. content: "\e024";
  376. }
  377. .glyphicon-download-alt:before {
  378. content: "\e025";
  379. }
  380. .glyphicon-download:before {
  381. content: "\e026";
  382. }
  383. .glyphicon-upload:before {
  384. content: "\e027";
  385. }
  386. .glyphicon-inbox:before {
  387. content: "\e028";
  388. }
  389. .glyphicon-play-circle:before {
  390. content: "\e029";
  391. }
  392. .glyphicon-repeat:before {
  393. content: "\e030";
  394. }
  395. .glyphicon-refresh:before {
  396. content: "\e031";
  397. }
  398. .glyphicon-list-alt:before {
  399. content: "\e032";
  400. }
  401. .glyphicon-lock:before {
  402. content: "\e033";
  403. }
  404. .glyphicon-flag:before {
  405. content: "\e034";
  406. }
  407. .glyphicon-headphones:before {
  408. content: "\e035";
  409. }
  410. .glyphicon-volume-off:before {
  411. content: "\e036";
  412. }
  413. .glyphicon-volume-down:before {
  414. content: "\e037";
  415. }
  416. .glyphicon-volume-up:before {
  417. content: "\e038";
  418. }
  419. .glyphicon-qrcode:before {
  420. content: "\e039";
  421. }
  422. .glyphicon-barcode:before {
  423. content: "\e040";
  424. }
  425. .glyphicon-tag:before {
  426. content: "\e041";
  427. }
  428. .glyphicon-tags:before {
  429. content: "\e042";
  430. }
  431. .glyphicon-book:before {
  432. content: "\e043";
  433. }
  434. .glyphicon-bookmark:before {
  435. content: "\e044";
  436. }
  437. .glyphicon-print:before {
  438. content: "\e045";
  439. }
  440. .glyphicon-camera:before {
  441. content: "\e046";
  442. }
  443. .glyphicon-font:before {
  444. content: "\e047";
  445. }
  446. .glyphicon-bold:before {
  447. content: "\e048";
  448. }
  449. .glyphicon-italic:before {
  450. content: "\e049";
  451. }
  452. .glyphicon-text-height:before {
  453. content: "\e050";
  454. }
  455. .glyphicon-text-width:before {
  456. content: "\e051";
  457. }
  458. .glyphicon-align-left:before {
  459. content: "\e052";
  460. }
  461. .glyphicon-align-center:before {
  462. content: "\e053";
  463. }
  464. .glyphicon-align-right:before {
  465. content: "\e054";
  466. }
  467. .glyphicon-align-justify:before {
  468. content: "\e055";
  469. }
  470. .glyphicon-list:before {
  471. content: "\e056";
  472. }
  473. .glyphicon-indent-left:before {
  474. content: "\e057";
  475. }
  476. .glyphicon-indent-right:before {
  477. content: "\e058";
  478. }
  479. .glyphicon-facetime-video:before {
  480. content: "\e059";
  481. }
  482. .glyphicon-picture:before {
  483. content: "\e060";
  484. }
  485. .glyphicon-map-marker:before {
  486. content: "\e062";
  487. }
  488. .glyphicon-adjust:before {
  489. content: "\e063";
  490. }
  491. .glyphicon-tint:before {
  492. content: "\e064";
  493. }
  494. .glyphicon-edit:before {
  495. content: "\e065";
  496. }
  497. .glyphicon-share:before {
  498. content: "\e066";
  499. }
  500. .glyphicon-check:before {
  501. content: "\e067";
  502. }
  503. .glyphicon-move:before {
  504. content: "\e068";
  505. }
  506. .glyphicon-step-backward:before {
  507. content: "\e069";
  508. }
  509. .glyphicon-fast-backward:before {
  510. content: "\e070";
  511. }
  512. .glyphicon-backward:before {
  513. content: "\e071";
  514. }
  515. .glyphicon-play:before {
  516. content: "\e072";
  517. }
  518. .glyphicon-pause:before {
  519. content: "\e073";
  520. }
  521. .glyphicon-stop:before {
  522. content: "\e074";
  523. }
  524. .glyphicon-forward:before {
  525. content: "\e075";
  526. }
  527. .glyphicon-fast-forward:before {
  528. content: "\e076";
  529. }
  530. .glyphicon-step-forward:before {
  531. content: "\e077";
  532. }
  533. .glyphicon-eject:before {
  534. content: "\e078";
  535. }
  536. .glyphicon-chevron-left:before {
  537. content: "\e079";
  538. }
  539. .glyphicon-chevron-right:before {
  540. content: "\e080";
  541. }
  542. .glyphicon-plus-sign:before {
  543. content: "\e081";
  544. }
  545. .glyphicon-minus-sign:before {
  546. content: "\e082";
  547. }
  548. .glyphicon-remove-sign:before {
  549. content: "\e083";
  550. }
  551. .glyphicon-ok-sign:before {
  552. content: "\e084";
  553. }
  554. .glyphicon-question-sign:before {
  555. content: "\e085";
  556. }
  557. .glyphicon-info-sign:before {
  558. content: "\e086";
  559. }
  560. .glyphicon-screenshot:before {
  561. content: "\e087";
  562. }
  563. .glyphicon-remove-circle:before {
  564. content: "\e088";
  565. }
  566. .glyphicon-ok-circle:before {
  567. content: "\e089";
  568. }
  569. .glyphicon-ban-circle:before {
  570. content: "\e090";
  571. }
  572. .glyphicon-arrow-left:before {
  573. content: "\e091";
  574. }
  575. .glyphicon-arrow-right:before {
  576. content: "\e092";
  577. }
  578. .glyphicon-arrow-up:before {
  579. content: "\e093";
  580. }
  581. .glyphicon-arrow-down:before {
  582. content: "\e094";
  583. }
  584. .glyphicon-share-alt:before {
  585. content: "\e095";
  586. }
  587. .glyphicon-resize-full:before {
  588. content: "\e096";
  589. }
  590. .glyphicon-resize-small:before {
  591. content: "\e097";
  592. }
  593. .glyphicon-exclamation-sign:before {
  594. content: "\e101";
  595. }
  596. .glyphicon-gift:before {
  597. content: "\e102";
  598. }
  599. .glyphicon-leaf:before {
  600. content: "\e103";
  601. }
  602. .glyphicon-fire:before {
  603. content: "\e104";
  604. }
  605. .glyphicon-eye-open:before {
  606. content: "\e105";
  607. }
  608. .glyphicon-eye-close:before {
  609. content: "\e106";
  610. }
  611. .glyphicon-warning-sign:before {
  612. content: "\e107";
  613. }
  614. .glyphicon-plane:before {
  615. content: "\e108";
  616. }
  617. .glyphicon-calendar:before {
  618. content: "\e109";
  619. }
  620. .glyphicon-random:before {
  621. content: "\e110";
  622. }
  623. .glyphicon-comment:before {
  624. content: "\e111";
  625. }
  626. .glyphicon-magnet:before {
  627. content: "\e112";
  628. }
  629. .glyphicon-chevron-up:before {
  630. content: "\e113";
  631. }
  632. .glyphicon-chevron-down:before {
  633. content: "\e114";
  634. }
  635. .glyphicon-retweet:before {
  636. content: "\e115";
  637. }
  638. .glyphicon-shopping-cart:before {
  639. content: "\e116";
  640. }
  641. .glyphicon-folder-close:before {
  642. content: "\e117";
  643. }
  644. .glyphicon-folder-open:before {
  645. content: "\e118";
  646. }
  647. .glyphicon-resize-vertical:before {
  648. content: "\e119";
  649. }
  650. .glyphicon-resize-horizontal:before {
  651. content: "\e120";
  652. }
  653. .glyphicon-hdd:before {
  654. content: "\e121";
  655. }
  656. .glyphicon-bullhorn:before {
  657. content: "\e122";
  658. }
  659. .glyphicon-bell:before {
  660. content: "\e123";
  661. }
  662. .glyphicon-certificate:before {
  663. content: "\e124";
  664. }
  665. .glyphicon-thumbs-up:before {
  666. content: "\e125";
  667. }
  668. .glyphicon-thumbs-down:before {
  669. content: "\e126";
  670. }
  671. .glyphicon-hand-right:before {
  672. content: "\e127";
  673. }
  674. .glyphicon-hand-left:before {
  675. content: "\e128";
  676. }
  677. .glyphicon-hand-up:before {
  678. content: "\e129";
  679. }
  680. .glyphicon-hand-down:before {
  681. content: "\e130";
  682. }
  683. .glyphicon-circle-arrow-right:before {
  684. content: "\e131";
  685. }
  686. .glyphicon-circle-arrow-left:before {
  687. content: "\e132";
  688. }
  689. .glyphicon-circle-arrow-up:before {
  690. content: "\e133";
  691. }
  692. .glyphicon-circle-arrow-down:before {
  693. content: "\e134";
  694. }
  695. .glyphicon-globe:before {
  696. content: "\e135";
  697. }
  698. .glyphicon-wrench:before {
  699. content: "\e136";
  700. }
  701. .glyphicon-tasks:before {
  702. content: "\e137";
  703. }
  704. .glyphicon-filter:before {
  705. content: "\e138";
  706. }
  707. .glyphicon-briefcase:before {
  708. content: "\e139";
  709. }
  710. .glyphicon-fullscreen:before {
  711. content: "\e140";
  712. }
  713. .glyphicon-dashboard:before {
  714. content: "\e141";
  715. }
  716. .glyphicon-paperclip:before {
  717. content: "\e142";
  718. }
  719. .glyphicon-heart-empty:before {
  720. content: "\e143";
  721. }
  722. .glyphicon-link:before {
  723. content: "\e144";
  724. }
  725. .glyphicon-phone:before {
  726. content: "\e145";
  727. }
  728. .glyphicon-pushpin:before {
  729. content: "\e146";
  730. }
  731. .glyphicon-usd:before {
  732. content: "\e148";
  733. }
  734. .glyphicon-gbp:before {
  735. content: "\e149";
  736. }
  737. .glyphicon-sort:before {
  738. content: "\e150";
  739. }
  740. .glyphicon-sort-by-alphabet:before {
  741. content: "\e151";
  742. }
  743. .glyphicon-sort-by-alphabet-alt:before {
  744. content: "\e152";
  745. }
  746. .glyphicon-sort-by-order:before {
  747. content: "\e153";
  748. }
  749. .glyphicon-sort-by-order-alt:before {
  750. content: "\e154";
  751. }
  752. .glyphicon-sort-by-attributes:before {
  753. content: "\e155";
  754. }
  755. .glyphicon-sort-by-attributes-alt:before {
  756. content: "\e156";
  757. }
  758. .glyphicon-unchecked:before {
  759. content: "\e157";
  760. }
  761. .glyphicon-expand:before {
  762. content: "\e158";
  763. }
  764. .glyphicon-collapse-down:before {
  765. content: "\e159";
  766. }
  767. .glyphicon-collapse-up:before {
  768. content: "\e160";
  769. }
  770. .glyphicon-log-in:before {
  771. content: "\e161";
  772. }
  773. .glyphicon-flash:before {
  774. content: "\e162";
  775. }
  776. .glyphicon-log-out:before {
  777. content: "\e163";
  778. }
  779. .glyphicon-new-window:before {
  780. content: "\e164";
  781. }
  782. .glyphicon-record:before {
  783. content: "\e165";
  784. }
  785. .glyphicon-save:before {
  786. content: "\e166";
  787. }
  788. .glyphicon-open:before {
  789. content: "\e167";
  790. }
  791. .glyphicon-saved:before {
  792. content: "\e168";
  793. }
  794. .glyphicon-import:before {
  795. content: "\e169";
  796. }
  797. .glyphicon-export:before {
  798. content: "\e170";
  799. }
  800. .glyphicon-send:before {
  801. content: "\e171";
  802. }
  803. .glyphicon-floppy-disk:before {
  804. content: "\e172";
  805. }
  806. .glyphicon-floppy-saved:before {
  807. content: "\e173";
  808. }
  809. .glyphicon-floppy-remove:before {
  810. content: "\e174";
  811. }
  812. .glyphicon-floppy-save:before {
  813. content: "\e175";
  814. }
  815. .glyphicon-floppy-open:before {
  816. content: "\e176";
  817. }
  818. .glyphicon-credit-card:before {
  819. content: "\e177";
  820. }
  821. .glyphicon-transfer:before {
  822. content: "\e178";
  823. }
  824. .glyphicon-cutlery:before {
  825. content: "\e179";
  826. }
  827. .glyphicon-header:before {
  828. content: "\e180";
  829. }
  830. .glyphicon-compressed:before {
  831. content: "\e181";
  832. }
  833. .glyphicon-earphone:before {
  834. content: "\e182";
  835. }
  836. .glyphicon-phone-alt:before {
  837. content: "\e183";
  838. }
  839. .glyphicon-tower:before {
  840. content: "\e184";
  841. }
  842. .glyphicon-stats:before {
  843. content: "\e185";
  844. }
  845. .glyphicon-sd-video:before {
  846. content: "\e186";
  847. }
  848. .glyphicon-hd-video:before {
  849. content: "\e187";
  850. }
  851. .glyphicon-subtitles:before {
  852. content: "\e188";
  853. }
  854. .glyphicon-sound-stereo:before {
  855. content: "\e189";
  856. }
  857. .glyphicon-sound-dolby:before {
  858. content: "\e190";
  859. }
  860. .glyphicon-sound-5-1:before {
  861. content: "\e191";
  862. }
  863. .glyphicon-sound-6-1:before {
  864. content: "\e192";
  865. }
  866. .glyphicon-sound-7-1:before {
  867. content: "\e193";
  868. }
  869. .glyphicon-copyright-mark:before {
  870. content: "\e194";
  871. }
  872. .glyphicon-registration-mark:before {
  873. content: "\e195";
  874. }
  875. .glyphicon-cloud-download:before {
  876. content: "\e197";
  877. }
  878. .glyphicon-cloud-upload:before {
  879. content: "\e198";
  880. }
  881. .glyphicon-tree-conifer:before {
  882. content: "\e199";
  883. }
  884. .glyphicon-tree-deciduous:before {
  885. content: "\e200";
  886. }
  887. .glyphicon-cd:before {
  888. content: "\e201";
  889. }
  890. .glyphicon-save-file:before {
  891. content: "\e202";
  892. }
  893. .glyphicon-open-file:before {
  894. content: "\e203";
  895. }
  896. .glyphicon-level-up:before {
  897. content: "\e204";
  898. }
  899. .glyphicon-copy:before {
  900. content: "\e205";
  901. }
  902. .glyphicon-paste:before {
  903. content: "\e206";
  904. }
  905. .glyphicon-alert:before {
  906. content: "\e209";
  907. }
  908. .glyphicon-equalizer:before {
  909. content: "\e210";
  910. }
  911. .glyphicon-king:before {
  912. content: "\e211";
  913. }
  914. .glyphicon-queen:before {
  915. content: "\e212";
  916. }
  917. .glyphicon-pawn:before {
  918. content: "\e213";
  919. }
  920. .glyphicon-bishop:before {
  921. content: "\e214";
  922. }
  923. .glyphicon-knight:before {
  924. content: "\e215";
  925. }
  926. .glyphicon-baby-formula:before {
  927. content: "\e216";
  928. }
  929. .glyphicon-tent:before {
  930. content: "\26fa";
  931. }
  932. .glyphicon-blackboard:before {
  933. content: "\e218";
  934. }
  935. .glyphicon-bed:before {
  936. content: "\e219";
  937. }
  938. .glyphicon-apple:before {
  939. content: "\f8ff";
  940. }
  941. .glyphicon-erase:before {
  942. content: "\e221";
  943. }
  944. .glyphicon-hourglass:before {
  945. content: "\231b";
  946. }
  947. .glyphicon-lamp:before {
  948. content: "\e223";
  949. }
  950. .glyphicon-duplicate:before {
  951. content: "\e224";
  952. }
  953. .glyphicon-piggy-bank:before {
  954. content: "\e225";
  955. }
  956. .glyphicon-scissors:before {
  957. content: "\e226";
  958. }
  959. .glyphicon-bitcoin:before {
  960. content: "\e227";
  961. }
  962. .glyphicon-btc:before {
  963. content: "\e227";
  964. }
  965. .glyphicon-xbt:before {
  966. content: "\e227";
  967. }
  968. .glyphicon-yen:before {
  969. content: "\00a5";
  970. }
  971. .glyphicon-jpy:before {
  972. content: "\00a5";
  973. }
  974. .glyphicon-ruble:before {
  975. content: "\20bd";
  976. }
  977. .glyphicon-rub:before {
  978. content: "\20bd";
  979. }
  980. .glyphicon-scale:before {
  981. content: "\e230";
  982. }
  983. .glyphicon-ice-lolly:before {
  984. content: "\e231";
  985. }
  986. .glyphicon-ice-lolly-tasted:before {
  987. content: "\e232";
  988. }
  989. .glyphicon-education:before {
  990. content: "\e233";
  991. }
  992. .glyphicon-option-horizontal:before {
  993. content: "\e234";
  994. }
  995. .glyphicon-option-vertical:before {
  996. content: "\e235";
  997. }
  998. .glyphicon-menu-hamburger:before {
  999. content: "\e236";
  1000. }
  1001. .glyphicon-modal-window:before {
  1002. content: "\e237";
  1003. }
  1004. .glyphicon-oil:before {
  1005. content: "\e238";
  1006. }
  1007. .glyphicon-grain:before {
  1008. content: "\e239";
  1009. }
  1010. .glyphicon-sunglasses:before {
  1011. content: "\e240";
  1012. }
  1013. .glyphicon-text-size:before {
  1014. content: "\e241";
  1015. }
  1016. .glyphicon-text-color:before {
  1017. content: "\e242";
  1018. }
  1019. .glyphicon-text-background:before {
  1020. content: "\e243";
  1021. }
  1022. .glyphicon-object-align-top:before {
  1023. content: "\e244";
  1024. }
  1025. .glyphicon-object-align-bottom:before {
  1026. content: "\e245";
  1027. }
  1028. .glyphicon-object-align-horizontal:before {
  1029. content: "\e246";
  1030. }
  1031. .glyphicon-object-align-left:before {
  1032. content: "\e247";
  1033. }
  1034. .glyphicon-object-align-vertical:before {
  1035. content: "\e248";
  1036. }
  1037. .glyphicon-object-align-right:before {
  1038. content: "\e249";
  1039. }
  1040. .glyphicon-triangle-right:before {
  1041. content: "\e250";
  1042. }
  1043. .glyphicon-triangle-left:before {
  1044. content: "\e251";
  1045. }
  1046. .glyphicon-triangle-bottom:before {
  1047. content: "\e252";
  1048. }
  1049. .glyphicon-triangle-top:before {
  1050. content: "\e253";
  1051. }
  1052. .glyphicon-console:before {
  1053. content: "\e254";
  1054. }
  1055. .glyphicon-superscript:before {
  1056. content: "\e255";
  1057. }
  1058. .glyphicon-subscript:before {
  1059. content: "\e256";
  1060. }
  1061. .glyphicon-menu-left:before {
  1062. content: "\e257";
  1063. }
  1064. .glyphicon-menu-right:before {
  1065. content: "\e258";
  1066. }
  1067. .glyphicon-menu-down:before {
  1068. content: "\e259";
  1069. }
  1070. .glyphicon-menu-up:before {
  1071. content: "\e260";
  1072. }
  1073. * {
  1074. -webkit-box-sizing: border-box;
  1075. -moz-box-sizing: border-box;
  1076. box-sizing: border-box;
  1077. }
  1078. *:before,
  1079. *:after {
  1080. -webkit-box-sizing: border-box;
  1081. -moz-box-sizing: border-box;
  1082. box-sizing: border-box;
  1083. }
  1084. html {
  1085. font-size: 10px;
  1086. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1087. }
  1088. body {
  1089. font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1090. font-size: 13px;
  1091. line-height: 1.42857143;
  1092. color: #777777;
  1093. background-color: #fcfcfc;
  1094. }
  1095. input,
  1096. button,
  1097. select,
  1098. textarea {
  1099. font-family: inherit;
  1100. font-size: inherit;
  1101. line-height: inherit;
  1102. }
  1103. a {
  1104. color: #d9230f;
  1105. text-decoration: none;
  1106. }
  1107. a:hover,
  1108. a:focus {
  1109. color: #91170a;
  1110. text-decoration: underline;
  1111. }
  1112. a:focus {
  1113. outline: 5px auto -webkit-focus-ring-color;
  1114. outline-offset: -2px;
  1115. }
  1116. figure {
  1117. margin: 0;
  1118. }
  1119. img {
  1120. vertical-align: middle;
  1121. }
  1122. .img-responsive,
  1123. .thumbnail > img,
  1124. .thumbnail a > img,
  1125. .carousel-inner > .item > img,
  1126. .carousel-inner > .item > a > img {
  1127. display: block;
  1128. max-width: 100%;
  1129. height: auto;
  1130. }
  1131. .img-rounded {
  1132. border-radius: 6px;
  1133. }
  1134. .img-thumbnail {
  1135. padding: 4px;
  1136. line-height: 1.42857143;
  1137. background-color: #fcfcfc;
  1138. border: 1px solid #dddddd;
  1139. border-radius: 4px;
  1140. -webkit-transition: all 0.2s ease-in-out;
  1141. -o-transition: all 0.2s ease-in-out;
  1142. transition: all 0.2s ease-in-out;
  1143. display: inline-block;
  1144. max-width: 100%;
  1145. height: auto;
  1146. }
  1147. .img-circle {
  1148. border-radius: 50%;
  1149. }
  1150. hr {
  1151. margin-top: 18px;
  1152. margin-bottom: 18px;
  1153. border: 0;
  1154. border-top: 1px solid #dddddd;
  1155. }
  1156. .sr-only {
  1157. position: absolute;
  1158. width: 1px;
  1159. height: 1px;
  1160. margin: -1px;
  1161. padding: 0;
  1162. overflow: hidden;
  1163. clip: rect(0, 0, 0, 0);
  1164. border: 0;
  1165. }
  1166. .sr-only-focusable:active,
  1167. .sr-only-focusable:focus {
  1168. position: static;
  1169. width: auto;
  1170. height: auto;
  1171. margin: 0;
  1172. overflow: visible;
  1173. clip: auto;
  1174. }
  1175. [role="button"] {
  1176. cursor: pointer;
  1177. }
  1178. h1,
  1179. h2,
  1180. h3,
  1181. h4,
  1182. h5,
  1183. h6,
  1184. .h1,
  1185. .h2,
  1186. .h3,
  1187. .h4,
  1188. .h5,
  1189. .h6 {
  1190. font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1191. font-weight: 300;
  1192. line-height: 1.1;
  1193. color: #A9A9A9;
  1194. }
  1195. h1 small,
  1196. h2 small,
  1197. h3 small,
  1198. h4 small,
  1199. h5 small,
  1200. h6 small,
  1201. .h1 small,
  1202. .h2 small,
  1203. .h3 small,
  1204. .h4 small,
  1205. .h5 small,
  1206. .h6 small,
  1207. h1 .small,
  1208. h2 .small,
  1209. h3 .small,
  1210. h4 .small,
  1211. h5 .small,
  1212. h6 .small,
  1213. .h1 .small,
  1214. .h2 .small,
  1215. .h3 .small,
  1216. .h4 .small,
  1217. .h5 .small,
  1218. .h6 .small {
  1219. font-weight: normal;
  1220. line-height: 1;
  1221. color: #808080;
  1222. }
  1223. h1,
  1224. .h1,
  1225. h2,
  1226. .h2,
  1227. h3,
  1228. .h3 {
  1229. margin-top: 18px;
  1230. margin-bottom: 9px;
  1231. }
  1232. h1 small,
  1233. .h1 small,
  1234. h2 small,
  1235. .h2 small,
  1236. h3 small,
  1237. .h3 small,
  1238. h1 .small,
  1239. .h1 .small,
  1240. h2 .small,
  1241. .h2 .small,
  1242. h3 .small,
  1243. .h3 .small {
  1244. font-size: 65%;
  1245. }
  1246. h4,
  1247. .h4,
  1248. h5,
  1249. .h5,
  1250. h6,
  1251. .h6 {
  1252. margin-top: 9px;
  1253. margin-bottom: 9px;
  1254. }
  1255. h4 small,
  1256. .h4 small,
  1257. h5 small,
  1258. .h5 small,
  1259. h6 small,
  1260. .h6 small,
  1261. h4 .small,
  1262. .h4 .small,
  1263. h5 .small,
  1264. .h5 .small,
  1265. h6 .small,
  1266. .h6 .small {
  1267. font-size: 75%;
  1268. }
  1269. h1,
  1270. .h1 {
  1271. font-size: 33px;
  1272. }
  1273. h2,
  1274. .h2 {
  1275. font-size: 27px;
  1276. }
  1277. h3,
  1278. .h3 {
  1279. font-size: 23px;
  1280. }
  1281. h4,
  1282. .h4 {
  1283. font-size: 17px;
  1284. }
  1285. h5,
  1286. .h5 {
  1287. font-size: 13px;
  1288. }
  1289. h6,
  1290. .h6 {
  1291. font-size: 12px;
  1292. }
  1293. p {
  1294. margin: 0 0 9px;
  1295. }
  1296. .lead {
  1297. margin-bottom: 18px;
  1298. font-size: 14px;
  1299. font-weight: 300;
  1300. line-height: 1.4;
  1301. }
  1302. @media (min-width: 768px) {
  1303. .lead {
  1304. font-size: 19.5px;
  1305. }
  1306. }
  1307. small,
  1308. .small {
  1309. font-size: 92%;
  1310. }
  1311. mark,
  1312. .mark {
  1313. background-color: #fcf8e3;
  1314. padding: .2em;
  1315. }
  1316. .text-left {
  1317. text-align: left;
  1318. }
  1319. .text-right {
  1320. text-align: right;
  1321. }
  1322. .text-center {
  1323. text-align: center;
  1324. }
  1325. .text-justify {
  1326. text-align: justify;
  1327. }
  1328. .text-nowrap {
  1329. white-space: nowrap;
  1330. }
  1331. .text-lowercase {
  1332. text-transform: lowercase;
  1333. }
  1334. .text-uppercase {
  1335. text-transform: uppercase;
  1336. }
  1337. .text-capitalize {
  1338. text-transform: capitalize;
  1339. }
  1340. .text-muted {
  1341. color: #808080;
  1342. }
  1343. .text-primary {
  1344. color: #d9230f;
  1345. }
  1346. a.text-primary:hover,
  1347. a.text-primary:focus {
  1348. color: #a91b0c;
  1349. }
  1350. .text-success {
  1351. color: #468847;
  1352. }
  1353. a.text-success:hover,
  1354. a.text-success:focus {
  1355. color: #356635;
  1356. }
  1357. .text-info {
  1358. color: #3a87ad;
  1359. }
  1360. a.text-info:hover,
  1361. a.text-info:focus {
  1362. color: #2d6987;
  1363. }
  1364. .text-warning {
  1365. color: #c09853;
  1366. }
  1367. a.text-warning:hover,
  1368. a.text-warning:focus {
  1369. color: #a47e3c;
  1370. }
  1371. .text-danger {
  1372. color: #b94a48;
  1373. }
  1374. a.text-danger:hover,
  1375. a.text-danger:focus {
  1376. color: #953b39;
  1377. }
  1378. .bg-primary {
  1379. color: #fff;
  1380. background-color: #d9230f;
  1381. }
  1382. a.bg-primary:hover,
  1383. a.bg-primary:focus {
  1384. background-color: #a91b0c;
  1385. }
  1386. .bg-success {
  1387. background-color: #dff0d8;
  1388. }
  1389. a.bg-success:hover,
  1390. a.bg-success:focus {
  1391. background-color: #c1e2b3;
  1392. }
  1393. .bg-info {
  1394. background-color: #d9edf7;
  1395. }
  1396. a.bg-info:hover,
  1397. a.bg-info:focus {
  1398. background-color: #afd9ee;
  1399. }
  1400. .bg-warning {
  1401. background-color: #fcf8e3;
  1402. }
  1403. a.bg-warning:hover,
  1404. a.bg-warning:focus {
  1405. background-color: #f7ecb5;
  1406. }
  1407. .bg-danger {
  1408. background-color: #f2dede;
  1409. }
  1410. a.bg-danger:hover,
  1411. a.bg-danger:focus {
  1412. background-color: #e4b9b9;
  1413. }
  1414. .page-header {
  1415. padding-bottom: 8px;
  1416. margin: 36px 0 18px;
  1417. border-bottom: 1px solid #dddddd;
  1418. }
  1419. ul,
  1420. ol {
  1421. margin-top: 0;
  1422. margin-bottom: 9px;
  1423. }
  1424. ul ul,
  1425. ol ul,
  1426. ul ol,
  1427. ol ol {
  1428. margin-bottom: 0;
  1429. }
  1430. .list-unstyled {
  1431. padding-left: 0;
  1432. list-style: none;
  1433. }
  1434. .list-inline {
  1435. padding-left: 0;
  1436. list-style: none;
  1437. margin-left: -5px;
  1438. }
  1439. .list-inline > li {
  1440. display: inline-block;
  1441. padding-left: 5px;
  1442. padding-right: 5px;
  1443. }
  1444. dl {
  1445. margin-top: 0;
  1446. margin-bottom: 18px;
  1447. }
  1448. dt,
  1449. dd {
  1450. line-height: 1.42857143;
  1451. }
  1452. dt {
  1453. font-weight: bold;
  1454. }
  1455. dd {
  1456. margin-left: 0;
  1457. }
  1458. @media (min-width: 768px) {
  1459. .dl-horizontal dt {
  1460. float: left;
  1461. width: 160px;
  1462. clear: left;
  1463. text-align: right;
  1464. overflow: hidden;
  1465. text-overflow: ellipsis;
  1466. white-space: nowrap;
  1467. }
  1468. .dl-horizontal dd {
  1469. margin-left: 180px;
  1470. }
  1471. }
  1472. abbr[title],
  1473. abbr[data-original-title] {
  1474. cursor: help;
  1475. border-bottom: 1px dotted #808080;
  1476. }
  1477. .initialism {
  1478. font-size: 90%;
  1479. text-transform: uppercase;
  1480. }
  1481. blockquote {
  1482. padding: 9px 18px;
  1483. margin: 0 0 18px;
  1484. font-size: 16.25px;
  1485. border-left: 5px solid #dddddd;
  1486. }
  1487. blockquote p:last-child,
  1488. blockquote ul:last-child,
  1489. blockquote ol:last-child {
  1490. margin-bottom: 0;
  1491. }
  1492. blockquote footer,
  1493. blockquote small,
  1494. blockquote .small {
  1495. display: block;
  1496. font-size: 80%;
  1497. line-height: 1.42857143;
  1498. color: #808080;
  1499. }
  1500. blockquote footer:before,
  1501. blockquote small:before,
  1502. blockquote .small:before {
  1503. content: '\2014 \00A0';
  1504. }
  1505. .blockquote-reverse,
  1506. blockquote.pull-right {
  1507. padding-right: 15px;
  1508. padding-left: 0;
  1509. border-right: 5px solid #dddddd;
  1510. border-left: 0;
  1511. text-align: right;
  1512. }
  1513. .blockquote-reverse footer:before,
  1514. blockquote.pull-right footer:before,
  1515. .blockquote-reverse small:before,
  1516. blockquote.pull-right small:before,
  1517. .blockquote-reverse .small:before,
  1518. blockquote.pull-right .small:before {
  1519. content: '';
  1520. }
  1521. .blockquote-reverse footer:after,
  1522. blockquote.pull-right footer:after,
  1523. .blockquote-reverse small:after,
  1524. blockquote.pull-right small:after,
  1525. .blockquote-reverse .small:after,
  1526. blockquote.pull-right .small:after {
  1527. content: '\00A0 \2014';
  1528. }
  1529. address {
  1530. margin-bottom: 18px;
  1531. font-style: normal;
  1532. line-height: 1.42857143;
  1533. }
  1534. code,
  1535. kbd,
  1536. pre,
  1537. samp {
  1538. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1539. }
  1540. code {
  1541. padding: 2px 4px;
  1542. font-size: 90%;
  1543. color: #6c6c6c;
  1544. background-color: #181818;
  1545. border-radius: 4px;
  1546. }
  1547. kbd {
  1548. padding: 2px 4px;
  1549. font-size: 90%;
  1550. color: #ffffff;
  1551. background-color: #333333;
  1552. border-radius: 3px;
  1553. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1554. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1555. }
  1556. kbd kbd {
  1557. padding: 0;
  1558. font-size: 100%;
  1559. font-weight: bold;
  1560. -webkit-box-shadow: none;
  1561. box-shadow: none;
  1562. }
  1563. pre {
  1564. display: block;
  1565. padding: 8.5px;
  1566. margin: 0 0 9px;
  1567. font-size: 12px;
  1568. line-height: 1.42857143;
  1569. word-break: break-all;
  1570. word-wrap: break-word;
  1571. color: #444444;
  1572. background-color: #f5f5f5;
  1573. border: 1px solid #cccccc;
  1574. border-radius: 4px;
  1575. }
  1576. pre code {
  1577. padding: 0;
  1578. font-size: inherit;
  1579. color: inherit;
  1580. white-space: pre-wrap;
  1581. background-color: transparent;
  1582. border-radius: 0;
  1583. }
  1584. .pre-scrollable {
  1585. max-height: 340px;
  1586. overflow-y: scroll;
  1587. }
  1588. .container {
  1589. margin-right: auto;
  1590. margin-left: auto;
  1591. padding-left: 15px;
  1592. padding-right: 15px;
  1593. }
  1594. @media (min-width: 768px) {
  1595. .container {
  1596. width: 750px;
  1597. }
  1598. }
  1599. @media (min-width: 992px) {
  1600. .container {
  1601. width: 970px;
  1602. }
  1603. }
  1604. @media (min-width: 1200px) {
  1605. .container {
  1606. width: 1170px;
  1607. }
  1608. }
  1609. .container-fluid {
  1610. margin-right: auto;
  1611. margin-left: auto;
  1612. padding-left: 15px;
  1613. padding-right: 15px;
  1614. }
  1615. .row {
  1616. margin-left: -15px;
  1617. margin-right: -15px;
  1618. }
  1619. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1620. position: relative;
  1621. min-height: 1px;
  1622. padding-left: 15px;
  1623. padding-right: 15px;
  1624. }
  1625. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1626. float: left;
  1627. }
  1628. .col-xs-12 {
  1629. width: 100%;
  1630. }
  1631. .col-xs-11 {
  1632. width: 91.66666667%;
  1633. }
  1634. .col-xs-10 {
  1635. width: 83.33333333%;
  1636. }
  1637. .col-xs-9 {
  1638. width: 75%;
  1639. }
  1640. .col-xs-8 {
  1641. width: 66.66666667%;
  1642. }
  1643. .col-xs-7 {
  1644. width: 58.33333333%;
  1645. }
  1646. .col-xs-6 {
  1647. width: 50%;
  1648. }
  1649. .col-xs-5 {
  1650. width: 41.66666667%;
  1651. }
  1652. .col-xs-4 {
  1653. width: 33.33333333%;
  1654. }
  1655. .col-xs-3 {
  1656. width: 25%;
  1657. }
  1658. .col-xs-2 {
  1659. width: 16.66666667%;
  1660. }
  1661. .col-xs-1 {
  1662. width: 8.33333333%;
  1663. }
  1664. .col-xs-pull-12 {
  1665. right: 100%;
  1666. }
  1667. .col-xs-pull-11 {
  1668. right: 91.66666667%;
  1669. }
  1670. .col-xs-pull-10 {
  1671. right: 83.33333333%;
  1672. }
  1673. .col-xs-pull-9 {
  1674. right: 75%;
  1675. }
  1676. .col-xs-pull-8 {
  1677. right: 66.66666667%;
  1678. }
  1679. .col-xs-pull-7 {
  1680. right: 58.33333333%;
  1681. }
  1682. .col-xs-pull-6 {
  1683. right: 50%;
  1684. }
  1685. .col-xs-pull-5 {
  1686. right: 41.66666667%;
  1687. }
  1688. .col-xs-pull-4 {
  1689. right: 33.33333333%;
  1690. }
  1691. .col-xs-pull-3 {
  1692. right: 25%;
  1693. }
  1694. .col-xs-pull-2 {
  1695. right: 16.66666667%;
  1696. }
  1697. .col-xs-pull-1 {
  1698. right: 8.33333333%;
  1699. }
  1700. .col-xs-pull-0 {
  1701. right: auto;
  1702. }
  1703. .col-xs-push-12 {
  1704. left: 100%;
  1705. }
  1706. .col-xs-push-11 {
  1707. left: 91.66666667%;
  1708. }
  1709. .col-xs-push-10 {
  1710. left: 83.33333333%;
  1711. }
  1712. .col-xs-push-9 {
  1713. left: 75%;
  1714. }
  1715. .col-xs-push-8 {
  1716. left: 66.66666667%;
  1717. }
  1718. .col-xs-push-7 {
  1719. left: 58.33333333%;
  1720. }
  1721. .col-xs-push-6 {
  1722. left: 50%;
  1723. }
  1724. .col-xs-push-5 {
  1725. left: 41.66666667%;
  1726. }
  1727. .col-xs-push-4 {
  1728. left: 33.33333333%;
  1729. }
  1730. .col-xs-push-3 {
  1731. left: 25%;
  1732. }
  1733. .col-xs-push-2 {
  1734. left: 16.66666667%;
  1735. }
  1736. .col-xs-push-1 {
  1737. left: 8.33333333%;
  1738. }
  1739. .col-xs-push-0 {
  1740. left: auto;
  1741. }
  1742. .col-xs-offset-12 {
  1743. margin-left: 100%;
  1744. }
  1745. .col-xs-offset-11 {
  1746. margin-left: 91.66666667%;
  1747. }
  1748. .col-xs-offset-10 {
  1749. margin-left: 83.33333333%;
  1750. }
  1751. .col-xs-offset-9 {
  1752. margin-left: 75%;
  1753. }
  1754. .col-xs-offset-8 {
  1755. margin-left: 66.66666667%;
  1756. }
  1757. .col-xs-offset-7 {
  1758. margin-left: 58.33333333%;
  1759. }
  1760. .col-xs-offset-6 {
  1761. margin-left: 50%;
  1762. }
  1763. .col-xs-offset-5 {
  1764. margin-left: 41.66666667%;
  1765. }
  1766. .col-xs-offset-4 {
  1767. margin-left: 33.33333333%;
  1768. }
  1769. .col-xs-offset-3 {
  1770. margin-left: 25%;
  1771. }
  1772. .col-xs-offset-2 {
  1773. margin-left: 16.66666667%;
  1774. }
  1775. .col-xs-offset-1 {
  1776. margin-left: 8.33333333%;
  1777. }
  1778. .col-xs-offset-0 {
  1779. margin-left: 0%;
  1780. }
  1781. @media (min-width: 768px) {
  1782. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1783. float: left;
  1784. }
  1785. .col-sm-12 {
  1786. width: 100%;
  1787. }
  1788. .col-sm-11 {
  1789. width: 91.66666667%;
  1790. }
  1791. .col-sm-10 {
  1792. width: 83.33333333%;
  1793. }
  1794. .col-sm-9 {
  1795. width: 75%;
  1796. }
  1797. .col-sm-8 {
  1798. width: 66.66666667%;
  1799. }
  1800. .col-sm-7 {
  1801. width: 58.33333333%;
  1802. }
  1803. .col-sm-6 {
  1804. width: 50%;
  1805. }
  1806. .col-sm-5 {
  1807. width: 41.66666667%;
  1808. }
  1809. .col-sm-4 {
  1810. width: 33.33333333%;
  1811. }
  1812. .col-sm-3 {
  1813. width: 25%;
  1814. }
  1815. .col-sm-2 {
  1816. width: 16.66666667%;
  1817. }
  1818. .col-sm-1 {
  1819. width: 8.33333333%;
  1820. }
  1821. .col-sm-pull-12 {
  1822. right: 100%;
  1823. }
  1824. .col-sm-pull-11 {
  1825. right: 91.66666667%;
  1826. }
  1827. .col-sm-pull-10 {
  1828. right: 83.33333333%;
  1829. }
  1830. .col-sm-pull-9 {
  1831. right: 75%;
  1832. }
  1833. .col-sm-pull-8 {
  1834. right: 66.66666667%;
  1835. }
  1836. .col-sm-pull-7 {
  1837. right: 58.33333333%;
  1838. }
  1839. .col-sm-pull-6 {
  1840. right: 50%;
  1841. }
  1842. .col-sm-pull-5 {
  1843. right: 41.66666667%;
  1844. }
  1845. .col-sm-pull-4 {
  1846. right: 33.33333333%;
  1847. }
  1848. .col-sm-pull-3 {
  1849. right: 25%;
  1850. }
  1851. .col-sm-pull-2 {
  1852. right: 16.66666667%;
  1853. }
  1854. .col-sm-pull-1 {
  1855. right: 8.33333333%;
  1856. }
  1857. .col-sm-pull-0 {
  1858. right: auto;
  1859. }
  1860. .col-sm-push-12 {
  1861. left: 100%;
  1862. }
  1863. .col-sm-push-11 {
  1864. left: 91.66666667%;
  1865. }
  1866. .col-sm-push-10 {
  1867. left: 83.33333333%;
  1868. }
  1869. .col-sm-push-9 {
  1870. left: 75%;
  1871. }
  1872. .col-sm-push-8 {
  1873. left: 66.66666667%;
  1874. }
  1875. .col-sm-push-7 {
  1876. left: 58.33333333%;
  1877. }
  1878. .col-sm-push-6 {
  1879. left: 50%;
  1880. }
  1881. .col-sm-push-5 {
  1882. left: 41.66666667%;
  1883. }
  1884. .col-sm-push-4 {
  1885. left: 33.33333333%;
  1886. }
  1887. .col-sm-push-3 {
  1888. left: 25%;
  1889. }
  1890. .col-sm-push-2 {
  1891. left: 16.66666667%;
  1892. }
  1893. .col-sm-push-1 {
  1894. left: 8.33333333%;
  1895. }
  1896. .col-sm-push-0 {
  1897. left: auto;
  1898. }
  1899. .col-sm-offset-12 {
  1900. margin-left: 100%;
  1901. }
  1902. .col-sm-offset-11 {
  1903. margin-left: 91.66666667%;
  1904. }
  1905. .col-sm-offset-10 {
  1906. margin-left: 83.33333333%;
  1907. }
  1908. .col-sm-offset-9 {
  1909. margin-left: 75%;
  1910. }
  1911. .col-sm-offset-8 {
  1912. margin-left: 66.66666667%;
  1913. }
  1914. .col-sm-offset-7 {
  1915. margin-left: 58.33333333%;
  1916. }
  1917. .col-sm-offset-6 {
  1918. margin-left: 50%;
  1919. }
  1920. .col-sm-offset-5 {
  1921. margin-left: 41.66666667%;
  1922. }
  1923. .col-sm-offset-4 {
  1924. margin-left: 33.33333333%;
  1925. }
  1926. .col-sm-offset-3 {
  1927. margin-left: 25%;
  1928. }
  1929. .col-sm-offset-2 {
  1930. margin-left: 16.66666667%;
  1931. }
  1932. .col-sm-offset-1 {
  1933. margin-left: 8.33333333%;
  1934. }
  1935. .col-sm-offset-0 {
  1936. margin-left: 0%;
  1937. }
  1938. }
  1939. @media (min-width: 992px) {
  1940. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1941. float: left;
  1942. }
  1943. .col-md-12 {
  1944. width: 100%;
  1945. }
  1946. .col-md-11 {
  1947. width: 91.66666667%;
  1948. }
  1949. .col-md-10 {
  1950. width: 83.33333333%;
  1951. }
  1952. .col-md-9 {
  1953. width: 75%;
  1954. }
  1955. .col-md-8 {
  1956. width: 66.66666667%;
  1957. }
  1958. .col-md-7 {
  1959. width: 58.33333333%;
  1960. }
  1961. .col-md-6 {
  1962. width: 50%;
  1963. }
  1964. .col-md-5 {
  1965. width: 41.66666667%;
  1966. }
  1967. .col-md-4 {
  1968. width: 33.33333333%;
  1969. }
  1970. .col-md-3 {
  1971. width: 25%;
  1972. }
  1973. .col-md-2 {
  1974. width: 16.66666667%;
  1975. }
  1976. .col-md-1 {
  1977. width: 8.33333333%;
  1978. }
  1979. .col-md-pull-12 {
  1980. right: 100%;
  1981. }
  1982. .col-md-pull-11 {
  1983. right: 91.66666667%;
  1984. }
  1985. .col-md-pull-10 {
  1986. right: 83.33333333%;
  1987. }
  1988. .col-md-pull-9 {
  1989. right: 75%;
  1990. }
  1991. .col-md-pull-8 {
  1992. right: 66.66666667%;
  1993. }
  1994. .col-md-pull-7 {
  1995. right: 58.33333333%;
  1996. }
  1997. .col-md-pull-6 {
  1998. right: 50%;
  1999. }
  2000. .col-md-pull-5 {
  2001. right: 41.66666667%;
  2002. }
  2003. .col-md-pull-4 {
  2004. right: 33.33333333%;
  2005. }
  2006. .col-md-pull-3 {
  2007. right: 25%;
  2008. }
  2009. .col-md-pull-2 {
  2010. right: 16.66666667%;
  2011. }
  2012. .col-md-pull-1 {
  2013. right: 8.33333333%;
  2014. }
  2015. .col-md-pull-0 {
  2016. right: auto;
  2017. }
  2018. .col-md-push-12 {
  2019. left: 100%;
  2020. }
  2021. .col-md-push-11 {
  2022. left: 91.66666667%;
  2023. }
  2024. .col-md-push-10 {
  2025. left: 83.33333333%;
  2026. }
  2027. .col-md-push-9 {
  2028. left: 75%;
  2029. }
  2030. .col-md-push-8 {
  2031. left: 66.66666667%;
  2032. }
  2033. .col-md-push-7 {
  2034. left: 58.33333333%;
  2035. }
  2036. .col-md-push-6 {
  2037. left: 50%;
  2038. }
  2039. .col-md-push-5 {
  2040. left: 41.66666667%;
  2041. }
  2042. .col-md-push-4 {
  2043. left: 33.33333333%;
  2044. }
  2045. .col-md-push-3 {
  2046. left: 25%;
  2047. }
  2048. .col-md-push-2 {
  2049. left: 16.66666667%;
  2050. }
  2051. .col-md-push-1 {
  2052. left: 8.33333333%;
  2053. }
  2054. .col-md-push-0 {
  2055. left: auto;
  2056. }
  2057. .col-md-offset-12 {
  2058. margin-left: 100%;
  2059. }
  2060. .col-md-offset-11 {
  2061. margin-left: 91.66666667%;
  2062. }
  2063. .col-md-offset-10 {
  2064. margin-left: 83.33333333%;
  2065. }
  2066. .col-md-offset-9 {
  2067. margin-left: 75%;
  2068. }
  2069. .col-md-offset-8 {
  2070. margin-left: 66.66666667%;
  2071. }
  2072. .col-md-offset-7 {
  2073. margin-left: 58.33333333%;
  2074. }
  2075. .col-md-offset-6 {
  2076. margin-left: 50%;
  2077. }
  2078. .col-md-offset-5 {
  2079. margin-left: 41.66666667%;
  2080. }
  2081. .col-md-offset-4 {
  2082. margin-left: 33.33333333%;
  2083. }
  2084. .col-md-offset-3 {
  2085. margin-left: 25%;
  2086. }
  2087. .col-md-offset-2 {
  2088. margin-left: 16.66666667%;
  2089. }
  2090. .col-md-offset-1 {
  2091. margin-left: 8.33333333%;
  2092. }
  2093. .col-md-offset-0 {
  2094. margin-left: 0%;
  2095. }
  2096. }
  2097. @media (min-width: 1200px) {
  2098. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2099. float: left;
  2100. }
  2101. .col-lg-12 {
  2102. width: 100%;
  2103. }
  2104. .col-lg-11 {
  2105. width: 91.66666667%;
  2106. }
  2107. .col-lg-10 {
  2108. width: 83.33333333%;
  2109. }
  2110. .col-lg-9 {
  2111. width: 75%;
  2112. }
  2113. .col-lg-8 {
  2114. width: 66.66666667%;
  2115. }
  2116. .col-lg-7 {
  2117. width: 58.33333333%;
  2118. }
  2119. .col-lg-6 {
  2120. width: 50%;
  2121. }
  2122. .col-lg-5 {
  2123. width: 41.66666667%;
  2124. }
  2125. .col-lg-4 {
  2126. width: 33.33333333%;
  2127. }
  2128. .col-lg-3 {
  2129. width: 25%;
  2130. }
  2131. .col-lg-2 {
  2132. width: 16.66666667%;
  2133. }
  2134. .col-lg-1 {
  2135. width: 8.33333333%;
  2136. }
  2137. .col-lg-pull-12 {
  2138. right: 100%;
  2139. }
  2140. .col-lg-pull-11 {
  2141. right: 91.66666667%;
  2142. }
  2143. .col-lg-pull-10 {
  2144. right: 83.33333333%;
  2145. }
  2146. .col-lg-pull-9 {
  2147. right: 75%;
  2148. }
  2149. .col-lg-pull-8 {
  2150. right: 66.66666667%;
  2151. }
  2152. .col-lg-pull-7 {
  2153. right: 58.33333333%;
  2154. }
  2155. .col-lg-pull-6 {
  2156. right: 50%;
  2157. }
  2158. .col-lg-pull-5 {
  2159. right: 41.66666667%;
  2160. }
  2161. .col-lg-pull-4 {
  2162. right: 33.33333333%;
  2163. }
  2164. .col-lg-pull-3 {
  2165. right: 25%;
  2166. }
  2167. .col-lg-pull-2 {
  2168. right: 16.66666667%;
  2169. }
  2170. .col-lg-pull-1 {
  2171. right: 8.33333333%;
  2172. }
  2173. .col-lg-pull-0 {
  2174. right: auto;
  2175. }
  2176. .col-lg-push-12 {
  2177. left: 100%;
  2178. }
  2179. .col-lg-push-11 {
  2180. left: 91.66666667%;
  2181. }
  2182. .col-lg-push-10 {
  2183. left: 83.33333333%;
  2184. }
  2185. .col-lg-push-9 {
  2186. left: 75%;
  2187. }
  2188. .col-lg-push-8 {
  2189. left: 66.66666667%;
  2190. }
  2191. .col-lg-push-7 {
  2192. left: 58.33333333%;
  2193. }
  2194. .col-lg-push-6 {
  2195. left: 50%;
  2196. }
  2197. .col-lg-push-5 {
  2198. left: 41.66666667%;
  2199. }
  2200. .col-lg-push-4 {
  2201. left: 33.33333333%;
  2202. }
  2203. .col-lg-push-3 {
  2204. left: 25%;
  2205. }
  2206. .col-lg-push-2 {
  2207. left: 16.66666667%;
  2208. }
  2209. .col-lg-push-1 {
  2210. left: 8.33333333%;
  2211. }
  2212. .col-lg-push-0 {
  2213. left: auto;
  2214. }
  2215. .col-lg-offset-12 {
  2216. margin-left: 100%;
  2217. }
  2218. .col-lg-offset-11 {
  2219. margin-left: 91.66666667%;
  2220. }
  2221. .col-lg-offset-10 {
  2222. margin-left: 83.33333333%;
  2223. }
  2224. .col-lg-offset-9 {
  2225. margin-left: 75%;
  2226. }
  2227. .col-lg-offset-8 {
  2228. margin-left: 66.66666667%;
  2229. }
  2230. .col-lg-offset-7 {
  2231. margin-left: 58.33333333%;
  2232. }
  2233. .col-lg-offset-6 {
  2234. margin-left: 50%;
  2235. }
  2236. .col-lg-offset-5 {
  2237. margin-left: 41.66666667%;
  2238. }
  2239. .col-lg-offset-4 {
  2240. margin-left: 33.33333333%;
  2241. }
  2242. .col-lg-offset-3 {
  2243. margin-left: 25%;
  2244. }
  2245. .col-lg-offset-2 {
  2246. margin-left: 16.66666667%;
  2247. }
  2248. .col-lg-offset-1 {
  2249. margin-left: 8.33333333%;
  2250. }
  2251. .col-lg-offset-0 {
  2252. margin-left: 0%;
  2253. }
  2254. }
  2255. table {
  2256. background-color: transparent;
  2257. }
  2258. caption {
  2259. padding-top: 8px;
  2260. padding-bottom: 8px;
  2261. color: #808080;
  2262. text-align: left;
  2263. }
  2264. th {
  2265. text-align: left;
  2266. }
  2267. .table {
  2268. width: 100%;
  2269. max-width: 100%;
  2270. margin-bottom: 18px;
  2271. }
  2272. .table > thead > tr > th,
  2273. .table > tbody > tr > th,
  2274. .table > tfoot > tr > th,
  2275. .table > thead > tr > td,
  2276. .table > tbody > tr > td,
  2277. .table > tfoot > tr > td {
  2278. padding: 8px;
  2279. line-height: 1.42857143;
  2280. vertical-align: top;
  2281. border-top: 1px solid #dddddd;
  2282. }
  2283. .table > thead > tr > th {
  2284. vertical-align: bottom;
  2285. border-bottom: 2px solid #dddddd;
  2286. }
  2287. .table > caption + thead > tr:first-child > th,
  2288. .table > colgroup + thead > tr:first-child > th,
  2289. .table > thead:first-child > tr:first-child > th,
  2290. .table > caption + thead > tr:first-child > td,
  2291. .table > colgroup + thead > tr:first-child > td,
  2292. .table > thead:first-child > tr:first-child > td {
  2293. border-top: 0;
  2294. }
  2295. .table > tbody + tbody {
  2296. border-top: 2px solid #dddddd;
  2297. }
  2298. .table .table {
  2299. background-color: #fcfcfc;
  2300. }
  2301. .table-condensed > thead > tr > th,
  2302. .table-condensed > tbody > tr > th,
  2303. .table-condensed > tfoot > tr > th,
  2304. .table-condensed > thead > tr > td,
  2305. .table-condensed > tbody > tr > td,
  2306. .table-condensed > tfoot > tr > td {
  2307. padding: 5px;
  2308. }
  2309. .table-bordered {
  2310. border: 1px solid #dddddd;
  2311. }
  2312. .table-bordered > thead > tr > th,
  2313. .table-bordered > tbody > tr > th,
  2314. .table-bordered > tfoot > tr > th,
  2315. .table-bordered > thead > tr > td,
  2316. .table-bordered > tbody > tr > td,
  2317. .table-bordered > tfoot > tr > td {
  2318. border: 1px solid #dddddd;
  2319. }
  2320. .table-bordered > thead > tr > th,
  2321. .table-bordered > thead > tr > td {
  2322. border-bottom-width: 2px;
  2323. }
  2324. .table-striped > tbody > tr:nth-of-type(odd) {
  2325. background-color: #f9f9f9;
  2326. }
  2327. .table-hover > tbody > tr:hover {
  2328. background-color: #f5f5f5;
  2329. }
  2330. table col[class*="col-"] {
  2331. position: static;
  2332. float: none;
  2333. display: table-column;
  2334. }
  2335. table td[class*="col-"],
  2336. table th[class*="col-"] {
  2337. position: static;
  2338. float: none;
  2339. display: table-cell;
  2340. }
  2341. .table > thead > tr > td.active,
  2342. .table > tbody > tr > td.active,
  2343. .table > tfoot > tr > td.active,
  2344. .table > thead > tr > th.active,
  2345. .table > tbody > tr > th.active,
  2346. .table > tfoot > tr > th.active,
  2347. .table > thead > tr.active > td,
  2348. .table > tbody > tr.active > td,
  2349. .table > tfoot > tr.active > td,
  2350. .table > thead > tr.active > th,
  2351. .table > tbody > tr.active > th,
  2352. .table > tfoot > tr.active > th {
  2353. background-color: #f5f5f5;
  2354. }
  2355. .table-hover > tbody > tr > td.active:hover,
  2356. .table-hover > tbody > tr > th.active:hover,
  2357. .table-hover > tbody > tr.active:hover > td,
  2358. .table-hover > tbody > tr:hover > .active,
  2359. .table-hover > tbody > tr.active:hover > th {
  2360. background-color: #e8e8e8;
  2361. }
  2362. .table > thead > tr > td.success,
  2363. .table > tbody > tr > td.success,
  2364. .table > tfoot > tr > td.success,
  2365. .table > thead > tr > th.success,
  2366. .table > tbody > tr > th.success,
  2367. .table > tfoot > tr > th.success,
  2368. .table > thead > tr.success > td,
  2369. .table > tbody > tr.success > td,
  2370. .table > tfoot > tr.success > td,
  2371. .table > thead > tr.success > th,
  2372. .table > tbody > tr.success > th,
  2373. .table > tfoot > tr.success > th {
  2374. background-color: #dff0d8;
  2375. }
  2376. .table-hover > tbody > tr > td.success:hover,
  2377. .table-hover > tbody > tr > th.success:hover,
  2378. .table-hover > tbody > tr.success:hover > td,
  2379. .table-hover > tbody > tr:hover > .success,
  2380. .table-hover > tbody > tr.success:hover > th {
  2381. background-color: #d0e9c6;
  2382. }
  2383. .table > thead > tr > td.info,
  2384. .table > tbody > tr > td.info,
  2385. .table > tfoot > tr > td.info,
  2386. .table > thead > tr > th.info,
  2387. .table > tbody > tr > th.info,
  2388. .table > tfoot > tr > th.info,
  2389. .table > thead > tr.info > td,
  2390. .table > tbody > tr.info > td,
  2391. .table > tfoot > tr.info > td,
  2392. .table > thead > tr.info > th,
  2393. .table > tbody > tr.info > th,
  2394. .table > tfoot > tr.info > th {
  2395. background-color: #d9edf7;
  2396. }
  2397. .table-hover > tbody > tr > td.info:hover,
  2398. .table-hover > tbody > tr > th.info:hover,
  2399. .table-hover > tbody > tr.info:hover > td,
  2400. .table-hover > tbody > tr:hover > .info,
  2401. .table-hover > tbody > tr.info:hover > th {
  2402. background-color: #c4e3f3;
  2403. }
  2404. .table > thead > tr > td.warning,
  2405. .table > tbody > tr > td.warning,
  2406. .table > tfoot > tr > td.warning,
  2407. .table > thead > tr > th.warning,
  2408. .table > tbody > tr > th.warning,
  2409. .table > tfoot > tr > th.warning,
  2410. .table > thead > tr.warning > td,
  2411. .table > tbody > tr.warning > td,
  2412. .table > tfoot > tr.warning > td,
  2413. .table > thead > tr.warning > th,
  2414. .table > tbody > tr.warning > th,
  2415. .table > tfoot > tr.warning > th {
  2416. background-color: #fcf8e3;
  2417. }
  2418. .table-hover > tbody > tr > td.warning:hover,
  2419. .table-hover > tbody > tr > th.warning:hover,
  2420. .table-hover > tbody > tr.warning:hover > td,
  2421. .table-hover > tbody > tr:hover > .warning,
  2422. .table-hover > tbody > tr.warning:hover > th {
  2423. background-color: #faf2cc;
  2424. }
  2425. .table > thead > tr > td.danger,
  2426. .table > tbody > tr > td.danger,
  2427. .table > tfoot > tr > td.danger,
  2428. .table > thead > tr > th.danger,
  2429. .table > tbody > tr > th.danger,
  2430. .table > tfoot > tr > th.danger,
  2431. .table > thead > tr.danger > td,
  2432. .table > tbody > tr.danger > td,
  2433. .table > tfoot > tr.danger > td,
  2434. .table > thead > tr.danger > th,
  2435. .table > tbody > tr.danger > th,
  2436. .table > tfoot > tr.danger > th {
  2437. background-color: #f2dede;
  2438. }
  2439. .table-hover > tbody > tr > td.danger:hover,
  2440. .table-hover > tbody > tr > th.danger:hover,
  2441. .table-hover > tbody > tr.danger:hover > td,
  2442. .table-hover > tbody > tr:hover > .danger,
  2443. .table-hover > tbody > tr.danger:hover > th {
  2444. background-color: #ebcccc;
  2445. }
  2446. .table-responsive {
  2447. overflow-x: auto;
  2448. min-height: 0.01%;
  2449. }
  2450. @media screen and (max-width: 767px) {
  2451. .table-responsive {
  2452. width: 100%;
  2453. margin-bottom: 13.5px;
  2454. overflow-y: hidden;
  2455. -ms-overflow-style: -ms-autohiding-scrollbar;
  2456. border: 1px solid #dddddd;
  2457. }
  2458. .table-responsive > .table {
  2459. margin-bottom: 0;
  2460. }
  2461. .table-responsive > .table > thead > tr > th,
  2462. .table-responsive > .table > tbody > tr > th,
  2463. .table-responsive > .table > tfoot > tr > th,
  2464. .table-responsive > .table > thead > tr > td,
  2465. .table-responsive > .table > tbody > tr > td,
  2466. .table-responsive > .table > tfoot > tr > td {
  2467. white-space: nowrap;
  2468. }
  2469. .table-responsive > .table-bordered {
  2470. border: 0;
  2471. }
  2472. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2473. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2474. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2475. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2476. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2477. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2478. border-left: 0;
  2479. }
  2480. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2481. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2482. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2483. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2484. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2485. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2486. border-right: 0;
  2487. }
  2488. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2489. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2490. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2491. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2492. border-bottom: 0;
  2493. }
  2494. }
  2495. fieldset {
  2496. padding: 0;
  2497. margin: 0;
  2498. border: 0;
  2499. min-width: 0;
  2500. }
  2501. legend {
  2502. display: block;
  2503. width: 100%;
  2504. padding: 0;
  2505. margin-bottom: 18px;
  2506. font-size: 19.5px;
  2507. line-height: inherit;
  2508. color: #777777;
  2509. border: 0;
  2510. border-bottom: 1px solid #e5e5e5;
  2511. }
  2512. label {
  2513. display: inline-block;
  2514. max-width: 100%;
  2515. margin-bottom: 5px;
  2516. font-weight: bold;
  2517. }
  2518. input[type="search"] {
  2519. -webkit-box-sizing: border-box;
  2520. -moz-box-sizing: border-box;
  2521. box-sizing: border-box;
  2522. }
  2523. input[type="radio"],
  2524. input[type="checkbox"] {
  2525. margin: 4px 0 0;
  2526. margin-top: 1px \9;
  2527. line-height: normal;
  2528. }
  2529. input[type="file"] {
  2530. display: block;
  2531. }
  2532. input[type="range"] {
  2533. display: block;
  2534. width: 100%;
  2535. }
  2536. select[multiple],
  2537. select[size] {
  2538. height: auto;
  2539. }
  2540. input[type="file"]:focus,
  2541. input[type="radio"]:focus,
  2542. input[type="checkbox"]:focus {
  2543. outline: 5px auto -webkit-focus-ring-color;
  2544. outline-offset: -2px;
  2545. }
  2546. output {
  2547. display: block;
  2548. padding-top: 9px;
  2549. font-size: 13px;
  2550. line-height: 1.42857143;
  2551. color: #777777;
  2552. }
  2553. .form-control {
  2554. display: block;
  2555. width: 100%;
  2556. height: 36px;
  2557. padding: 8px 12px;
  2558. font-size: 13px;
  2559. line-height: 1.42857143;
  2560. color: #777777;
  2561. background-color: #ffffff;
  2562. background-image: none;
  2563. border: 1px solid #dddddd;
  2564. border-radius: 2px;
  2565. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2566. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2567. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  2568. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2569. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2570. }
  2571. .form-control:focus {
  2572. border-color: #66afe9;
  2573. outline: 0;
  2574. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2575. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2576. }
  2577. .form-control::-moz-placeholder {
  2578. color: #dddddd;
  2579. opacity: 1;
  2580. }
  2581. .form-control:-ms-input-placeholder {
  2582. color: #dddddd;
  2583. }
  2584. .form-control::-webkit-input-placeholder {
  2585. color: #dddddd;
  2586. }
  2587. .form-control::-ms-expand {
  2588. border: 0;
  2589. background-color: transparent;
  2590. }
  2591. .form-control[disabled],
  2592. .form-control[readonly],
  2593. fieldset[disabled] .form-control {
  2594. background-color: #dddddd;
  2595. opacity: 1;
  2596. }
  2597. .form-control[disabled],
  2598. fieldset[disabled] .form-control {
  2599. cursor: not-allowed;
  2600. }
  2601. textarea.form-control {
  2602. height: auto;
  2603. }
  2604. input[type="search"] {
  2605. -webkit-appearance: none;
  2606. }
  2607. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2608. input[type="date"].form-control,
  2609. input[type="time"].form-control,
  2610. input[type="datetime-local"].form-control,
  2611. input[type="month"].form-control {
  2612. line-height: 36px;
  2613. }
  2614. input[type="date"].input-sm,
  2615. input[type="time"].input-sm,
  2616. input[type="datetime-local"].input-sm,
  2617. input[type="month"].input-sm,
  2618. .input-group-sm input[type="date"],
  2619. .input-group-sm input[type="time"],
  2620. .input-group-sm input[type="datetime-local"],
  2621. .input-group-sm input[type="month"] {
  2622. line-height: 30px;
  2623. }
  2624. input[type="date"].input-lg,
  2625. input[type="time"].input-lg,
  2626. input[type="datetime-local"].input-lg,
  2627. input[type="month"].input-lg,
  2628. .input-group-lg input[type="date"],
  2629. .input-group-lg input[type="time"],
  2630. .input-group-lg input[type="datetime-local"],
  2631. .input-group-lg input[type="month"] {
  2632. line-height: 53px;
  2633. }
  2634. }
  2635. .form-group {
  2636. margin-bottom: 15px;
  2637. }
  2638. .radio,
  2639. .checkbox {
  2640. position: relative;
  2641. display: block;
  2642. margin-top: 10px;
  2643. margin-bottom: 10px;
  2644. }
  2645. .radio label,
  2646. .checkbox label {
  2647. min-height: 18px;
  2648. padding-left: 20px;
  2649. margin-bottom: 0;
  2650. font-weight: normal;
  2651. cursor: pointer;
  2652. }
  2653. .radio input[type="radio"],
  2654. .radio-inline input[type="radio"],
  2655. .checkbox input[type="checkbox"],
  2656. .checkbox-inline input[type="checkbox"] {
  2657. position: absolute;
  2658. margin-left: -20px;
  2659. margin-top: 4px \9;
  2660. }
  2661. .radio + .radio,
  2662. .checkbox + .checkbox {
  2663. margin-top: -5px;
  2664. }
  2665. .radio-inline,
  2666. .checkbox-inline {
  2667. position: relative;
  2668. display: inline-block;
  2669. padding-left: 20px;
  2670. margin-bottom: 0;
  2671. vertical-align: middle;
  2672. font-weight: normal;
  2673. cursor: pointer;
  2674. }
  2675. .radio-inline + .radio-inline,
  2676. .checkbox-inline + .checkbox-inline {
  2677. margin-top: 0;
  2678. margin-left: 10px;
  2679. }
  2680. input[type="radio"][disabled],
  2681. input[type="checkbox"][disabled],
  2682. input[type="radio"].disabled,
  2683. input[type="checkbox"].disabled,
  2684. fieldset[disabled] input[type="radio"],
  2685. fieldset[disabled] input[type="checkbox"] {
  2686. cursor: not-allowed;
  2687. }
  2688. .radio-inline.disabled,
  2689. .checkbox-inline.disabled,
  2690. fieldset[disabled] .radio-inline,
  2691. fieldset[disabled] .checkbox-inline {
  2692. cursor: not-allowed;
  2693. }
  2694. .radio.disabled label,
  2695. .checkbox.disabled label,
  2696. fieldset[disabled] .radio label,
  2697. fieldset[disabled] .checkbox label {
  2698. cursor: not-allowed;
  2699. }
  2700. .form-control-static {
  2701. padding-top: 9px;
  2702. padding-bottom: 9px;
  2703. margin-bottom: 0;
  2704. min-height: 31px;
  2705. }
  2706. .form-control-static.input-lg,
  2707. .form-control-static.input-sm {
  2708. padding-left: 0;
  2709. padding-right: 0;
  2710. }
  2711. .input-sm {
  2712. height: 30px;
  2713. padding: 5px 10px;
  2714. font-size: 12px;
  2715. line-height: 1.5;
  2716. border-radius: 3px;
  2717. }
  2718. select.input-sm {
  2719. height: 30px;
  2720. line-height: 30px;
  2721. }
  2722. textarea.input-sm,
  2723. select[multiple].input-sm {
  2724. height: auto;
  2725. }
  2726. .form-group-sm .form-control {
  2727. height: 30px;
  2728. padding: 5px 10px;
  2729. font-size: 12px;
  2730. line-height: 1.5;
  2731. border-radius: 3px;
  2732. }
  2733. .form-group-sm select.form-control {
  2734. height: 30px;
  2735. line-height: 30px;
  2736. }
  2737. .form-group-sm textarea.form-control,
  2738. .form-group-sm select[multiple].form-control {
  2739. height: auto;
  2740. }
  2741. .form-group-sm .form-control-static {
  2742. height: 30px;
  2743. min-height: 30px;
  2744. padding: 6px 10px;
  2745. font-size: 12px;
  2746. line-height: 1.5;
  2747. }
  2748. .input-lg {
  2749. height: 53px;
  2750. padding: 14px 16px;
  2751. font-size: 17px;
  2752. line-height: 1.3333333;
  2753. border-radius: 6px;
  2754. }
  2755. select.input-lg {
  2756. height: 53px;
  2757. line-height: 53px;
  2758. }
  2759. textarea.input-lg,
  2760. select[multiple].input-lg {
  2761. height: auto;
  2762. }
  2763. .form-group-lg .form-control {
  2764. height: 53px;
  2765. padding: 14px 16px;
  2766. font-size: 17px;
  2767. line-height: 1.3333333;
  2768. border-radius: 6px;
  2769. }
  2770. .form-group-lg select.form-control {
  2771. height: 53px;
  2772. line-height: 53px;
  2773. }
  2774. .form-group-lg textarea.form-control,
  2775. .form-group-lg select[multiple].form-control {
  2776. height: auto;
  2777. }
  2778. .form-group-lg .form-control-static {
  2779. height: 53px;
  2780. min-height: 35px;
  2781. padding: 15px 16px;
  2782. font-size: 17px;
  2783. line-height: 1.3333333;
  2784. }
  2785. .has-feedback {
  2786. position: relative;
  2787. }
  2788. .has-feedback .form-control {
  2789. padding-right: 45px;
  2790. }
  2791. .form-control-feedback {
  2792. position: absolute;
  2793. top: 0;
  2794. right: 0;
  2795. z-index: 2;
  2796. display: block;
  2797. width: 36px;
  2798. height: 36px;
  2799. line-height: 36px;
  2800. text-align: center;
  2801. pointer-events: none;
  2802. }
  2803. .input-lg + .form-control-feedback,
  2804. .input-group-lg + .form-control-feedback,
  2805. .form-group-lg .form-control + .form-control-feedback {
  2806. width: 53px;
  2807. height: 53px;
  2808. line-height: 53px;
  2809. }
  2810. .input-sm + .form-control-feedback,
  2811. .input-group-sm + .form-control-feedback,
  2812. .form-group-sm .form-control + .form-control-feedback {
  2813. width: 30px;
  2814. height: 30px;
  2815. line-height: 30px;
  2816. }
  2817. .has-success .help-block,
  2818. .has-success .control-label,
  2819. .has-success .radio,
  2820. .has-success .checkbox,
  2821. .has-success .radio-inline,
  2822. .has-success .checkbox-inline,
  2823. .has-success.radio label,
  2824. .has-success.checkbox label,
  2825. .has-success.radio-inline label,
  2826. .has-success.checkbox-inline label {
  2827. color: #468847;
  2828. }
  2829. .has-success .form-control {
  2830. border-color: #468847;
  2831. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2832. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2833. }
  2834. .has-success .form-control:focus {
  2835. border-color: #356635;
  2836. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  2837. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  2838. }
  2839. .has-success .input-group-addon {
  2840. color: #468847;
  2841. border-color: #468847;
  2842. background-color: #dff0d8;
  2843. }
  2844. .has-success .form-control-feedback {
  2845. color: #468847;
  2846. }
  2847. .has-warning .help-block,
  2848. .has-warning .control-label,
  2849. .has-warning .radio,
  2850. .has-warning .checkbox,
  2851. .has-warning .radio-inline,
  2852. .has-warning .checkbox-inline,
  2853. .has-warning.radio label,
  2854. .has-warning.checkbox label,
  2855. .has-warning.radio-inline label,
  2856. .has-warning.checkbox-inline label {
  2857. color: #c09853;
  2858. }
  2859. .has-warning .form-control {
  2860. border-color: #c09853;
  2861. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2862. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2863. }
  2864. .has-warning .form-control:focus {
  2865. border-color: #a47e3c;
  2866. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  2867. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  2868. }
  2869. .has-warning .input-group-addon {
  2870. color: #c09853;
  2871. border-color: #c09853;
  2872. background-color: #fcf8e3;
  2873. }
  2874. .has-warning .form-control-feedback {
  2875. color: #c09853;
  2876. }
  2877. .has-error .help-block,
  2878. .has-error .control-label,
  2879. .has-error .radio,
  2880. .has-error .checkbox,
  2881. .has-error .radio-inline,
  2882. .has-error .checkbox-inline,
  2883. .has-error.radio label,
  2884. .has-error.checkbox label,
  2885. .has-error.radio-inline label,
  2886. .has-error.checkbox-inline label {
  2887. color: #b94a48;
  2888. }
  2889. .has-error .form-control {
  2890. border-color: #b94a48;
  2891. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2892. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2893. }
  2894. .has-error .form-control:focus {
  2895. border-color: #953b39;
  2896. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  2897. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  2898. }
  2899. .has-error .input-group-addon {
  2900. color: #b94a48;
  2901. border-color: #b94a48;
  2902. background-color: #f2dede;
  2903. }
  2904. .has-error .form-control-feedback {
  2905. color: #b94a48;
  2906. }
  2907. .has-feedback label ~ .form-control-feedback {
  2908. top: 23px;
  2909. }
  2910. .has-feedback label.sr-only ~ .form-control-feedback {
  2911. top: 0;
  2912. }
  2913. .help-block {
  2914. display: block;
  2915. margin-top: 5px;
  2916. margin-bottom: 10px;
  2917. color: #b7b7b7;
  2918. }
  2919. @media (min-width: 768px) {
  2920. .form-inline .form-group {
  2921. display: inline-block;
  2922. margin-bottom: 0;
  2923. vertical-align: middle;
  2924. }
  2925. .form-inline .form-control {
  2926. display: inline-block;
  2927. width: auto;
  2928. vertical-align: middle;
  2929. }
  2930. .form-inline .form-control-static {
  2931. display: inline-block;
  2932. }
  2933. .form-inline .input-group {
  2934. display: inline-table;
  2935. vertical-align: middle;
  2936. }
  2937. .form-inline .input-group .input-group-addon,
  2938. .form-inline .input-group .input-group-btn,
  2939. .form-inline .input-group .form-control {
  2940. width: auto;
  2941. }
  2942. .form-inline .input-group > .form-control {
  2943. width: 100%;
  2944. }
  2945. .form-inline .control-label {
  2946. margin-bottom: 0;
  2947. vertical-align: middle;
  2948. }
  2949. .form-inline .radio,
  2950. .form-inline .checkbox {
  2951. display: inline-block;
  2952. margin-top: 0;
  2953. margin-bottom: 0;
  2954. vertical-align: middle;
  2955. }
  2956. .form-inline .radio label,
  2957. .form-inline .checkbox label {
  2958. padding-left: 0;
  2959. }
  2960. .form-inline .radio input[type="radio"],
  2961. .form-inline .checkbox input[type="checkbox"] {
  2962. position: relative;
  2963. margin-left: 0;
  2964. }
  2965. .form-inline .has-feedback .form-control-feedback {
  2966. top: 0;
  2967. }
  2968. }
  2969. .form-horizontal .radio,
  2970. .form-horizontal .checkbox,
  2971. .form-horizontal .radio-inline,
  2972. .form-horizontal .checkbox-inline {
  2973. margin-top: 0;
  2974. margin-bottom: 0;
  2975. padding-top: 9px;
  2976. }
  2977. .form-horizontal .radio,
  2978. .form-horizontal .checkbox {
  2979. min-height: 27px;
  2980. }
  2981. .form-horizontal .form-group {
  2982. margin-left: -15px;
  2983. margin-right: -15px;
  2984. }
  2985. @media (min-width: 768px) {
  2986. .form-horizontal .control-label {
  2987. text-align: right;
  2988. margin-bottom: 0;
  2989. padding-top: 9px;
  2990. }
  2991. }
  2992. .form-horizontal .has-feedback .form-control-feedback {
  2993. right: 15px;
  2994. }
  2995. @media (min-width: 768px) {
  2996. .form-horizontal .form-group-lg .control-label {
  2997. padding-top: 15px;
  2998. font-size: 17px;
  2999. }
  3000. }
  3001. @media (min-width: 768px) {
  3002. .form-horizontal .form-group-sm .control-label {
  3003. padding-top: 6px;
  3004. font-size: 12px;
  3005. }
  3006. }
  3007. .btn {
  3008. display: inline-block;
  3009. margin-bottom: 0;
  3010. font-weight: normal;
  3011. text-align: center;
  3012. vertical-align: middle;
  3013. -ms-touch-action: manipulation;
  3014. touch-action: manipulation;
  3015. cursor: pointer;
  3016. background-image: none;
  3017. border: 1px solid transparent;
  3018. white-space: nowrap;
  3019. padding: 8px 12px;
  3020. font-size: 13px;
  3021. line-height: 1.42857143;
  3022. border-radius: 2px;
  3023. -webkit-user-select: none;
  3024. -moz-user-select: none;
  3025. -ms-user-select: none;
  3026. user-select: none;
  3027. }
  3028. .btn:focus,
  3029. .btn:active:focus,
  3030. .btn.active:focus,
  3031. .btn.focus,
  3032. .btn:active.focus,
  3033. .btn.active.focus {
  3034. outline: 5px auto -webkit-focus-ring-color;
  3035. outline-offset: -2px;
  3036. }
  3037. .btn:hover,
  3038. .btn:focus,
  3039. .btn.focus {
  3040. color: #ffffff;
  3041. text-decoration: none;
  3042. }
  3043. .btn:active,
  3044. .btn.active {
  3045. outline: 0;
  3046. background-image: none;
  3047. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3048. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3049. }
  3050. .btn.disabled,
  3051. .btn[disabled],
  3052. fieldset[disabled] .btn {
  3053. cursor: not-allowed;
  3054. opacity: 0.65;
  3055. filter: alpha(opacity=65);
  3056. -webkit-box-shadow: none;
  3057. box-shadow: none;
  3058. }
  3059. a.btn.disabled,
  3060. fieldset[disabled] a.btn {
  3061. pointer-events: none;
  3062. }
  3063. .btn-default {
  3064. color: #ffffff;
  3065. background-color: #474949;
  3066. border-color: #474949;
  3067. }
  3068. .btn-default:focus,
  3069. .btn-default.focus {
  3070. color: #ffffff;
  3071. background-color: #2e2f2f;
  3072. border-color: #080808;
  3073. }
  3074. .btn-default:hover {
  3075. color: #ffffff;
  3076. background-color: #2e2f2f;
  3077. border-color: #292a2a;
  3078. }
  3079. .btn-default:active,
  3080. .btn-default.active,
  3081. .open > .dropdown-toggle.btn-default {
  3082. color: #ffffff;
  3083. background-color: #2e2f2f;
  3084. border-color: #292a2a;
  3085. }
  3086. .btn-default:active:hover,
  3087. .btn-default.active:hover,
  3088. .open > .dropdown-toggle.btn-default:hover,
  3089. .btn-default:active:focus,
  3090. .btn-default.active:focus,
  3091. .open > .dropdown-toggle.btn-default:focus,
  3092. .btn-default:active.focus,
  3093. .btn-default.active.focus,
  3094. .open > .dropdown-toggle.btn-default.focus {
  3095. color: #ffffff;
  3096. background-color: #1c1d1d;
  3097. border-color: #080808;
  3098. }
  3099. .btn-default:active,
  3100. .btn-default.active,
  3101. .open > .dropdown-toggle.btn-default {
  3102. background-image: none;
  3103. }
  3104. .btn-default.disabled:hover,
  3105. .btn-default[disabled]:hover,
  3106. fieldset[disabled] .btn-default:hover,
  3107. .btn-default.disabled:focus,
  3108. .btn-default[disabled]:focus,
  3109. fieldset[disabled] .btn-default:focus,
  3110. .btn-default.disabled.focus,
  3111. .btn-default[disabled].focus,
  3112. fieldset[disabled] .btn-default.focus {
  3113. background-color: #474949;
  3114. border-color: #474949;
  3115. }
  3116. .btn-default .badge {
  3117. color: #474949;
  3118. background-color: #ffffff;
  3119. }
  3120. .btn-primary {
  3121. color: #ffffff;
  3122. background-color: #d9230f;
  3123. border-color: #d9230f;
  3124. }
  3125. .btn-primary:focus,
  3126. .btn-primary.focus {
  3127. color: #ffffff;
  3128. background-color: #a91b0c;
  3129. border-color: #621007;
  3130. }
  3131. .btn-primary:hover {
  3132. color: #ffffff;
  3133. background-color: #a91b0c;
  3134. border-color: #a01a0b;
  3135. }
  3136. .btn-primary:active,
  3137. .btn-primary.active,
  3138. .open > .dropdown-toggle.btn-primary {
  3139. color: #ffffff;
  3140. background-color: #a91b0c;
  3141. border-color: #a01a0b;
  3142. }
  3143. .btn-primary:active:hover,
  3144. .btn-primary.active:hover,
  3145. .open > .dropdown-toggle.btn-primary:hover,
  3146. .btn-primary:active:focus,
  3147. .btn-primary.active:focus,
  3148. .open > .dropdown-toggle.btn-primary:focus,
  3149. .btn-primary:active.focus,
  3150. .btn-primary.active.focus,
  3151. .open > .dropdown-toggle.btn-primary.focus {
  3152. color: #ffffff;
  3153. background-color: #881609;
  3154. border-color: #621007;
  3155. }
  3156. .btn-primary:active,
  3157. .btn-primary.active,
  3158. .open > .dropdown-toggle.btn-primary {
  3159. background-image: none;
  3160. }
  3161. .btn-primary.disabled:hover,
  3162. .btn-primary[disabled]:hover,
  3163. fieldset[disabled] .btn-primary:hover,
  3164. .btn-primary.disabled:focus,
  3165. .btn-primary[disabled]:focus,
  3166. fieldset[disabled] .btn-primary:focus,
  3167. .btn-primary.disabled.focus,
  3168. .btn-primary[disabled].focus,
  3169. fieldset[disabled] .btn-primary.focus {
  3170. background-color: #d9230f;
  3171. border-color: #d9230f;
  3172. }
  3173. .btn-primary .badge {
  3174. color: #d9230f;
  3175. background-color: #ffffff;
  3176. }
  3177. .btn-success {
  3178. color: #ffffff;
  3179. background-color: #37ABC8;
  3180. border-color: #37ABC8;
  3181. }
  3182. .btn-fb {
  3183. color: #ffffff;
  3184. background-color: #3B5999;
  3185. border-color: #3B5999;
  3186. }
  3187. .btn-success:focus,
  3188. .btn-success.focus {
  3189. color: #ffffff;
  3190. background-color: #2f6405;
  3191. border-color: #0d1b01;
  3192. }
  3193. .btn-success:hover {
  3194. color: #ffffff;
  3195. background-color: #2f6405;
  3196. border-color: #2b5a05;
  3197. }
  3198. .btn-success:active,
  3199. .btn-success.active,
  3200. .open > .dropdown-toggle.btn-success {
  3201. color: #ffffff;
  3202. background-color: #2f6405;
  3203. border-color: #2b5a05;
  3204. }
  3205. .btn-success:active:hover,
  3206. .btn-success.active:hover,
  3207. .open > .dropdown-toggle.btn-success:hover,
  3208. .btn-success:active:focus,
  3209. .btn-success.active:focus,
  3210. .open > .dropdown-toggle.btn-success:focus,
  3211. .btn-success:active.focus,
  3212. .btn-success.active.focus,
  3213. .open > .dropdown-toggle.btn-success.focus {
  3214. color: #ffffff;
  3215. background-color: #1f4204;
  3216. border-color: #0d1b01;
  3217. }
  3218. .btn-success:active,
  3219. .btn-success.active,
  3220. .open > .dropdown-toggle.btn-success {
  3221. background-image: none;
  3222. }
  3223. .btn-success.disabled:hover,
  3224. .btn-success[disabled]:hover,
  3225. fieldset[disabled] .btn-success:hover,
  3226. .btn-success.disabled:focus,
  3227. .btn-success[disabled]:focus,
  3228. fieldset[disabled] .btn-success:focus,
  3229. .btn-success.disabled.focus,
  3230. .btn-success[disabled].focus,
  3231. fieldset[disabled] .btn-success.focus {
  3232. background-color: #469408;
  3233. border-color: #469408;
  3234. }
  3235. .btn-success .badge {
  3236. color: #469408;
  3237. background-color: #ffffff;
  3238. }
  3239. .btn-info {
  3240. color: #ffffff;
  3241. background-color: #029acf;
  3242. border-color: #029acf;
  3243. }
  3244. .btn-info:focus,
  3245. .btn-info.focus {
  3246. color: #ffffff;
  3247. background-color: #02749c;
  3248. border-color: #013c51;
  3249. }
  3250. .btn-info:hover {
  3251. color: #ffffff;
  3252. background-color: #02749c;
  3253. border-color: #016d92;
  3254. }
  3255. .btn-info:active,
  3256. .btn-info.active,
  3257. .open > .dropdown-toggle.btn-info {
  3258. color: #ffffff;
  3259. background-color: #02749c;
  3260. border-color: #016d92;
  3261. }
  3262. .btn-info:active:hover,
  3263. .btn-info.active:hover,
  3264. .open > .dropdown-toggle.btn-info:hover,
  3265. .btn-info:active:focus,
  3266. .btn-info.active:focus,
  3267. .open > .dropdown-toggle.btn-info:focus,
  3268. .btn-info:active.focus,
  3269. .btn-info.active.focus,
  3270. .open > .dropdown-toggle.btn-info.focus {
  3271. color: #ffffff;
  3272. background-color: #015a79;
  3273. border-color: #013c51;
  3274. }
  3275. .btn-info:active,
  3276. .btn-info.active,
  3277. .open > .dropdown-toggle.btn-info {
  3278. background-image: none;
  3279. }
  3280. .btn-info.disabled:hover,
  3281. .btn-info[disabled]:hover,
  3282. fieldset[disabled] .btn-info:hover,
  3283. .btn-info.disabled:focus,
  3284. .btn-info[disabled]:focus,
  3285. fieldset[disabled] .btn-info:focus,
  3286. .btn-info.disabled.focus,
  3287. .btn-info[disabled].focus,
  3288. fieldset[disabled] .btn-info.focus {
  3289. background-color: #029acf;
  3290. border-color: #029acf;
  3291. }
  3292. .btn-info .badge {
  3293. color: #029acf;
  3294. background-color: #ffffff;
  3295. }
  3296. .btn-warning {
  3297. color: #ffffff;
  3298. background-color: #9b479f;
  3299. border-color: #9b479f;
  3300. }
  3301. .btn-warning:focus,
  3302. .btn-warning.focus {
  3303. color: #ffffff;
  3304. background-color: #79377c;
  3305. border-color: #452047;
  3306. }
  3307. .btn-warning:hover {
  3308. color: #ffffff;
  3309. background-color: #79377c;
  3310. border-color: #723475;
  3311. }
  3312. .btn-warning:active,
  3313. .btn-warning.active,
  3314. .open > .dropdown-toggle.btn-warning {
  3315. color: #ffffff;
  3316. background-color: #79377c;
  3317. border-color: #723475;
  3318. }
  3319. .btn-warning:active:hover,
  3320. .btn-warning.active:hover,
  3321. .open > .dropdown-toggle.btn-warning:hover,
  3322. .btn-warning:active:focus,
  3323. .btn-warning.active:focus,
  3324. .open > .dropdown-toggle.btn-warning:focus,
  3325. .btn-warning:active.focus,
  3326. .btn-warning.active.focus,
  3327. .open > .dropdown-toggle.btn-warning.focus {
  3328. color: #ffffff;
  3329. background-color: #612c63;
  3330. border-color: #452047;
  3331. }
  3332. .btn-warning:active,
  3333. .btn-warning.active,
  3334. .open > .dropdown-toggle.btn-warning {
  3335. background-image: none;
  3336. }
  3337. .btn-warning.disabled:hover,
  3338. .btn-warning[disabled]:hover,
  3339. fieldset[disabled] .btn-warning:hover,
  3340. .btn-warning.disabled:focus,
  3341. .btn-warning[disabled]:focus,
  3342. fieldset[disabled] .btn-warning:focus,
  3343. .btn-warning.disabled.focus,
  3344. .btn-warning[disabled].focus,
  3345. fieldset[disabled] .btn-warning.focus {
  3346. background-color: #9b479f;
  3347. border-color: #9b479f;
  3348. }
  3349. .btn-warning .badge {
  3350. color: #9b479f;
  3351. background-color: #ffffff;
  3352. }
  3353. .btn-danger {
  3354. color: #ffffff;
  3355. background-color: #d9831f;
  3356. border-color: #d9831f;
  3357. }
  3358. .btn-danger:focus,
  3359. .btn-danger.focus {
  3360. color: #ffffff;
  3361. background-color: #ac6819;
  3362. border-color: #69400f;
  3363. }
  3364. .btn-danger:hover {
  3365. color: #ffffff;
  3366. background-color: #ac6819;
  3367. border-color: #a36317;
  3368. }
  3369. .btn-danger:active,
  3370. .btn-danger.active,
  3371. .open > .dropdown-toggle.btn-danger {
  3372. color: #ffffff;
  3373. background-color: #ac6819;
  3374. border-color: #a36317;
  3375. }
  3376. .btn-danger:active:hover,
  3377. .btn-danger.active:hover,
  3378. .open > .dropdown-toggle.btn-danger:hover,
  3379. .btn-danger:active:focus,
  3380. .btn-danger.active:focus,
  3381. .open > .dropdown-toggle.btn-danger:focus,
  3382. .btn-danger:active.focus,
  3383. .btn-danger.active.focus,
  3384. .open > .dropdown-toggle.btn-danger.focus {
  3385. color: #ffffff;
  3386. background-color: #8d5514;
  3387. border-color: #69400f;
  3388. }
  3389. .btn-danger:active,
  3390. .btn-danger.active,
  3391. .open > .dropdown-toggle.btn-danger {
  3392. background-image: none;
  3393. }
  3394. .btn-danger.disabled:hover,
  3395. .btn-danger[disabled]:hover,
  3396. fieldset[disabled] .btn-danger:hover,
  3397. .btn-danger.disabled:focus,
  3398. .btn-danger[disabled]:focus,
  3399. fieldset[disabled] .btn-danger:focus,
  3400. .btn-danger.disabled.focus,
  3401. .btn-danger[disabled].focus,
  3402. fieldset[disabled] .btn-danger.focus {
  3403. background-color: #d9831f;
  3404. border-color: #d9831f;
  3405. }
  3406. .btn-danger .badge {
  3407. color: #d9831f;
  3408. background-color: #ffffff;
  3409. }
  3410. .btn-link {
  3411. color: #d9230f;
  3412. font-weight: normal;
  3413. border-radius: 0;
  3414. }
  3415. .btn-link,
  3416. .btn-link:active,
  3417. .btn-link.active,
  3418. .btn-link[disabled],
  3419. fieldset[disabled] .btn-link {
  3420. background-color: transparent;
  3421. -webkit-box-shadow: none;
  3422. box-shadow: none;
  3423. }
  3424. .btn-link,
  3425. .btn-link:hover,
  3426. .btn-link:focus,
  3427. .btn-link:active {
  3428. border-color: transparent;
  3429. }
  3430. .btn-link:hover,
  3431. .btn-link:focus {
  3432. color: #91170a;
  3433. text-decoration: underline;
  3434. background-color: transparent;
  3435. }
  3436. .btn-link[disabled]:hover,
  3437. fieldset[disabled] .btn-link:hover,
  3438. .btn-link[disabled]:focus,
  3439. fieldset[disabled] .btn-link:focus {
  3440. color: #808080;
  3441. text-decoration: none;
  3442. }
  3443. .btn-lg,
  3444. .btn-group-lg > .btn {
  3445. padding: 14px 16px;
  3446. font-size: 17px;
  3447. line-height: 1.3333333;
  3448. border-radius: 6px;
  3449. }
  3450. .btn-sm,
  3451. .btn-group-sm > .btn {
  3452. padding: 5px 10px;
  3453. font-size: 12px;
  3454. line-height: 1.5;
  3455. border-radius: 3px;
  3456. }
  3457. .btn-xs,
  3458. .btn-group-xs > .btn {
  3459. padding: 1px 5px;
  3460. font-size: 12px;
  3461. line-height: 1.5;
  3462. border-radius: 3px;
  3463. }
  3464. .btn-block {
  3465. display: block;
  3466. width: 100%;
  3467. }
  3468. .btn-block + .btn-block {
  3469. margin-top: 5px;
  3470. }
  3471. input[type="submit"].btn-block,
  3472. input[type="reset"].btn-block,
  3473. input[type="button"].btn-block {
  3474. width: 100%;
  3475. }
  3476. .fade {
  3477. opacity: 0;
  3478. -webkit-transition: opacity 0.15s linear;
  3479. -o-transition: opacity 0.15s linear;
  3480. transition: opacity 0.15s linear;
  3481. }
  3482. .fade.in {
  3483. opacity: 1;
  3484. }
  3485. .collapse {
  3486. display: none;
  3487. }
  3488. .collapse.in {
  3489. display: block;
  3490. }
  3491. tr.collapse.in {
  3492. display: table-row;
  3493. }
  3494. tbody.collapse.in {
  3495. display: table-row-group;
  3496. }
  3497. .collapsing {
  3498. position: relative;
  3499. height: 0;
  3500. overflow: hidden;
  3501. -webkit-transition-property: height, visibility;
  3502. -o-transition-property: height, visibility;
  3503. transition-property: height, visibility;
  3504. -webkit-transition-duration: 0.35s;
  3505. -o-transition-duration: 0.35s;
  3506. transition-duration: 0.35s;
  3507. -webkit-transition-timing-function: ease;
  3508. -o-transition-timing-function: ease;
  3509. transition-timing-function: ease;
  3510. }
  3511. .caret {
  3512. display: inline-block;
  3513. width: 0;
  3514. height: 0;
  3515. margin-left: 2px;
  3516. vertical-align: middle;
  3517. border-top: 4px dashed;
  3518. border-top: 4px solid \9;
  3519. border-right: 4px solid transparent;
  3520. border-left: 4px solid transparent;
  3521. }
  3522. .dropup,
  3523. .dropdown {
  3524. position: relative;
  3525. }
  3526. .dropdown-toggle:focus {
  3527. outline: 0;
  3528. }
  3529. .dropdown-menu {
  3530. position: absolute;
  3531. top: 100%;
  3532. left: 0;
  3533. z-index: 1000;
  3534. display: none;
  3535. float: left;
  3536. min-width: 160px;
  3537. padding: 5px 5px;
  3538. margin: 2px 0 0;
  3539. list-style: none;
  3540. /*font-size: 14px;*/
  3541. text-align: left;
  3542. background-color: #000;
  3543. border: 1px solid #000;
  3544. border: 1px solid rgba(0, 0, 0, 0.15);
  3545. border-radius: 4px;
  3546. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3547. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3548. -webkit-background-clip: padding-box;
  3549. background-clip: padding-box;
  3550. }
  3551. .dropdown-menu.pull-right {
  3552. right: 0;
  3553. left: auto;
  3554. }
  3555. .dropdown-menu .divider {
  3556. height: 1px;
  3557. margin: 8px 0;
  3558. overflow: hidden;
  3559. background-color: #000;
  3560. }
  3561. .dropdown-menu > li > a {
  3562. display: block;
  3563. padding: 5px 20px;
  3564. clear: both;
  3565. font-weight: normal;
  3566. line-height: 1.42857143;
  3567. color: #444444;
  3568. white-space: nowrap;
  3569. }
  3570. .dropdown-menu > li > a:hover,
  3571. .dropdown-menu > li > a:focus {
  3572. text-decoration: none;
  3573. color: #ffffff;
  3574. background-color: #444141;
  3575. }
  3576. .dropdown-menu > .active > a,
  3577. .dropdown-menu > .active > a:hover,
  3578. .dropdown-menu > .active > a:focus {
  3579. color: #ffffff;
  3580. text-decoration: none;
  3581. outline: 0;
  3582. background-color: #444141;
  3583. }
  3584. .dropdown-menu > .disabled > a,
  3585. .dropdown-menu > .disabled > a:hover,
  3586. .dropdown-menu > .disabled > a:focus {
  3587. color: #808080;
  3588. }
  3589. .dropdown-menu > .disabled > a:hover,
  3590. .dropdown-menu > .disabled > a:focus {
  3591. text-decoration: none;
  3592. background-color: transparent;
  3593. background-image: none;
  3594. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3595. cursor: not-allowed;
  3596. }
  3597. .open > .dropdown-menu {
  3598. display: block;
  3599. }
  3600. .open > a {
  3601. outline: 0;
  3602. }
  3603. .dropdown-menu-right {
  3604. left: auto;
  3605. right: 0;
  3606. }
  3607. .dropdown-menu-left {
  3608. left: 0;
  3609. right: auto;
  3610. }
  3611. .dropdown-header {
  3612. display: block;
  3613. padding: 3px 20px;
  3614. font-size: 12px;
  3615. line-height: 1.42857143;
  3616. color: #808080;
  3617. white-space: nowrap;
  3618. }
  3619. .dropdown-backdrop {
  3620. position: fixed;
  3621. left: 0;
  3622. right: 0;
  3623. bottom: 0;
  3624. top: 0;
  3625. z-index: 990;
  3626. }
  3627. .pull-right > .dropdown-menu {
  3628. right: 0;
  3629. left: auto;
  3630. }
  3631. .dropup .caret,
  3632. .navbar-fixed-bottom .dropdown .caret {
  3633. border-top: 0;
  3634. border-bottom: 4px dashed;
  3635. border-bottom: 4px solid \9;
  3636. content: "";
  3637. }
  3638. .dropup .dropdown-menu,
  3639. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3640. top: auto;
  3641. bottom: 100%;
  3642. margin-bottom: 2px;
  3643. }
  3644. @media (min-width: 768px) {
  3645. .navbar-right .dropdown-menu {
  3646. left: auto;
  3647. right: 0;
  3648. }
  3649. .navbar-right .dropdown-menu-left {
  3650. left: 0;
  3651. right: auto;
  3652. }
  3653. }
  3654. .btn-group,
  3655. .btn-group-vertical {
  3656. position: relative;
  3657. display: inline-block;
  3658. vertical-align: middle;
  3659. }
  3660. .btn-group > .btn,
  3661. .btn-group-vertical > .btn {
  3662. position: relative;
  3663. float: left;
  3664. }
  3665. .btn-group > .btn:hover,
  3666. .btn-group-vertical > .btn:hover,
  3667. .btn-group > .btn:focus,
  3668. .btn-group-vertical > .btn:focus,
  3669. .btn-group > .btn:active,
  3670. .btn-group-vertical > .btn:active,
  3671. .btn-group > .btn.active,
  3672. .btn-group-vertical > .btn.active {
  3673. z-index: 2;
  3674. }
  3675. .btn-group .btn + .btn,
  3676. .btn-group .btn + .btn-group,
  3677. .btn-group .btn-group + .btn,
  3678. .btn-group .btn-group + .btn-group {
  3679. margin-left: -1px;
  3680. }
  3681. .btn-toolbar {
  3682. margin-left: -5px;
  3683. }
  3684. .btn-toolbar .btn,
  3685. .btn-toolbar .btn-group,
  3686. .btn-toolbar .input-group {
  3687. float: left;
  3688. }
  3689. .btn-toolbar > .btn,
  3690. .btn-toolbar > .btn-group,
  3691. .btn-toolbar > .input-group {
  3692. margin-left: 5px;
  3693. }
  3694. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3695. border-radius: 0;
  3696. }
  3697. .btn-group > .btn:first-child {
  3698. margin-left: 0;
  3699. }
  3700. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3701. border-bottom-right-radius: 0;
  3702. border-top-right-radius: 0;
  3703. }
  3704. .btn-group > .btn:last-child:not(:first-child),
  3705. .btn-group > .dropdown-toggle:not(:first-child) {
  3706. border-bottom-left-radius: 0;
  3707. border-top-left-radius: 0;
  3708. }
  3709. .btn-group > .btn-group {
  3710. float: left;
  3711. }
  3712. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3713. border-radius: 0;
  3714. }
  3715. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3716. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3717. border-bottom-right-radius: 0;
  3718. border-top-right-radius: 0;
  3719. }
  3720. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3721. border-bottom-left-radius: 0;
  3722. border-top-left-radius: 0;
  3723. }
  3724. .btn-group .dropdown-toggle:active,
  3725. .btn-group.open .dropdown-toggle {
  3726. outline: 0;
  3727. }
  3728. .btn-group > .btn + .dropdown-toggle {
  3729. padding-left: 8px;
  3730. padding-right: 8px;
  3731. }
  3732. .btn-group > .btn-lg + .dropdown-toggle {
  3733. padding-left: 12px;
  3734. padding-right: 12px;
  3735. }
  3736. .btn-group.open .dropdown-toggle {
  3737. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3738. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3739. }
  3740. .btn-group.open .dropdown-toggle.btn-link {
  3741. -webkit-box-shadow: none;
  3742. box-shadow: none;
  3743. }
  3744. .btn .caret {
  3745. margin-left: 0;
  3746. }
  3747. .btn-lg .caret {
  3748. border-width: 5px 5px 0;
  3749. border-bottom-width: 0;
  3750. }
  3751. .dropup .btn-lg .caret {
  3752. border-width: 0 5px 5px;
  3753. }
  3754. .btn-group-vertical > .btn,
  3755. .btn-group-vertical > .btn-group,
  3756. .btn-group-vertical > .btn-group > .btn {
  3757. display: block;
  3758. float: none;
  3759. width: 100%;
  3760. max-width: 100%;
  3761. }
  3762. .btn-group-vertical > .btn-group > .btn {
  3763. float: none;
  3764. }
  3765. .btn-group-vertical > .btn + .btn,
  3766. .btn-group-vertical > .btn + .btn-group,
  3767. .btn-group-vertical > .btn-group + .btn,
  3768. .btn-group-vertical > .btn-group + .btn-group {
  3769. margin-top: -1px;
  3770. margin-left: 0;
  3771. }
  3772. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3773. border-radius: 0;
  3774. }
  3775. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3776. border-top-right-radius: 4px;
  3777. border-top-left-radius: 4px;
  3778. border-bottom-right-radius: 0;
  3779. border-bottom-left-radius: 0;
  3780. }
  3781. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3782. border-top-right-radius: 0;
  3783. border-top-left-radius: 0;
  3784. border-bottom-right-radius: 4px;
  3785. border-bottom-left-radius: 4px;
  3786. }
  3787. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3788. border-radius: 0;
  3789. }
  3790. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3791. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3792. border-bottom-right-radius: 0;
  3793. border-bottom-left-radius: 0;
  3794. }
  3795. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3796. border-top-right-radius: 0;
  3797. border-top-left-radius: 0;
  3798. }
  3799. .btn-group-justified {
  3800. display: table;
  3801. width: 100%;
  3802. table-layout: fixed;
  3803. border-collapse: separate;
  3804. }
  3805. .btn-group-justified > .btn,
  3806. .btn-group-justified > .btn-group {
  3807. float: none;
  3808. display: table-cell;
  3809. width: 1%;
  3810. }
  3811. .btn-group-justified > .btn-group .btn {
  3812. width: 100%;
  3813. }
  3814. .btn-group-justified > .btn-group .dropdown-menu {
  3815. left: auto;
  3816. }
  3817. [data-toggle="buttons"] > .btn input[type="radio"],
  3818. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3819. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3820. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3821. position: absolute;
  3822. clip: rect(0, 0, 0, 0);
  3823. pointer-events: none;
  3824. }
  3825. .input-group {
  3826. position: relative;
  3827. display: table;
  3828. border-collapse: separate;
  3829. }
  3830. .input-group[class*="col-"] {
  3831. float: none;
  3832. padding-left: 0;
  3833. padding-right: 0;
  3834. }
  3835. .input-group .form-control {
  3836. position: relative;
  3837. z-index: 2;
  3838. float: left;
  3839. width: 100%;
  3840. margin-bottom: 0;
  3841. }
  3842. .input-group .form-control:focus {
  3843. z-index: 3;
  3844. }
  3845. .input-group-lg > .form-control,
  3846. .input-group-lg > .input-group-addon,
  3847. .input-group-lg > .input-group-btn > .btn {
  3848. height: 53px;
  3849. padding: 14px 16px;
  3850. font-size: 17px;
  3851. line-height: 1.3333333;
  3852. border-radius: 6px;
  3853. }
  3854. select.input-group-lg > .form-control,
  3855. select.input-group-lg > .input-group-addon,
  3856. select.input-group-lg > .input-group-btn > .btn {
  3857. height: 53px;
  3858. line-height: 53px;
  3859. }
  3860. textarea.input-group-lg > .form-control,
  3861. textarea.input-group-lg > .input-group-addon,
  3862. textarea.input-group-lg > .input-group-btn > .btn,
  3863. select[multiple].input-group-lg > .form-control,
  3864. select[multiple].input-group-lg > .input-group-addon,
  3865. select[multiple].input-group-lg > .input-group-btn > .btn {
  3866. height: auto;
  3867. }
  3868. .input-group-sm > .form-control,
  3869. .input-group-sm > .input-group-addon,
  3870. .input-group-sm > .input-group-btn > .btn {
  3871. height: 30px;
  3872. padding: 5px 10px;
  3873. font-size: 12px;
  3874. line-height: 1.5;
  3875. border-radius: 3px;
  3876. }
  3877. select.input-group-sm > .form-control,
  3878. select.input-group-sm > .input-group-addon,
  3879. select.input-group-sm > .input-group-btn > .btn {
  3880. height: 30px;
  3881. line-height: 30px;
  3882. }
  3883. textarea.input-group-sm > .form-control,
  3884. textarea.input-group-sm > .input-group-addon,
  3885. textarea.input-group-sm > .input-group-btn > .btn,
  3886. select[multiple].input-group-sm > .form-control,
  3887. select[multiple].input-group-sm > .input-group-addon,
  3888. select[multiple].input-group-sm > .input-group-btn > .btn {
  3889. height: auto;
  3890. }
  3891. .input-group-addon,
  3892. .input-group-btn,
  3893. .input-group .form-control {
  3894. display: table-cell;
  3895. }
  3896. .input-group-addon:not(:first-child):not(:last-child),
  3897. .input-group-btn:not(:first-child):not(:last-child),
  3898. .input-group .form-control:not(:first-child):not(:last-child) {
  3899. border-radius: 0;
  3900. }
  3901. .input-group-addon,
  3902. .input-group-btn {
  3903. width: 1%;
  3904. white-space: nowrap;
  3905. vertical-align: middle;
  3906. }
  3907. .input-group-addon {
  3908. padding: 8px 12px;
  3909. font-size: 13px;
  3910. font-weight: normal;
  3911. line-height: 1;
  3912. color: #777777;
  3913. text-align: center;
  3914. background-color: #dddddd;
  3915. border: 1px solid #dddddd;
  3916. border-radius: 4px;
  3917. }
  3918. .input-group-addon.input-sm {
  3919. padding: 5px 10px;
  3920. font-size: 12px;
  3921. border-radius: 3px;
  3922. }
  3923. .input-group-addon.input-lg {
  3924. padding: 14px 16px;
  3925. font-size: 17px;
  3926. border-radius: 6px;
  3927. }
  3928. .input-group-addon input[type="radio"],
  3929. .input-group-addon input[type="checkbox"] {
  3930. margin-top: 0;
  3931. }
  3932. .input-group .form-control:first-child,
  3933. .input-group-addon:first-child,
  3934. .input-group-btn:first-child > .btn,
  3935. .input-group-btn:first-child > .btn-group > .btn,
  3936. .input-group-btn:first-child > .dropdown-toggle,
  3937. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3938. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3939. border-bottom-right-radius: 0;
  3940. border-top-right-radius: 0;
  3941. }
  3942. .input-group-addon:first-child {
  3943. border-right: 0;
  3944. }
  3945. .input-group .form-control:last-child,
  3946. .input-group-addon:last-child,
  3947. .input-group-btn:last-child > .btn,
  3948. .input-group-btn:last-child > .btn-group > .btn,
  3949. .input-group-btn:last-child > .dropdown-toggle,
  3950. .input-group-btn:first-child > .btn:not(:first-child),
  3951. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3952. border-bottom-left-radius: 0;
  3953. border-top-left-radius: 0;
  3954. }
  3955. .input-group-addon:last-child {
  3956. border-left: 0;
  3957. }
  3958. .input-group-btn {
  3959. position: relative;
  3960. font-size: 0;
  3961. white-space: nowrap;
  3962. }
  3963. .input-group-btn > .btn {
  3964. position: relative;
  3965. }
  3966. .input-group-btn > .btn + .btn {
  3967. margin-left: -1px;
  3968. }
  3969. .input-group-btn > .btn:hover,
  3970. .input-group-btn > .btn:focus,
  3971. .input-group-btn > .btn:active {
  3972. z-index: 2;
  3973. }
  3974. .input-group-btn:first-child > .btn,
  3975. .input-group-btn:first-child > .btn-group {
  3976. margin-right: -1px;
  3977. }
  3978. .input-group-btn:last-child > .btn,
  3979. .input-group-btn:last-child > .btn-group {
  3980. z-index: 2;
  3981. margin-left: -1px;
  3982. }
  3983. .nav {
  3984. margin-bottom: 0;
  3985. padding-left: 0;
  3986. list-style: none;
  3987. }
  3988. .nav > li {
  3989. position: relative;
  3990. display: block;
  3991. }
  3992. .nav > li > a {
  3993. position: relative;
  3994. display: block;
  3995. padding: 5px 10px;
  3996. }
  3997. .nav > li > a:hover,
  3998. .nav > li > a:focus {
  3999. text-decoration: none;
  4000. background-color: #252525;
  4001. }
  4002. .nav > li.disabled > a {
  4003. color: #808080;
  4004. }
  4005. .nav > li.disabled > a:hover,
  4006. .nav > li.disabled > a:focus {
  4007. color: #808080;
  4008. text-decoration: none;
  4009. background-color: transparent;
  4010. cursor: not-allowed;
  4011. }
  4012. .nav .open > a,
  4013. .nav .open > a:hover,
  4014. .nav .open > a:focus {
  4015. background-color: #dddddd;
  4016. border-color: #808080;
  4017. }
  4018. .nav .nav-divider {
  4019. height: 1px;
  4020. margin: 8px 0;
  4021. overflow: hidden;
  4022. background-color: #e5e5e5;
  4023. }
  4024. .nav > li > a > img {
  4025. max-width: none;
  4026. }
  4027. .nav-tabs {
  4028. border-bottom: 1px solid #dddddd;
  4029. }
  4030. .nav-tabs > li {
  4031. float: left;
  4032. margin-bottom: -1px;
  4033. }
  4034. .nav-tabs > li > a {
  4035. margin-right: 2px;
  4036. line-height: 1.42857143;
  4037. border: 1px solid transparent;
  4038. border-radius: 4px 4px 0 0;
  4039. }
  4040. .nav-tabs > li > a:hover {
  4041. border-color: #dddddd #dddddd #dddddd;
  4042. }
  4043. .nav-tabs > li.active > a,
  4044. .nav-tabs > li.active > a:hover,
  4045. .nav-tabs > li.active > a:focus {
  4046. color: #777777;
  4047. background-color: #fcfcfc;
  4048. border: 1px solid #dddddd;
  4049. border-bottom-color: transparent;
  4050. cursor: default;
  4051. }
  4052. .nav-tabs.nav-justified {
  4053. width: 100%;
  4054. border-bottom: 0;
  4055. }
  4056. .nav-tabs.nav-justified > li {
  4057. float: none;
  4058. }
  4059. .nav-tabs.nav-justified > li > a {
  4060. text-align: center;
  4061. margin-bottom: 5px;
  4062. }
  4063. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4064. top: auto;
  4065. left: auto;
  4066. }
  4067. @media (min-width: 768px) {
  4068. .nav-tabs.nav-justified > li {
  4069. display: table-cell;
  4070. width: 1%;
  4071. }
  4072. .nav-tabs.nav-justified > li > a {
  4073. margin-bottom: 0;
  4074. }
  4075. }
  4076. .nav-tabs.nav-justified > li > a {
  4077. margin-right: 0;
  4078. border-radius: 4px;
  4079. }
  4080. .nav-tabs.nav-justified > .active > a,
  4081. .nav-tabs.nav-justified > .active > a:hover,
  4082. .nav-tabs.nav-justified > .active > a:focus {
  4083. border: 1px solid #dddddd;
  4084. }
  4085. @media (min-width: 768px) {
  4086. .nav-tabs.nav-justified > li > a {
  4087. border-bottom: 1px solid #dddddd;
  4088. border-radius: 4px 4px 0 0;
  4089. }
  4090. .nav-tabs.nav-justified > .active > a,
  4091. .nav-tabs.nav-justified > .active > a:hover,
  4092. .nav-tabs.nav-justified > .active > a:focus {
  4093. border-bottom-color: #fcfcfc;
  4094. }
  4095. }
  4096. .nav-pills > li {
  4097. float: left;
  4098. font-size: 14px;
  4099. }
  4100. .nav-pills > li > a {
  4101. border-radius: 1px;
  4102. }
  4103. .nav-pills > li + li {
  4104. margin-left: 2px;
  4105. }
  4106. .nav-pills > li.active > a,
  4107. .nav-pills > li.active > a:hover,
  4108. .nav-pills > li.active > a:focus {
  4109. color: #ffffff;
  4110. background-color: #333333;
  4111. }
  4112. .nav-stacked > li {
  4113. float: none;
  4114. }
  4115. .nav-stacked > li + li {
  4116. margin-top: 2px;
  4117. margin-left: 0;
  4118. }
  4119. .nav-justified {
  4120. width: 100%;
  4121. }
  4122. .nav-justified > li {
  4123. float: none;
  4124. }
  4125. .nav-justified > li > a {
  4126. text-align: center;
  4127. margin-bottom: 5px;
  4128. }
  4129. .nav-justified > .dropdown .dropdown-menu {
  4130. top: auto;
  4131. left: auto;
  4132. }
  4133. @media (min-width: 768px) {
  4134. .nav-justified > li {
  4135. display: table-cell;
  4136. width: 1%;
  4137. }
  4138. .nav-justified > li > a {
  4139. margin-bottom: 0;
  4140. }
  4141. }
  4142. .nav-tabs-justified {
  4143. border-bottom: 0;
  4144. }
  4145. .nav-tabs-justified > li > a {
  4146. margin-right: 0;
  4147. border-radius: 4px;
  4148. }
  4149. .nav-tabs-justified > .active > a,
  4150. .nav-tabs-justified > .active > a:hover,
  4151. .nav-tabs-justified > .active > a:focus {
  4152. border: 1px solid #dddddd;
  4153. }
  4154. @media (min-width: 768px) {
  4155. .nav-tabs-justified > li > a {
  4156. border-bottom: 1px solid #dddddd;
  4157. border-radius: 4px 4px 0 0;
  4158. }
  4159. .nav-tabs-justified > .active > a,
  4160. .nav-tabs-justified > .active > a:hover,
  4161. .nav-tabs-justified > .active > a:focus {
  4162. border-bottom-color: #fcfcfc;
  4163. }
  4164. }
  4165. .tab-content > .tab-pane {
  4166. display: none;
  4167. }
  4168. .tab-content > .active {
  4169. display: block;
  4170. }
  4171. .nav-tabs .dropdown-menu {
  4172. margin-top: -1px;
  4173. border-top-right-radius: 0;
  4174. border-top-left-radius: 0;
  4175. }
  4176. .navbar {
  4177. position: relative;
  4178. min-height: 40px;
  4179. margin-bottom: 18px;
  4180. border: 1px solid transparent;
  4181. }
  4182. @media (min-width: 768px) {
  4183. .navbar {
  4184. border-radius: 4px;
  4185. }
  4186. }
  4187. @media (min-width: 768px) {
  4188. .navbar-header {
  4189. float: left;
  4190. }
  4191. }
  4192. .navbar-collapse {
  4193. overflow-x: visible;
  4194. padding-right: 15px;
  4195. padding-left: 15px;
  4196. border-top: 1px solid transparent;
  4197. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4198. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4199. -webkit-overflow-scrolling: touch;
  4200. }
  4201. .navbar-collapse.in {
  4202. overflow-y: auto;
  4203. }
  4204. @media (min-width: 768px) {
  4205. .navbar-collapse {
  4206. width: auto;
  4207. border-top: 0;
  4208. -webkit-box-shadow: none;
  4209. box-shadow: none;
  4210. }
  4211. .navbar-collapse.collapse {
  4212. display: block !important;
  4213. height: auto !important;
  4214. padding-bottom: 0;
  4215. overflow: visible !important;
  4216. }
  4217. .navbar-collapse.in {
  4218. overflow-y: visible;
  4219. }
  4220. .navbar-fixed-top .navbar-collapse,
  4221. .navbar-static-top .navbar-collapse,
  4222. .navbar-fixed-bottom .navbar-collapse {
  4223. padding-left: 0;
  4224. padding-right: 0;
  4225. }
  4226. }
  4227. .navbar-fixed-top .navbar-collapse,
  4228. .navbar-fixed-bottom .navbar-collapse {
  4229. max-height: 340px;
  4230. }
  4231. @media (max-device-width: 480px) and (orientation: landscape) {
  4232. .navbar-fixed-top .navbar-collapse,
  4233. .navbar-fixed-bottom .navbar-collapse {
  4234. max-height: 200px;
  4235. }
  4236. }
  4237. .container > .navbar-header,
  4238. .container-fluid > .navbar-header,
  4239. .container > .navbar-collapse,
  4240. .container-fluid > .navbar-collapse {
  4241. margin-right: -15px;
  4242. margin-left: -15px;
  4243. }
  4244. @media (min-width: 768px) {
  4245. .container > .navbar-header,
  4246. .container-fluid > .navbar-header,
  4247. .container > .navbar-collapse,
  4248. .container-fluid > .navbar-collapse {
  4249. margin-right: 0;
  4250. margin-left: 0;
  4251. }
  4252. }
  4253. .navbar-static-top {
  4254. z-index: 1000;
  4255. border-width: 0 0 1px;
  4256. }
  4257. @media (min-width: 768px) {
  4258. .navbar-static-top {
  4259. border-radius: 0;
  4260. }
  4261. }
  4262. .navbar-fixed-top,
  4263. .navbar-fixed-bottom {
  4264. position: fixed;
  4265. right: 0;
  4266. left: 0;
  4267. z-index: 1030;
  4268. }
  4269. @media (min-width: 768px) {
  4270. .navbar-fixed-top,
  4271. .navbar-fixed-bottom {
  4272. border-radius: 0;
  4273. }
  4274. }
  4275. .navbar-fixed-top {
  4276. top: 0;
  4277. border-width: 0 0 1px;
  4278. }
  4279. .navbar-fixed-bottom {
  4280. bottom: 0;
  4281. margin-bottom: 0;
  4282. border-width: 1px 0 0;
  4283. }
  4284. .navbar-brand {
  4285. float: left;
  4286. padding: 11px 15px;
  4287. font-size: 17px;
  4288. line-height: 18px;
  4289. height: 40px;
  4290. }
  4291. .navbar-brand:hover,
  4292. .navbar-brand:focus {
  4293. text-decoration: none;
  4294. }
  4295. .navbar-brand > img {
  4296. display: block;
  4297. }
  4298. @media (min-width: 768px) {
  4299. .navbar > .container .navbar-brand,
  4300. .navbar > .container-fluid .navbar-brand {
  4301. margin-left: -15px;
  4302. }
  4303. }
  4304. .navbar-toggle {
  4305. position: relative;
  4306. float: right;
  4307. margin-right: 15px;
  4308. padding: 9px 10px;
  4309. margin-top: 3px;
  4310. margin-bottom: 3px;
  4311. background-color: transparent;
  4312. background-image: none;
  4313. border: 1px solid transparent;
  4314. border-radius: 4px;
  4315. }
  4316. .navbar-toggle:focus {
  4317. outline: 0;
  4318. }
  4319. .navbar-toggle .icon-bar {
  4320. display: block;
  4321. width: 22px;
  4322. height: 2px;
  4323. border-radius: 1px;
  4324. }
  4325. .navbar-toggle .icon-bar + .icon-bar {
  4326. margin-top: 4px;
  4327. }
  4328. @media (min-width: 768px) {
  4329. .navbar-toggle {
  4330. display: none;
  4331. }
  4332. }
  4333. .navbar-nav {
  4334. margin: 5.5px -15px;
  4335. }
  4336. .navbar-nav > li > a {
  4337. /*padding-top: 10px;*/
  4338. /*padding-bottom: 10px;*/
  4339. line-height: 18px;
  4340. }
  4341. @media (max-width: 767px) {
  4342. .navbar-nav .open .dropdown-menu {
  4343. position: static;
  4344. float: none;
  4345. width: auto;
  4346. margin-top: 0;
  4347. background-color: transparent;
  4348. border: 0;
  4349. -webkit-box-shadow: none;
  4350. box-shadow: none;
  4351. }
  4352. .navbar-nav .open .dropdown-menu > li > a,
  4353. .navbar-nav .open .dropdown-menu .dropdown-header {
  4354. padding: 5px 15px 5px 25px;
  4355. }
  4356. .navbar-nav .open .dropdown-menu > li > a {
  4357. line-height: 18px;
  4358. }
  4359. .navbar-nav .open .dropdown-menu > li > a:hover,
  4360. .navbar-nav .open .dropdown-menu > li > a:focus {
  4361. background-image: none;
  4362. }
  4363. }
  4364. @media (min-width: 768px) {
  4365. .navbar-nav {
  4366. float: left;
  4367. margin: 0;
  4368. }
  4369. .navbar-nav > li {
  4370. float: left;
  4371. }
  4372. .navbar-nav > li > a {
  4373. /*padding-top: 11px;*/
  4374. /*padding-bottom: 11px;*/
  4375. }
  4376. }
  4377. .navbar-form {
  4378. margin-left: -15px;
  4379. margin-right: -15px;
  4380. padding: 10px 15px;
  4381. border-top: 1px solid transparent;
  4382. border-bottom: 1px solid transparent;
  4383. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4384. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4385. margin-top: 2px;
  4386. margin-bottom: 2px;
  4387. }
  4388. @media (min-width: 768px) {
  4389. .navbar-form .form-group {
  4390. display: inline-block;
  4391. margin-bottom: 0;
  4392. vertical-align: middle;
  4393. }
  4394. .navbar-form .form-control {
  4395. display: inline-block;
  4396. width: auto;
  4397. vertical-align: middle;
  4398. }
  4399. .navbar-form .form-control-static {
  4400. display: inline-block;
  4401. }
  4402. .navbar-form .input-group {
  4403. display: inline-table;
  4404. vertical-align: middle;
  4405. }
  4406. .navbar-form .input-group .input-group-addon,
  4407. .navbar-form .input-group .input-group-btn,
  4408. .navbar-form .input-group .form-control {
  4409. width: auto;
  4410. }
  4411. .navbar-form .input-group > .form-control {
  4412. width: 100%;
  4413. }
  4414. .navbar-form .control-label {
  4415. margin-bottom: 0;
  4416. vertical-align: middle;
  4417. }
  4418. .navbar-form .radio,
  4419. .navbar-form .checkbox {
  4420. display: inline-block;
  4421. margin-top: 0;
  4422. margin-bottom: 0;
  4423. vertical-align: middle;
  4424. }
  4425. .navbar-form .radio label,
  4426. .navbar-form .checkbox label {
  4427. padding-left: 0;
  4428. }
  4429. .navbar-form .radio input[type="radio"],
  4430. .navbar-form .checkbox input[type="checkbox"] {
  4431. position: relative;
  4432. margin-left: 0;
  4433. }
  4434. .navbar-form .has-feedback .form-control-feedback {
  4435. top: 0;
  4436. }
  4437. }
  4438. @media (max-width: 767px) {
  4439. .navbar-form .form-group {
  4440. margin-bottom: 5px;
  4441. }
  4442. .navbar-form .form-group:last-child {
  4443. margin-bottom: 0;
  4444. }
  4445. }
  4446. @media (min-width: 768px) {
  4447. .navbar-form {
  4448. width: auto;
  4449. border: 0;
  4450. margin-left: 0;
  4451. margin-right: 0;
  4452. padding-top: 0;
  4453. padding-bottom: 0;
  4454. -webkit-box-shadow: none;
  4455. box-shadow: none;
  4456. }
  4457. }
  4458. .navbar-nav > li > .dropdown-menu {
  4459. margin-top: 0;
  4460. border-top-right-radius: 0;
  4461. border-top-left-radius: 0;
  4462. }
  4463. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4464. margin-bottom: 0;
  4465. border-top-right-radius: 4px;
  4466. border-top-left-radius: 4px;
  4467. border-bottom-right-radius: 0;
  4468. border-bottom-left-radius: 0;
  4469. }
  4470. .navbar-btn {
  4471. margin-top: 2px;
  4472. margin-bottom: 2px;
  4473. }
  4474. .navbar-btn.btn-sm {
  4475. margin-top: 5px;
  4476. margin-bottom: 5px;
  4477. }
  4478. .navbar-btn.btn-xs {
  4479. margin-top: 9px;
  4480. margin-bottom: 9px;
  4481. }
  4482. .navbar-text {
  4483. margin-top: 11px;
  4484. margin-bottom: 11px;
  4485. }
  4486. @media (min-width: 768px) {
  4487. .navbar-text {
  4488. float: left;
  4489. margin-left: 15px;
  4490. margin-right: 15px;
  4491. }
  4492. }
  4493. @media (min-width: 768px) {
  4494. .navbar-left {
  4495. float: left !important;
  4496. }
  4497. .navbar-right {
  4498. float: right !important;
  4499. margin-right: -15px;
  4500. }
  4501. .navbar-right ~ .navbar-right {
  4502. margin-right: 0;
  4503. }
  4504. }
  4505. .navbar-default {
  4506. background-color: #000;
  4507. border-color: #000;
  4508. }
  4509. .navbar-default .navbar-brand {
  4510. color: #777777;
  4511. }
  4512. .navbar-default .navbar-brand:hover,
  4513. .navbar-default .navbar-brand:focus {
  4514. color: #d9230f;
  4515. background-color: transparent;
  4516. }
  4517. .navbar-default .navbar-text {
  4518. color: #777777;
  4519. }
  4520. .navbar-default .navbar-nav > li > a {
  4521. color: #777777;
  4522. }
  4523. .navbar-default .navbar-nav > li > a:hover,
  4524. .navbar-default .navbar-nav > li > a:focus {
  4525. color: #d9230f;
  4526. background-color: transparent;
  4527. }
  4528. .navbar-default .navbar-nav > .active > a,
  4529. .navbar-default .navbar-nav > .active > a:hover,
  4530. .navbar-default .navbar-nav > .active > a:focus {
  4531. color: #d9230f;
  4532. background-color: transparent;
  4533. }
  4534. .navbar-default .navbar-nav > .disabled > a,
  4535. .navbar-default .navbar-nav > .disabled > a:hover,
  4536. .navbar-default .navbar-nav > .disabled > a:focus {
  4537. color: #444444;
  4538. background-color: transparent;
  4539. }
  4540. .navbar-default .navbar-toggle {
  4541. border-color: #dddddd;
  4542. }
  4543. .navbar-default .navbar-toggle:hover,
  4544. .navbar-default .navbar-toggle:focus {
  4545. background-color: #dddddd;
  4546. }
  4547. .navbar-default .navbar-toggle .icon-bar {
  4548. background-color: #cccccc;
  4549. }
  4550. .navbar-default .navbar-collapse,
  4551. .navbar-default .navbar-form {
  4552. border-color: #eeeeee;
  4553. }
  4554. .navbar-default .navbar-nav > .open > a,
  4555. .navbar-default .navbar-nav > .open > a:hover,
  4556. .navbar-default .navbar-nav > .open > a:focus {
  4557. background-color: transparent;
  4558. color: #d9230f;
  4559. }
  4560. @media (max-width: 767px) {
  4561. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4562. color: #777777;
  4563. }
  4564. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4565. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4566. color: #d9230f;
  4567. background-color: transparent;
  4568. }
  4569. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4570. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4571. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4572. color: #d9230f;
  4573. background-color: transparent;
  4574. }
  4575. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4576. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4577. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4578. color: #444444;
  4579. background-color: transparent;
  4580. }
  4581. }
  4582. .navbar-default .navbar-link {
  4583. color: #777777;
  4584. }
  4585. .navbar-default .navbar-link:hover {
  4586. color: #d9230f;
  4587. }
  4588. .navbar-default .btn-link {
  4589. color: #777777;
  4590. }
  4591. .navbar-default .btn-link:hover,
  4592. .navbar-default .btn-link:focus {
  4593. color: #d9230f;
  4594. }
  4595. .navbar-default .btn-link[disabled]:hover,
  4596. fieldset[disabled] .navbar-default .btn-link:hover,
  4597. .navbar-default .btn-link[disabled]:focus,
  4598. fieldset[disabled] .navbar-default .btn-link:focus {
  4599. color: #444444;
  4600. }
  4601. .navbar-inverse {
  4602. background-color: #d9230f;
  4603. border-color: #a91b0c;
  4604. }
  4605. .navbar-inverse .navbar-brand {
  4606. color: #fac0ba;
  4607. }
  4608. .navbar-inverse .navbar-brand:hover,
  4609. .navbar-inverse .navbar-brand:focus {
  4610. color: #ffffff;
  4611. background-color: transparent;
  4612. }
  4613. .navbar-inverse .navbar-text {
  4614. color: #fac0ba;
  4615. }
  4616. .navbar-inverse .navbar-nav > li > a {
  4617. color: #fac0ba;
  4618. }
  4619. .navbar-inverse .navbar-nav > li > a:hover,
  4620. .navbar-inverse .navbar-nav > li > a:focus {
  4621. color: #ffffff;
  4622. background-color: transparent;
  4623. }
  4624. .navbar-inverse .navbar-nav > .active > a,
  4625. .navbar-inverse .navbar-nav > .active > a:hover,
  4626. .navbar-inverse .navbar-nav > .active > a:focus {
  4627. color: #ffffff;
  4628. background-color: transparent;
  4629. }
  4630. .navbar-inverse .navbar-nav > .disabled > a,
  4631. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4632. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4633. color: #cccccc;
  4634. background-color: transparent;
  4635. }
  4636. .navbar-inverse .navbar-toggle {
  4637. border-color: #a91b0c;
  4638. }
  4639. .navbar-inverse .navbar-toggle:hover,
  4640. .navbar-inverse .navbar-toggle:focus {
  4641. background-color: #a91b0c;
  4642. }
  4643. .navbar-inverse .navbar-toggle .icon-bar {
  4644. background-color: #ffffff;
  4645. }
  4646. .navbar-inverse .navbar-collapse,
  4647. .navbar-inverse .navbar-form {
  4648. border-color: #b81e0d;
  4649. }
  4650. .navbar-inverse .navbar-nav > .open > a,
  4651. .navbar-inverse .navbar-nav > .open > a:hover,
  4652. .navbar-inverse .navbar-nav > .open > a:focus {
  4653. background-color: transparent;
  4654. color: #ffffff;
  4655. }
  4656. @media (max-width: 767px) {
  4657. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4658. border-color: #a91b0c;
  4659. }
  4660. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4661. background-color: #a91b0c;
  4662. }
  4663. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4664. color: #fac0ba;
  4665. }
  4666. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4667. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4668. color: #ffffff;
  4669. background-color: transparent;
  4670. }
  4671. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4672. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4673. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4674. color: #ffffff;
  4675. background-color: transparent;
  4676. }
  4677. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4678. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4679. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4680. color: #cccccc;
  4681. background-color: transparent;
  4682. }
  4683. }
  4684. .navbar-inverse .navbar-link {
  4685. color: #fac0ba;
  4686. }
  4687. .navbar-inverse .navbar-link:hover {
  4688. color: #ffffff;
  4689. }
  4690. .navbar-inverse .btn-link {
  4691. color: #fac0ba;
  4692. }
  4693. .navbar-inverse .btn-link:hover,
  4694. .navbar-inverse .btn-link:focus {
  4695. color: #ffffff;
  4696. }
  4697. .navbar-inverse .btn-link[disabled]:hover,
  4698. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4699. .navbar-inverse .btn-link[disabled]:focus,
  4700. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4701. color: #cccccc;
  4702. }
  4703. .breadcrumb {
  4704. padding: 8px 15px;
  4705. margin-bottom: 18px;
  4706. list-style: none;
  4707. background-color: transparent;
  4708. border-radius: 4px;
  4709. }
  4710. .breadcrumb > li {
  4711. display: inline-block;
  4712. }
  4713. .breadcrumb > li + li:before {
  4714. content: "/\00a0";
  4715. padding: 0 5px;
  4716. color: #cccccc;
  4717. }
  4718. .breadcrumb > .active {
  4719. color: #808080;
  4720. }
  4721. .pagination {
  4722. display: inline-block;
  4723. padding-left: 0;
  4724. margin: 18px 0;
  4725. border-radius: 4px;
  4726. }
  4727. .pagination > li {
  4728. display: inline;
  4729. }
  4730. .pagination > li > a,
  4731. .pagination > li > span {
  4732. position: relative;
  4733. float: left;
  4734. padding: 8px 12px;
  4735. line-height: 1.42857143;
  4736. text-decoration: none;
  4737. color: #444444;
  4738. background-color: #ffffff;
  4739. border: 1px solid #dddddd;
  4740. margin-left: -1px;
  4741. }
  4742. .pagination > li:first-child > a,
  4743. .pagination > li:first-child > span {
  4744. margin-left: 0;
  4745. border-bottom-left-radius: 4px;
  4746. border-top-left-radius: 4px;
  4747. }
  4748. .pagination > li:last-child > a,
  4749. .pagination > li:last-child > span {
  4750. border-bottom-right-radius: 4px;
  4751. border-top-right-radius: 4px;
  4752. }
  4753. .pagination > li > a:hover,
  4754. .pagination > li > span:hover,
  4755. .pagination > li > a:focus,
  4756. .pagination > li > span:focus {
  4757. z-index: 2;
  4758. color: #ffffff;
  4759. background-color: #d9230f;
  4760. border-color: #d9230f;
  4761. }
  4762. .pagination > .active > a,
  4763. .pagination > .active > span,
  4764. .pagination > .active > a:hover,
  4765. .pagination > .active > span:hover,
  4766. .pagination > .active > a:focus,
  4767. .pagination > .active > span:focus {
  4768. z-index: 3;
  4769. color: #ffffff;
  4770. background-color: #d9230f;
  4771. border-color: #d9230f;
  4772. cursor: default;
  4773. }
  4774. .pagination > .disabled > span,
  4775. .pagination > .disabled > span:hover,
  4776. .pagination > .disabled > span:focus,
  4777. .pagination > .disabled > a,
  4778. .pagination > .disabled > a:hover,
  4779. .pagination > .disabled > a:focus {
  4780. color: #dddddd;
  4781. background-color: #ffffff;
  4782. border-color: #dddddd;
  4783. cursor: not-allowed;
  4784. }
  4785. .pagination-lg > li > a,
  4786. .pagination-lg > li > span {
  4787. padding: 14px 16px;
  4788. font-size: 17px;
  4789. line-height: 1.3333333;
  4790. }
  4791. .pagination-lg > li:first-child > a,
  4792. .pagination-lg > li:first-child > span {
  4793. border-bottom-left-radius: 6px;
  4794. border-top-left-radius: 6px;
  4795. }
  4796. .pagination-lg > li:last-child > a,
  4797. .pagination-lg > li:last-child > span {
  4798. border-bottom-right-radius: 6px;
  4799. border-top-right-radius: 6px;
  4800. }
  4801. .pagination-sm > li > a,
  4802. .pagination-sm > li > span {
  4803. padding: 5px 10px;
  4804. font-size: 12px;
  4805. line-height: 1.5;
  4806. }
  4807. .pagination-sm > li:first-child > a,
  4808. .pagination-sm > li:first-child > span {
  4809. border-bottom-left-radius: 3px;
  4810. border-top-left-radius: 3px;
  4811. }
  4812. .pagination-sm > li:last-child > a,
  4813. .pagination-sm > li:last-child > span {
  4814. border-bottom-right-radius: 3px;
  4815. border-top-right-radius: 3px;
  4816. }
  4817. .pager {
  4818. padding-left: 0;
  4819. margin: 18px 0;
  4820. list-style: none;
  4821. text-align: center;
  4822. }
  4823. .pager li {
  4824. display: inline;
  4825. }
  4826. .pager li > a,
  4827. .pager li > span {
  4828. display: inline-block;
  4829. padding: 5px 14px;
  4830. background-color: #ffffff;
  4831. border: 1px solid #dddddd;
  4832. border-radius: 15px;
  4833. }
  4834. .pager li > a:hover,
  4835. .pager li > a:focus {
  4836. text-decoration: none;
  4837. background-color: #d9230f;
  4838. }
  4839. .pager .next > a,
  4840. .pager .next > span {
  4841. float: right;
  4842. }
  4843. .pager .previous > a,
  4844. .pager .previous > span {
  4845. float: left;
  4846. }
  4847. .pager .disabled > a,
  4848. .pager .disabled > a:hover,
  4849. .pager .disabled > a:focus,
  4850. .pager .disabled > span {
  4851. color: #dddddd;
  4852. background-color: #ffffff;
  4853. cursor: not-allowed;
  4854. }
  4855. .label {
  4856. display: inline;
  4857. padding: .2em .6em .3em;
  4858. font-size: 75%;
  4859. font-weight: bold;
  4860. line-height: 1;
  4861. color: #ffffff;
  4862. text-align: center;
  4863. white-space: nowrap;
  4864. vertical-align: baseline;
  4865. border-radius: .25em;
  4866. }
  4867. a.label:hover,
  4868. a.label:focus {
  4869. color: #ffffff;
  4870. text-decoration: none;
  4871. cursor: pointer;
  4872. }
  4873. .label:empty {
  4874. display: none;
  4875. }
  4876. .btn .label {
  4877. position: relative;
  4878. top: -1px;
  4879. }
  4880. .label-default {
  4881. background-color: #474949;
  4882. }
  4883. .label-default[href]:hover,
  4884. .label-default[href]:focus {
  4885. background-color: #2e2f2f;
  4886. }
  4887. .label-primary {
  4888. background-color: #d9230f;
  4889. }
  4890. .label-primary[href]:hover,
  4891. .label-primary[href]:focus {
  4892. background-color: #a91b0c;
  4893. }
  4894. .label-success {
  4895. background-color: #469408;
  4896. }
  4897. .label-success[href]:hover,
  4898. .label-success[href]:focus {
  4899. background-color: #2f6405;
  4900. }
  4901. .label-info {
  4902. background-color: #029acf;
  4903. }
  4904. .label-info[href]:hover,
  4905. .label-info[href]:focus {
  4906. background-color: #02749c;
  4907. }
  4908. .label-warning {
  4909. background-color: #9b479f;
  4910. }
  4911. .label-warning[href]:hover,
  4912. .label-warning[href]:focus {
  4913. background-color: #79377c;
  4914. }
  4915. .label-danger {
  4916. background-color: #d9831f;
  4917. }
  4918. .label-danger[href]:hover,
  4919. .label-danger[href]:focus {
  4920. background-color: #ac6819;
  4921. }
  4922. .badge {
  4923. display: inline-block;
  4924. min-width: 10px;
  4925. padding: 3px 7px;
  4926. font-size: 12px;
  4927. font-weight: bold;
  4928. color: #ffffff;
  4929. line-height: 1;
  4930. vertical-align: middle;
  4931. white-space: nowrap;
  4932. text-align: center;
  4933. background-color: #d9230f;
  4934. border-radius: 10px;
  4935. }
  4936. .badge:empty {
  4937. display: none;
  4938. }
  4939. .btn .badge {
  4940. position: relative;
  4941. top: -1px;
  4942. }
  4943. .btn-xs .badge,
  4944. .btn-group-xs > .btn .badge {
  4945. top: 0;
  4946. padding: 1px 5px;
  4947. }
  4948. a.badge:hover,
  4949. a.badge:focus {
  4950. color: #ffffff;
  4951. text-decoration: none;
  4952. cursor: pointer;
  4953. }
  4954. .list-group-item.active > .badge,
  4955. .nav-pills > .active > a > .badge {
  4956. color: #d9230f;
  4957. background-color: #ffffff;
  4958. }
  4959. .list-group-item > .badge {
  4960. float: right;
  4961. }
  4962. .list-group-item > .badge + .badge {
  4963. margin-right: 5px;
  4964. }
  4965. .nav-pills > li > a > .badge {
  4966. margin-left: 3px;
  4967. }
  4968. .jumbotron {
  4969. padding-top: 30px;
  4970. padding-bottom: 30px;
  4971. margin-bottom: 30px;
  4972. color: inherit;
  4973. background-color: #f4f4f4;
  4974. }
  4975. .jumbotron h1,
  4976. .jumbotron .h1 {
  4977. color: inherit;
  4978. }
  4979. .jumbotron p {
  4980. margin-bottom: 15px;
  4981. font-size: 20px;
  4982. font-weight: 200;
  4983. }
  4984. .jumbotron > hr {
  4985. border-top-color: #dbdbdb;
  4986. }
  4987. .container .jumbotron,
  4988. .container-fluid .jumbotron {
  4989. border-radius: 6px;
  4990. padding-left: 15px;
  4991. padding-right: 15px;
  4992. }
  4993. .jumbotron .container {
  4994. max-width: 100%;
  4995. }
  4996. @media screen and (min-width: 768px) {
  4997. .jumbotron {
  4998. padding-top: 48px;
  4999. padding-bottom: 48px;
  5000. }
  5001. .container .jumbotron,
  5002. .container-fluid .jumbotron {
  5003. padding-left: 60px;
  5004. padding-right: 60px;
  5005. }
  5006. .jumbotron h1,
  5007. .jumbotron .h1 {
  5008. font-size: 59px;
  5009. }
  5010. }
  5011. .thumbnail {
  5012. display: block;
  5013. padding: 4px;
  5014. margin-bottom: 18px;
  5015. line-height: 1.42857143;
  5016. background-color: #fcfcfc;
  5017. border: 1px solid #dddddd;
  5018. border-radius: 4px;
  5019. -webkit-transition: border 0.2s ease-in-out;
  5020. -o-transition: border 0.2s ease-in-out;
  5021. transition: border 0.2s ease-in-out;
  5022. }
  5023. .thumbnail > img,
  5024. .thumbnail a > img {
  5025. margin-left: auto;
  5026. margin-right: auto;
  5027. }
  5028. a.thumbnail:hover,
  5029. a.thumbnail:focus,
  5030. a.thumbnail.active {
  5031. border-color: #d9230f;
  5032. }
  5033. .thumbnail .caption {
  5034. padding: 9px;
  5035. color: #777777;
  5036. }
  5037. .alert {
  5038. padding: 15px;
  5039. margin-bottom: 18px;
  5040. border: 1px solid transparent;
  5041. border-radius: 4px;
  5042. }
  5043. .alert h4 {
  5044. margin-top: 0;
  5045. color: inherit;
  5046. }
  5047. .alert .alert-link {
  5048. font-weight: bold;
  5049. }
  5050. .alert > p,
  5051. .alert > ul {
  5052. margin-bottom: 0;
  5053. }
  5054. .alert > p + p {
  5055. margin-top: 5px;
  5056. }
  5057. .alert-dismissable,
  5058. .alert-dismissible {
  5059. padding-right: 35px;
  5060. }
  5061. .alert-dismissable .close,
  5062. .alert-dismissible .close {
  5063. position: relative;
  5064. top: -2px;
  5065. right: -21px;
  5066. color: inherit;
  5067. }
  5068. .alert-success {
  5069. background-color: #dff0d8;
  5070. border-color: #d6e9c6;
  5071. color: #468847;
  5072. }
  5073. .alert-success hr {
  5074. border-top-color: #c9e2b3;
  5075. }
  5076. .alert-success .alert-link {
  5077. color: #356635;
  5078. }
  5079. .alert-info {
  5080. background-color: #d9edf7;
  5081. border-color: #bce8f1;
  5082. color: #3a87ad;
  5083. }
  5084. .alert-info hr {
  5085. border-top-color: #a6e1ec;
  5086. }
  5087. .alert-info .alert-link {
  5088. color: #2d6987;
  5089. }
  5090. .alert-warning {
  5091. background-color: #fcf8e3;
  5092. border-color: #fbeed5;
  5093. color: #c09853;
  5094. }
  5095. .alert-warning hr {
  5096. border-top-color: #f8e5be;
  5097. }
  5098. .alert-warning .alert-link {
  5099. color: #a47e3c;
  5100. }
  5101. .alert-danger {
  5102. background-color: #f2dede;
  5103. border-color: #eed3d7;
  5104. color: #b94a48;
  5105. }
  5106. .alert-danger hr {
  5107. border-top-color: #e6c1c7;
  5108. }
  5109. .alert-danger .alert-link {
  5110. color: #953b39;
  5111. }
  5112. @-webkit-keyframes progress-bar-stripes {
  5113. from {
  5114. background-position: 40px 0;
  5115. }
  5116. to {
  5117. background-position: 0 0;
  5118. }
  5119. }
  5120. @-o-keyframes progress-bar-stripes {
  5121. from {
  5122. background-position: 40px 0;
  5123. }
  5124. to {
  5125. background-position: 0 0;
  5126. }
  5127. }
  5128. @keyframes progress-bar-stripes {
  5129. from {
  5130. background-position: 40px 0;
  5131. }
  5132. to {
  5133. background-position: 0 0;
  5134. }
  5135. }
  5136. .progress {
  5137. overflow: hidden;
  5138. height: 18px;
  5139. margin-bottom: 18px;
  5140. background-color: #f5f5f5;
  5141. border-radius: 4px;
  5142. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5143. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5144. }
  5145. .progress-bar {
  5146. float: left;
  5147. width: 0%;
  5148. height: 100%;
  5149. font-size: 12px;
  5150. line-height: 18px;
  5151. color: #ffffff;
  5152. text-align: center;
  5153. background-color: #d9230f;
  5154. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5155. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5156. -webkit-transition: width 0.6s ease;
  5157. -o-transition: width 0.6s ease;
  5158. transition: width 0.6s ease;
  5159. }
  5160. .progress-striped .progress-bar,
  5161. .progress-bar-striped {
  5162. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5163. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5164. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5165. -webkit-background-size: 40px 40px;
  5166. background-size: 40px 40px;
  5167. }
  5168. .progress.active .progress-bar,
  5169. .progress-bar.active {
  5170. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5171. -o-animation: progress-bar-stripes 2s linear infinite;
  5172. animation: progress-bar-stripes 2s linear infinite;
  5173. }
  5174. .progress-bar-success {
  5175. background-color: #469408;
  5176. }
  5177. .progress-striped .progress-bar-success {
  5178. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5179. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5180. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5181. }
  5182. .progress-bar-info {
  5183. background-color: #029acf;
  5184. }
  5185. .progress-striped .progress-bar-info {
  5186. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5187. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5188. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5189. }
  5190. .progress-bar-warning {
  5191. background-color: #9b479f;
  5192. }
  5193. .progress-striped .progress-bar-warning {
  5194. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5195. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5196. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5197. }
  5198. .progress-bar-danger {
  5199. background-color: #d9831f;
  5200. }
  5201. .progress-striped .progress-bar-danger {
  5202. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5203. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5204. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5205. }
  5206. .media {
  5207. margin-top: 15px;
  5208. }
  5209. .media:first-child {
  5210. margin-top: 0;
  5211. }
  5212. .media,
  5213. .media-body {
  5214. zoom: 1;
  5215. overflow: hidden;
  5216. }
  5217. .media-body {
  5218. width: 10000px;
  5219. }
  5220. .media-object {
  5221. display: block;
  5222. }
  5223. .media-object.img-thumbnail {
  5224. max-width: none;
  5225. }
  5226. .media-right,
  5227. .media > .pull-right {
  5228. padding-left: 10px;
  5229. }
  5230. .media-left,
  5231. .media > .pull-left {
  5232. padding-right: 10px;
  5233. }
  5234. .media-left,
  5235. .media-right,
  5236. .media-body {
  5237. display: table-cell;
  5238. vertical-align: top;
  5239. }
  5240. .media-middle {
  5241. vertical-align: middle;
  5242. }
  5243. .media-bottom {
  5244. vertical-align: bottom;
  5245. }
  5246. .media-heading {
  5247. margin-top: 0;
  5248. margin-bottom: 5px;
  5249. }
  5250. .media-list {
  5251. padding-left: 0;
  5252. list-style: none;
  5253. }
  5254. .list-group {
  5255. margin-bottom: 20px;
  5256. padding-left: 0;
  5257. }
  5258. .list-group-item {
  5259. position: relative;
  5260. display: block;
  5261. padding: 10px 15px;
  5262. margin-bottom: -1px;
  5263. background-color: #ffffff;
  5264. border: 1px solid #dddddd;
  5265. }
  5266. .list-group-item:first-child {
  5267. border-top-right-radius: 4px;
  5268. border-top-left-radius: 4px;
  5269. }
  5270. .list-group-item:last-child {
  5271. margin-bottom: 0;
  5272. border-bottom-right-radius: 4px;
  5273. border-bottom-left-radius: 4px;
  5274. }
  5275. a.list-group-item,
  5276. button.list-group-item {
  5277. color: #555555;
  5278. }
  5279. a.list-group-item .list-group-item-heading,
  5280. button.list-group-item .list-group-item-heading {
  5281. color: #333333;
  5282. }
  5283. a.list-group-item:hover,
  5284. button.list-group-item:hover,
  5285. a.list-group-item:focus,
  5286. button.list-group-item:focus {
  5287. text-decoration: none;
  5288. color: #555555;
  5289. background-color: #f5f5f5;
  5290. }
  5291. button.list-group-item {
  5292. width: 100%;
  5293. text-align: left;
  5294. }
  5295. .list-group-item.disabled,
  5296. .list-group-item.disabled:hover,
  5297. .list-group-item.disabled:focus {
  5298. background-color: #dddddd;
  5299. color: #808080;
  5300. cursor: not-allowed;
  5301. }
  5302. .list-group-item.disabled .list-group-item-heading,
  5303. .list-group-item.disabled:hover .list-group-item-heading,
  5304. .list-group-item.disabled:focus .list-group-item-heading {
  5305. color: inherit;
  5306. }
  5307. .list-group-item.disabled .list-group-item-text,
  5308. .list-group-item.disabled:hover .list-group-item-text,
  5309. .list-group-item.disabled:focus .list-group-item-text {
  5310. color: #808080;
  5311. }
  5312. .list-group-item.active,
  5313. .list-group-item.active:hover,
  5314. .list-group-item.active:focus {
  5315. z-index: 2;
  5316. color: #ffffff;
  5317. background-color: #d9230f;
  5318. border-color: #d9230f;
  5319. }
  5320. .list-group-item.active .list-group-item-heading,
  5321. .list-group-item.active:hover .list-group-item-heading,
  5322. .list-group-item.active:focus .list-group-item-heading,
  5323. .list-group-item.active .list-group-item-heading > small,
  5324. .list-group-item.active:hover .list-group-item-heading > small,
  5325. .list-group-item.active:focus .list-group-item-heading > small,
  5326. .list-group-item.active .list-group-item-heading > .small,
  5327. .list-group-item.active:hover .list-group-item-heading > .small,
  5328. .list-group-item.active:focus .list-group-item-heading > .small {
  5329. color: inherit;
  5330. }
  5331. .list-group-item.active .list-group-item-text,
  5332. .list-group-item.active:hover .list-group-item-text,
  5333. .list-group-item.active:focus .list-group-item-text {
  5334. color: #fac0ba;
  5335. }
  5336. .list-group-item-success {
  5337. color: #468847;
  5338. background-color: #dff0d8;
  5339. }
  5340. a.list-group-item-success,
  5341. button.list-group-item-success {
  5342. color: #468847;
  5343. }
  5344. a.list-group-item-success .list-group-item-heading,
  5345. button.list-group-item-success .list-group-item-heading {
  5346. color: inherit;
  5347. }
  5348. a.list-group-item-success:hover,
  5349. button.list-group-item-success:hover,
  5350. a.list-group-item-success:focus,
  5351. button.list-group-item-success:focus {
  5352. color: #468847;
  5353. background-color: #d0e9c6;
  5354. }
  5355. a.list-group-item-success.active,
  5356. button.list-group-item-success.active,
  5357. a.list-group-item-success.active:hover,
  5358. button.list-group-item-success.active:hover,
  5359. a.list-group-item-success.active:focus,
  5360. button.list-group-item-success.active:focus {
  5361. color: #fff;
  5362. background-color: #468847;
  5363. border-color: #468847;
  5364. }
  5365. .list-group-item-info {
  5366. color: #3a87ad;
  5367. background-color: #d9edf7;
  5368. }
  5369. a.list-group-item-info,
  5370. button.list-group-item-info {
  5371. color: #3a87ad;
  5372. }
  5373. a.list-group-item-info .list-group-item-heading,
  5374. button.list-group-item-info .list-group-item-heading {
  5375. color: inherit;
  5376. }
  5377. a.list-group-item-info:hover,
  5378. button.list-group-item-info:hover,
  5379. a.list-group-item-info:focus,
  5380. button.list-group-item-info:focus {
  5381. color: #3a87ad;
  5382. background-color: #c4e3f3;
  5383. }
  5384. a.list-group-item-info.active,
  5385. button.list-group-item-info.active,
  5386. a.list-group-item-info.active:hover,
  5387. button.list-group-item-info.active:hover,
  5388. a.list-group-item-info.active:focus,
  5389. button.list-group-item-info.active:focus {
  5390. color: #fff;
  5391. background-color: #3a87ad;
  5392. border-color: #3a87ad;
  5393. }
  5394. .list-group-item-warning {
  5395. color: #c09853;
  5396. background-color: #fcf8e3;
  5397. }
  5398. a.list-group-item-warning,
  5399. button.list-group-item-warning {
  5400. color: #c09853;
  5401. }
  5402. a.list-group-item-warning .list-group-item-heading,
  5403. button.list-group-item-warning .list-group-item-heading {
  5404. color: inherit;
  5405. }
  5406. a.list-group-item-warning:hover,
  5407. button.list-group-item-warning:hover,
  5408. a.list-group-item-warning:focus,
  5409. button.list-group-item-warning:focus {
  5410. color: #c09853;
  5411. background-color: #faf2cc;
  5412. }
  5413. a.list-group-item-warning.active,
  5414. button.list-group-item-warning.active,
  5415. a.list-group-item-warning.active:hover,
  5416. button.list-group-item-warning.active:hover,
  5417. a.list-group-item-warning.active:focus,
  5418. button.list-group-item-warning.active:focus {
  5419. color: #fff;
  5420. background-color: #c09853;
  5421. border-color: #c09853;
  5422. }
  5423. .list-group-item-danger {
  5424. color: #b94a48;
  5425. background-color: #f2dede;
  5426. }
  5427. a.list-group-item-danger,
  5428. button.list-group-item-danger {
  5429. color: #b94a48;
  5430. }
  5431. a.list-group-item-danger .list-group-item-heading,
  5432. button.list-group-item-danger .list-group-item-heading {
  5433. color: inherit;
  5434. }
  5435. a.list-group-item-danger:hover,
  5436. button.list-group-item-danger:hover,
  5437. a.list-group-item-danger:focus,
  5438. button.list-group-item-danger:focus {
  5439. color: #b94a48;
  5440. background-color: #ebcccc;
  5441. }
  5442. a.list-group-item-danger.active,
  5443. button.list-group-item-danger.active,
  5444. a.list-group-item-danger.active:hover,
  5445. button.list-group-item-danger.active:hover,
  5446. a.list-group-item-danger.active:focus,
  5447. button.list-group-item-danger.active:focus {
  5448. color: #fff;
  5449. background-color: #b94a48;
  5450. border-color: #b94a48;
  5451. }
  5452. .list-group-item-heading {
  5453. margin-top: 0;
  5454. margin-bottom: 5px;
  5455. }
  5456. .list-group-item-text {
  5457. margin-bottom: 0;
  5458. line-height: 1.3;
  5459. }
  5460. .panel {
  5461. display: block;
  5462. margin: auto;
  5463. margin-bottom: 18px;
  5464. background-color: #efefef;
  5465. border: 1px solid transparent;
  5466. border-radius: 2px;
  5467. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5468. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5469. }
  5470. .panel-body {
  5471. padding: 15px;
  5472. }
  5473. .panel-heading {
  5474. padding: 10px 15px;
  5475. border-bottom: 1px solid transparent;
  5476. border-top-right-radius: 3px;
  5477. border-top-left-radius: 3px;
  5478. }
  5479. .panel-heading > .dropdown .dropdown-toggle {
  5480. color: inherit;
  5481. }
  5482. .panel-title {
  5483. margin-top: 0;
  5484. margin-bottom: 0;
  5485. font-size: 15px;
  5486. color: inherit;
  5487. }
  5488. .panel-title > a,
  5489. .panel-title > small,
  5490. .panel-title > .small,
  5491. .panel-title > small > a,
  5492. .panel-title > .small > a {
  5493. color: inherit;
  5494. }
  5495. .panel-footer {
  5496. padding: 10px 15px;
  5497. background-color: #fcfcfc;
  5498. border-top: 1px solid #dddddd;
  5499. border-bottom-right-radius: 3px;
  5500. border-bottom-left-radius: 3px;
  5501. }
  5502. .panel > .list-group,
  5503. .panel > .panel-collapse > .list-group {
  5504. margin-bottom: 0;
  5505. }
  5506. .panel > .list-group .list-group-item,
  5507. .panel > .panel-collapse > .list-group .list-group-item {
  5508. border-width: 1px 0;
  5509. border-radius: 0;
  5510. }
  5511. .panel > .list-group:first-child .list-group-item:first-child,
  5512. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5513. border-top: 0;
  5514. border-top-right-radius: 3px;
  5515. border-top-left-radius: 3px;
  5516. }
  5517. .panel > .list-group:last-child .list-group-item:last-child,
  5518. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5519. border-bottom: 0;
  5520. border-bottom-right-radius: 3px;
  5521. border-bottom-left-radius: 3px;
  5522. }
  5523. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5524. border-top-right-radius: 0;
  5525. border-top-left-radius: 0;
  5526. }
  5527. .panel-heading + .list-group .list-group-item:first-child {
  5528. border-top-width: 0;
  5529. }
  5530. .list-group + .panel-footer {
  5531. border-top-width: 0;
  5532. }
  5533. .panel > .table,
  5534. .panel > .table-responsive > .table,
  5535. .panel > .panel-collapse > .table {
  5536. margin-bottom: 0;
  5537. }
  5538. .panel > .table caption,
  5539. .panel > .table-responsive > .table caption,
  5540. .panel > .panel-collapse > .table caption {
  5541. padding-left: 15px;
  5542. padding-right: 15px;
  5543. }
  5544. .panel > .table:first-child,
  5545. .panel > .table-responsive:first-child > .table:first-child {
  5546. border-top-right-radius: 3px;
  5547. border-top-left-radius: 3px;
  5548. }
  5549. .panel > .table:first-child > thead:first-child > tr:first-child,
  5550. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5551. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5552. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5553. border-top-left-radius: 3px;
  5554. border-top-right-radius: 3px;
  5555. }
  5556. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5557. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5558. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5559. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5560. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5561. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5562. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5563. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5564. border-top-left-radius: 3px;
  5565. }
  5566. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5567. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5568. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5569. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5570. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5571. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5572. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5573. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5574. border-top-right-radius: 3px;
  5575. }
  5576. .panel > .table:last-child,
  5577. .panel > .table-responsive:last-child > .table:last-child {
  5578. border-bottom-right-radius: 3px;
  5579. border-bottom-left-radius: 3px;
  5580. }
  5581. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5582. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5583. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5584. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5585. border-bottom-left-radius: 3px;
  5586. border-bottom-right-radius: 3px;
  5587. }
  5588. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5589. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5590. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5591. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5592. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5593. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5594. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5595. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5596. border-bottom-left-radius: 3px;
  5597. }
  5598. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5599. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5600. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5601. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5602. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5603. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5604. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5605. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5606. border-bottom-right-radius: 3px;
  5607. }
  5608. .panel > .panel-body + .table,
  5609. .panel > .panel-body + .table-responsive,
  5610. .panel > .table + .panel-body,
  5611. .panel > .table-responsive + .panel-body {
  5612. border-top: 1px solid #dddddd;
  5613. }
  5614. .panel > .table > tbody:first-child > tr:first-child th,
  5615. .panel > .table > tbody:first-child > tr:first-child td {
  5616. border-top: 0;
  5617. }
  5618. .panel > .table-bordered,
  5619. .panel > .table-responsive > .table-bordered {
  5620. border: 0;
  5621. }
  5622. .panel > .table-bordered > thead > tr > th:first-child,
  5623. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5624. .panel > .table-bordered > tbody > tr > th:first-child,
  5625. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5626. .panel > .table-bordered > tfoot > tr > th:first-child,
  5627. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5628. .panel > .table-bordered > thead > tr > td:first-child,
  5629. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5630. .panel > .table-bordered > tbody > tr > td:first-child,
  5631. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5632. .panel > .table-bordered > tfoot > tr > td:first-child,
  5633. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5634. border-left: 0;
  5635. }
  5636. .panel > .table-bordered > thead > tr > th:last-child,
  5637. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5638. .panel > .table-bordered > tbody > tr > th:last-child,
  5639. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5640. .panel > .table-bordered > tfoot > tr > th:last-child,
  5641. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5642. .panel > .table-bordered > thead > tr > td:last-child,
  5643. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5644. .panel > .table-bordered > tbody > tr > td:last-child,
  5645. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5646. .panel > .table-bordered > tfoot > tr > td:last-child,
  5647. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5648. border-right: 0;
  5649. }
  5650. .panel > .table-bordered > thead > tr:first-child > td,
  5651. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5652. .panel > .table-bordered > tbody > tr:first-child > td,
  5653. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5654. .panel > .table-bordered > thead > tr:first-child > th,
  5655. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5656. .panel > .table-bordered > tbody > tr:first-child > th,
  5657. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5658. border-bottom: 0;
  5659. }
  5660. .panel > .table-bordered > tbody > tr:last-child > td,
  5661. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5662. .panel > .table-bordered > tfoot > tr:last-child > td,
  5663. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5664. .panel > .table-bordered > tbody > tr:last-child > th,
  5665. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5666. .panel > .table-bordered > tfoot > tr:last-child > th,
  5667. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5668. border-bottom: 0;
  5669. }
  5670. .panel > .table-responsive {
  5671. border: 0;
  5672. margin-bottom: 0;
  5673. }
  5674. .panel-group {
  5675. margin-bottom: 18px;
  5676. }
  5677. .panel-group .panel {
  5678. margin-bottom: 0;
  5679. border-radius: 4px;
  5680. }
  5681. .panel-group .panel + .panel {
  5682. margin-top: 5px;
  5683. }
  5684. .panel-group .panel-heading {
  5685. border-bottom: 0;
  5686. }
  5687. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5688. .panel-group .panel-heading + .panel-collapse > .list-group {
  5689. border-top: 1px solid #dddddd;
  5690. }
  5691. .panel-group .panel-footer {
  5692. border-top: 0;
  5693. }
  5694. .panel-group .panel-footer + .panel-collapse .panel-body {
  5695. border-bottom: 1px solid #dddddd;
  5696. }
  5697. .panel-default {
  5698. border-color: #dddddd;
  5699. }
  5700. .panel-default > .panel-heading {
  5701. color: #444444;
  5702. background-color: #fcfcfc;
  5703. border-color: #dddddd;
  5704. }
  5705. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5706. border-top-color: #dddddd;
  5707. }
  5708. .panel-default > .panel-heading .badge {
  5709. color: #fcfcfc;
  5710. background-color: #444444;
  5711. }
  5712. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5713. border-bottom-color: #dddddd;
  5714. }
  5715. .panel-primary {
  5716. border-color: #d9230f;
  5717. }
  5718. .panel-primary > .panel-heading {
  5719. color: #ffffff;
  5720. background-color: #d9230f;
  5721. border-color: #d9230f;
  5722. }
  5723. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5724. border-top-color: #d9230f;
  5725. }
  5726. .panel-primary > .panel-heading .badge {
  5727. color: #d9230f;
  5728. background-color: #ffffff;
  5729. }
  5730. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5731. border-bottom-color: #d9230f;
  5732. }
  5733. .panel-success {
  5734. border-color: #469408;
  5735. }
  5736. .panel-success > .panel-heading {
  5737. color: #ffffff;
  5738. background-color: #469408;
  5739. border-color: #469408;
  5740. }
  5741. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5742. border-top-color: #469408;
  5743. }
  5744. .panel-success > .panel-heading .badge {
  5745. color: #469408;
  5746. background-color: #ffffff;
  5747. }
  5748. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5749. border-bottom-color: #469408;
  5750. }
  5751. .panel-info {
  5752. border-color: #029acf;
  5753. }
  5754. .panel-info > .panel-heading {
  5755. color: #ffffff;
  5756. background-color: #029acf;
  5757. border-color: #029acf;
  5758. }
  5759. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5760. border-top-color: #029acf;
  5761. }
  5762. .panel-info > .panel-heading .badge {
  5763. color: #029acf;
  5764. background-color: #ffffff;
  5765. }
  5766. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5767. border-bottom-color: #029acf;
  5768. }
  5769. .panel-warning {
  5770. border-color: #9b479f;
  5771. }
  5772. .panel-warning > .panel-heading {
  5773. color: #ffffff;
  5774. background-color: #9b479f;
  5775. border-color: #9b479f;
  5776. }
  5777. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5778. border-top-color: #9b479f;
  5779. }
  5780. .panel-warning > .panel-heading .badge {
  5781. color: #9b479f;
  5782. background-color: #ffffff;
  5783. }
  5784. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5785. border-bottom-color: #9b479f;
  5786. }
  5787. .panel-danger {
  5788. border-color: #d9831f;
  5789. }
  5790. .panel-danger > .panel-heading {
  5791. color: #ffffff;
  5792. background-color: #d9831f;
  5793. border-color: #d9831f;
  5794. }
  5795. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5796. border-top-color: #d9831f;
  5797. }
  5798. .panel-danger > .panel-heading .badge {
  5799. color: #d9831f;
  5800. background-color: #ffffff;
  5801. }
  5802. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5803. border-bottom-color: #d9831f;
  5804. }
  5805. .embed-responsive {
  5806. position: relative;
  5807. display: block;
  5808. height: 0;
  5809. padding: 0;
  5810. overflow: hidden;
  5811. }
  5812. .embed-responsive .embed-responsive-item,
  5813. .embed-responsive iframe,
  5814. .embed-responsive embed,
  5815. .embed-responsive object,
  5816. .embed-responsive video {
  5817. position: absolute;
  5818. top: 0;
  5819. left: 0;
  5820. bottom: 0;
  5821. height: 100%;
  5822. width: 100%;
  5823. border: 0;
  5824. }
  5825. .embed-responsive-16by9 {
  5826. padding-bottom: 56.25%;
  5827. }
  5828. .embed-responsive-4by3 {
  5829. padding-bottom: 75%;
  5830. }
  5831. .well {
  5832. min-height: 20px;
  5833. padding: 19px;
  5834. margin-bottom: 20px;
  5835. background-color: #f4f4f4;
  5836. border: 1px solid #e3e3e3;
  5837. border-radius: 4px;
  5838. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5839. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5840. }
  5841. .well blockquote {
  5842. border-color: #ddd;
  5843. border-color: rgba(0, 0, 0, 0.15);
  5844. }
  5845. .well-lg {
  5846. padding: 24px;
  5847. border-radius: 6px;
  5848. }
  5849. .well-sm {
  5850. padding: 9px;
  5851. border-radius: 3px;
  5852. }
  5853. .close {
  5854. float: right;
  5855. font-size: 19.5px;
  5856. font-weight: bold;
  5857. line-height: 1;
  5858. color: #000000;
  5859. text-shadow: 0 1px 0 #ffffff;
  5860. opacity: 0.2;
  5861. filter: alpha(opacity=20);
  5862. }
  5863. .close:hover,
  5864. .close:focus {
  5865. color: #000000;
  5866. text-decoration: none;
  5867. cursor: pointer;
  5868. opacity: 0.5;
  5869. filter: alpha(opacity=50);
  5870. }
  5871. button.close {
  5872. padding: 0;
  5873. cursor: pointer;
  5874. background: transparent;
  5875. border: 0;
  5876. -webkit-appearance: none;
  5877. }
  5878. .modal-open {
  5879. overflow: hidden;
  5880. }
  5881. .modal {
  5882. display: none;
  5883. overflow: hidden;
  5884. position: fixed;
  5885. top: 0;
  5886. right: 0;
  5887. bottom: 0;
  5888. left: 0;
  5889. z-index: 1050;
  5890. -webkit-overflow-scrolling: touch;
  5891. outline: 0;
  5892. }
  5893. .modal.fade .modal-dialog {
  5894. -webkit-transform: translate(0, -25%);
  5895. -ms-transform: translate(0, -25%);
  5896. -o-transform: translate(0, -25%);
  5897. transform: translate(0, -25%);
  5898. -webkit-transition: -webkit-transform 0.3s ease-out;
  5899. -o-transition: -o-transform 0.3s ease-out;
  5900. transition: transform 0.3s ease-out;
  5901. }
  5902. .modal.in .modal-dialog {
  5903. -webkit-transform: translate(0, 0);
  5904. -ms-transform: translate(0, 0);
  5905. -o-transform: translate(0, 0);
  5906. transform: translate(0, 0);
  5907. }
  5908. .modal-open .modal {
  5909. overflow-x: hidden;
  5910. overflow-y: auto;
  5911. }
  5912. .modal-dialog {
  5913. position: relative;
  5914. width: auto;
  5915. margin: 10px;
  5916. }
  5917. .modal-content {
  5918. position: relative;
  5919. background-color: #2b2b2b;
  5920. border: 1px solid #999999;
  5921. border: 1px solid rgba(0, 0, 0, 0.2);
  5922. border-radius: 0px;
  5923. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5924. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5925. -webkit-background-clip: padding-box;
  5926. background-clip: padding-box;
  5927. outline: 0;
  5928. }
  5929. .modal-backdrop {
  5930. position: fixed;
  5931. top: 0;
  5932. right: 0;
  5933. bottom: 0;
  5934. left: 0;
  5935. z-index: 1040;
  5936. background-color: #000000;
  5937. }
  5938. .modal-backdrop.fade {
  5939. opacity: 0;
  5940. filter: alpha(opacity=0);
  5941. }
  5942. .modal-backdrop.in {
  5943. opacity: 0.5;
  5944. filter: alpha(opacity=50);
  5945. }
  5946. .modal-header {
  5947. padding: 0px;
  5948. border-bottom: 0px solid grey;
  5949. }
  5950. .modal-header .close {
  5951. margin-top: 10px;
  5952. margin-right: 10px;
  5953. }
  5954. .modal-title {
  5955. margin: 0;
  5956. line-height: 1.42857143;
  5957. }
  5958. .modal-body {
  5959. position: relative;
  5960. padding-top: 5px;
  5961. padding-bottom: -5px;
  5962. padding-left: 20px;
  5963. padding-right: 20px;
  5964. }
  5965. .modal-footer {
  5966. padding: 20px;
  5967. text-align: right;
  5968. border-top: 0px solid grey;
  5969. }
  5970. .modal-footer .btn + .btn {
  5971. margin-left: 5px;
  5972. margin-bottom: 0;
  5973. }
  5974. .modal-footer .btn-group .btn + .btn {
  5975. margin-left: -1px;
  5976. }
  5977. .modal-footer .btn-block + .btn-block {
  5978. margin-left: 0;
  5979. }
  5980. .modal-scrollbar-measure {
  5981. position: absolute;
  5982. top: -9999px;
  5983. width: 50px;
  5984. height: 50px;
  5985. overflow: scroll;
  5986. }
  5987. @media (min-width: 768px) {
  5988. .modal-dialog {
  5989. width: 600px;
  5990. margin: 10% auto;
  5991. }
  5992. .modal-content {
  5993. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5994. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5995. }
  5996. .modal-sm {
  5997. width: 300px;
  5998. }
  5999. }
  6000. @media (min-width: 992px) {
  6001. .modal-lg {
  6002. width: 900px;
  6003. }
  6004. }
  6005. .tooltip {
  6006. position: absolute;
  6007. z-index: 1070;
  6008. display: block;
  6009. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  6010. font-style: normal;
  6011. font-weight: normal;
  6012. letter-spacing: normal;
  6013. line-break: auto;
  6014. line-height: 1.42857143;
  6015. text-align: left;
  6016. text-align: start;
  6017. text-decoration: none;
  6018. text-shadow: none;
  6019. text-transform: none;
  6020. white-space: normal;
  6021. word-break: normal;
  6022. word-spacing: normal;
  6023. word-wrap: normal;
  6024. font-size: 12px;
  6025. opacity: 0;
  6026. filter: alpha(opacity=0);
  6027. }
  6028. .tooltip.in {
  6029. opacity: 0.9;
  6030. filter: alpha(opacity=90);
  6031. }
  6032. .tooltip.top {
  6033. margin-top: -3px;
  6034. padding: 5px 0;
  6035. }
  6036. .tooltip.right {
  6037. margin-left: 3px;
  6038. padding: 0 5px;
  6039. }
  6040. .tooltip.bottom {
  6041. margin-top: 3px;
  6042. padding: 5px 0;
  6043. }
  6044. .tooltip.left {
  6045. margin-left: -3px;
  6046. padding: 0 5px;
  6047. }
  6048. .tooltip-inner {
  6049. max-width: 200px;
  6050. padding: 3px 8px;
  6051. color: #ffffff;
  6052. text-align: center;
  6053. background-color: #000000;
  6054. border-radius: 4px;
  6055. }
  6056. .tooltip-arrow {
  6057. position: absolute;
  6058. width: 0;
  6059. height: 0;
  6060. border-color: transparent;
  6061. border-style: solid;
  6062. }
  6063. .tooltip.top .tooltip-arrow {
  6064. bottom: 0;
  6065. left: 50%;
  6066. margin-left: -5px;
  6067. border-width: 5px 5px 0;
  6068. border-top-color: #000000;
  6069. }
  6070. .tooltip.top-left .tooltip-arrow {
  6071. bottom: 0;
  6072. right: 5px;
  6073. margin-bottom: -5px;
  6074. border-width: 5px 5px 0;
  6075. border-top-color: #000000;
  6076. }
  6077. .tooltip.top-right .tooltip-arrow {
  6078. bottom: 0;
  6079. left: 5px;
  6080. margin-bottom: -5px;
  6081. border-width: 5px 5px 0;
  6082. border-top-color: #000000;
  6083. }
  6084. .tooltip.right .tooltip-arrow {
  6085. top: 50%;
  6086. left: 0;
  6087. margin-top: -5px;
  6088. border-width: 5px 5px 5px 0;
  6089. border-right-color: #000000;
  6090. }
  6091. .tooltip.left .tooltip-arrow {
  6092. top: 50%;
  6093. right: 0;
  6094. margin-top: -5px;
  6095. border-width: 5px 0 5px 5px;
  6096. border-left-color: #000000;
  6097. }
  6098. .tooltip.bottom .tooltip-arrow {
  6099. top: 0;
  6100. left: 50%;
  6101. margin-left: -5px;
  6102. border-width: 0 5px 5px;
  6103. border-bottom-color: #000000;
  6104. }
  6105. .tooltip.bottom-left .tooltip-arrow {
  6106. top: 0;
  6107. right: 5px;
  6108. margin-top: -5px;
  6109. border-width: 0 5px 5px;
  6110. border-bottom-color: #000000;
  6111. }
  6112. .tooltip.bottom-right .tooltip-arrow {
  6113. top: 0;
  6114. left: 5px;
  6115. margin-top: -5px;
  6116. border-width: 0 5px 5px;
  6117. border-bottom-color: #000000;
  6118. }
  6119. .popover {
  6120. position: absolute;
  6121. top: 0;
  6122. left: 0;
  6123. z-index: 1060;
  6124. display: none;
  6125. max-width: 276px;
  6126. padding: 1px;
  6127. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  6128. font-style: normal;
  6129. font-weight: normal;
  6130. letter-spacing: normal;
  6131. line-break: auto;
  6132. line-height: 1.42857143;
  6133. text-align: left;
  6134. text-align: start;
  6135. text-decoration: none;
  6136. text-shadow: none;
  6137. text-transform: none;
  6138. white-space: normal;
  6139. word-break: normal;
  6140. word-spacing: normal;
  6141. word-wrap: normal;
  6142. font-size: 13px;
  6143. background-color: #ffffff;
  6144. -webkit-background-clip: padding-box;
  6145. background-clip: padding-box;
  6146. border: 1px solid #cccccc;
  6147. border: 1px solid rgba(0, 0, 0, 0.2);
  6148. border-radius: 6px;
  6149. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6150. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6151. }
  6152. .popover.top {
  6153. margin-top: -10px;
  6154. }
  6155. .popover.right {
  6156. margin-left: 10px;
  6157. }
  6158. .popover.bottom {
  6159. margin-top: 10px;
  6160. }
  6161. .popover.left {
  6162. margin-left: -10px;
  6163. }
  6164. .popover-title {
  6165. margin: 0;
  6166. padding: 8px 14px;
  6167. font-size: 13px;
  6168. background-color: #f7f7f7;
  6169. border-bottom: 1px solid #ebebeb;
  6170. border-radius: 5px 5px 0 0;
  6171. }
  6172. .popover-content {
  6173. padding: 9px 14px;
  6174. }
  6175. .popover > .arrow,
  6176. .popover > .arrow:after {
  6177. position: absolute;
  6178. display: block;
  6179. width: 0;
  6180. height: 0;
  6181. border-color: transparent;
  6182. border-style: solid;
  6183. }
  6184. .popover > .arrow {
  6185. border-width: 11px;
  6186. }
  6187. .popover > .arrow:after {
  6188. border-width: 10px;
  6189. content: "";
  6190. }
  6191. .popover.top > .arrow {
  6192. left: 50%;
  6193. margin-left: -11px;
  6194. border-bottom-width: 0;
  6195. border-top-color: #999999;
  6196. border-top-color: rgba(0, 0, 0, 0.25);
  6197. bottom: -11px;
  6198. }
  6199. .popover.top > .arrow:after {
  6200. content: " ";
  6201. bottom: 1px;
  6202. margin-left: -10px;
  6203. border-bottom-width: 0;
  6204. border-top-color: #ffffff;
  6205. }
  6206. .popover.right > .arrow {
  6207. top: 50%;
  6208. left: -11px;
  6209. margin-top: -11px;
  6210. border-left-width: 0;
  6211. border-right-color: #999999;
  6212. border-right-color: rgba(0, 0, 0, 0.25);
  6213. }
  6214. .popover.right > .arrow:after {
  6215. content: " ";
  6216. left: 1px;
  6217. bottom: -10px;
  6218. border-left-width: 0;
  6219. border-right-color: #ffffff;
  6220. }
  6221. .popover.bottom > .arrow {
  6222. left: 50%;
  6223. margin-left: -11px;
  6224. border-top-width: 0;
  6225. border-bottom-color: #999999;
  6226. border-bottom-color: rgba(0, 0, 0, 0.25);
  6227. top: -11px;
  6228. }
  6229. .popover.bottom > .arrow:after {
  6230. content: " ";
  6231. top: 1px;
  6232. margin-left: -10px;
  6233. border-top-width: 0;
  6234. border-bottom-color: #ffffff;
  6235. }
  6236. .popover.left > .arrow {
  6237. top: 50%;
  6238. right: -11px;
  6239. margin-top: -11px;
  6240. border-right-width: 0;
  6241. border-left-color: #999999;
  6242. border-left-color: rgba(0, 0, 0, 0.25);
  6243. }
  6244. .popover.left > .arrow:after {
  6245. content: " ";
  6246. right: 1px;
  6247. border-right-width: 0;
  6248. border-left-color: #ffffff;
  6249. bottom: -10px;
  6250. }
  6251. .carousel {
  6252. position: relative;
  6253. }
  6254. .carousel-inner {
  6255. position: relative;
  6256. overflow: hidden;
  6257. width: 100%;
  6258. }
  6259. .carousel-inner > .item {
  6260. display: none;
  6261. position: relative;
  6262. -webkit-transition: 0.6s ease-in-out left;
  6263. -o-transition: 0.6s ease-in-out left;
  6264. transition: 0.6s ease-in-out left;
  6265. }
  6266. .carousel-inner > .item > img,
  6267. .carousel-inner > .item > a > img {
  6268. line-height: 1;
  6269. }
  6270. @media all and (transform-3d), (-webkit-transform-3d) {
  6271. .carousel-inner > .item {
  6272. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6273. -o-transition: -o-transform 0.6s ease-in-out;
  6274. transition: transform 0.6s ease-in-out;
  6275. -webkit-backface-visibility: hidden;
  6276. backface-visibility: hidden;
  6277. -webkit-perspective: 1000px;
  6278. perspective: 1000px;
  6279. }
  6280. .carousel-inner > .item.next,
  6281. .carousel-inner > .item.active.right {
  6282. -webkit-transform: translate3d(100%, 0, 0);
  6283. transform: translate3d(100%, 0, 0);
  6284. left: 0;
  6285. }
  6286. .carousel-inner > .item.prev,
  6287. .carousel-inner > .item.active.left {
  6288. -webkit-transform: translate3d(-100%, 0, 0);
  6289. transform: translate3d(-100%, 0, 0);
  6290. left: 0;
  6291. }
  6292. .carousel-inner > .item.next.left,
  6293. .carousel-inner > .item.prev.right,
  6294. .carousel-inner > .item.active {
  6295. -webkit-transform: translate3d(0, 0, 0);
  6296. transform: translate3d(0, 0, 0);
  6297. left: 0;
  6298. }
  6299. }
  6300. .carousel-inner > .active,
  6301. .carousel-inner > .next,
  6302. .carousel-inner > .prev {
  6303. display: block;
  6304. }
  6305. .carousel-inner > .active {
  6306. left: 0;
  6307. }
  6308. .carousel-inner > .next,
  6309. .carousel-inner > .prev {
  6310. position: absolute;
  6311. top: 0;
  6312. width: 100%;
  6313. }
  6314. .carousel-inner > .next {
  6315. left: 100%;
  6316. }
  6317. .carousel-inner > .prev {
  6318. left: -100%;
  6319. }
  6320. .carousel-inner > .next.left,
  6321. .carousel-inner > .prev.right {
  6322. left: 0;
  6323. }
  6324. .carousel-inner > .active.left {
  6325. left: -100%;
  6326. }
  6327. .carousel-inner > .active.right {
  6328. left: 100%;
  6329. }
  6330. .carousel-control {
  6331. position: absolute;
  6332. top: 0;
  6333. left: 0;
  6334. bottom: 0;
  6335. width: 15%;
  6336. opacity: 0.5;
  6337. filter: alpha(opacity=50);
  6338. font-size: 20px;
  6339. color: #ffffff;
  6340. text-align: center;
  6341. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6342. background-color: rgba(0, 0, 0, 0);
  6343. }
  6344. .carousel-control.left {
  6345. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6346. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6347. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  6348. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6349. background-repeat: repeat-x;
  6350. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6351. }
  6352. .carousel-control.right {
  6353. left: auto;
  6354. right: 0;
  6355. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6356. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6357. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  6358. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6359. background-repeat: repeat-x;
  6360. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6361. }
  6362. .carousel-control:hover,
  6363. .carousel-control:focus {
  6364. outline: 0;
  6365. color: #ffffff;
  6366. text-decoration: none;
  6367. opacity: 0.9;
  6368. filter: alpha(opacity=90);
  6369. }
  6370. .carousel-control .icon-prev,
  6371. .carousel-control .icon-next,
  6372. .carousel-control .glyphicon-chevron-left,
  6373. .carousel-control .glyphicon-chevron-right {
  6374. position: absolute;
  6375. top: 50%;
  6376. margin-top: -10px;
  6377. z-index: 5;
  6378. display: inline-block;
  6379. }
  6380. .carousel-control .icon-prev,
  6381. .carousel-control .glyphicon-chevron-left {
  6382. left: 50%;
  6383. margin-left: -10px;
  6384. }
  6385. .carousel-control .icon-next,
  6386. .carousel-control .glyphicon-chevron-right {
  6387. right: 50%;
  6388. margin-right: -10px;
  6389. }
  6390. .carousel-control .icon-prev,
  6391. .carousel-control .icon-next {
  6392. width: 20px;
  6393. height: 20px;
  6394. line-height: 1;
  6395. font-family: serif;
  6396. }
  6397. .carousel-control .icon-prev:before {
  6398. content: '\2039';
  6399. }
  6400. .carousel-control .icon-next:before {
  6401. content: '\203a';
  6402. }
  6403. .carousel-indicators {
  6404. position: absolute;
  6405. bottom: 10px;
  6406. left: 50%;
  6407. z-index: 15;
  6408. width: 60%;
  6409. margin-left: -30%;
  6410. padding-left: 0;
  6411. list-style: none;
  6412. text-align: center;
  6413. }
  6414. .carousel-indicators li {
  6415. display: inline-block;
  6416. width: 10px;
  6417. height: 10px;
  6418. margin: 1px;
  6419. text-indent: -999px;
  6420. border: 1px solid #ffffff;
  6421. border-radius: 10px;
  6422. cursor: pointer;
  6423. background-color: #000 \9;
  6424. background-color: rgba(0, 0, 0, 0);
  6425. }
  6426. .carousel-indicators .active {
  6427. margin: 0;
  6428. width: 12px;
  6429. height: 12px;
  6430. background-color: #ffffff;
  6431. }
  6432. .carousel-caption {
  6433. position: absolute;
  6434. left: 15%;
  6435. right: 15%;
  6436. bottom: 20px;
  6437. z-index: 10;
  6438. padding-top: 20px;
  6439. padding-bottom: 20px;
  6440. color: #ffffff;
  6441. text-align: center;
  6442. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6443. }
  6444. .carousel-caption .btn {
  6445. text-shadow: none;
  6446. }
  6447. @media screen and (min-width: 768px) {
  6448. .carousel-control .glyphicon-chevron-left,
  6449. .carousel-control .glyphicon-chevron-right,
  6450. .carousel-control .icon-prev,
  6451. .carousel-control .icon-next {
  6452. width: 30px;
  6453. height: 30px;
  6454. margin-top: -10px;
  6455. font-size: 30px;
  6456. }
  6457. .carousel-control .glyphicon-chevron-left,
  6458. .carousel-control .icon-prev {
  6459. margin-left: -10px;
  6460. }
  6461. .carousel-control .glyphicon-chevron-right,
  6462. .carousel-control .icon-next {
  6463. margin-right: -10px;
  6464. }
  6465. .carousel-caption {
  6466. left: 20%;
  6467. right: 20%;
  6468. padding-bottom: 30px;
  6469. }
  6470. .carousel-indicators {
  6471. bottom: 20px;
  6472. }
  6473. }
  6474. .clearfix:before,
  6475. .clearfix:after,
  6476. .dl-horizontal dd:before,
  6477. .dl-horizontal dd:after,
  6478. .container:before,
  6479. .container:after,
  6480. .container-fluid:before,
  6481. .container-fluid:after,
  6482. .row:before,
  6483. .row:after,
  6484. .form-horizontal .form-group:before,
  6485. .form-horizontal .form-group:after,
  6486. .btn-toolbar:before,
  6487. .btn-toolbar:after,
  6488. .btn-group-vertical > .btn-group:before,
  6489. .btn-group-vertical > .btn-group:after,
  6490. .nav:before,
  6491. .nav:after,
  6492. .navbar:before,
  6493. .navbar:after,
  6494. .navbar-header:before,
  6495. .navbar-header:after,
  6496. .navbar-collapse:before,
  6497. .navbar-collapse:after,
  6498. .pager:before,
  6499. .pager:after,
  6500. .panel-body:before,
  6501. .panel-body:after,
  6502. .modal-header:before,
  6503. .modal-header:after,
  6504. .modal-footer:before,
  6505. .modal-footer:after {
  6506. content: " ";
  6507. display: table;
  6508. }
  6509. .clearfix:after,
  6510. .dl-horizontal dd:after,
  6511. .container:after,
  6512. .container-fluid:after,
  6513. .row:after,
  6514. .form-horizontal .form-group:after,
  6515. .btn-toolbar:after,
  6516. .btn-group-vertical > .btn-group:after,
  6517. .nav:after,
  6518. .navbar:after,
  6519. .navbar-header:after,
  6520. .navbar-collapse:after,
  6521. .pager:after,
  6522. .panel-body:after,
  6523. .modal-header:after,
  6524. .modal-footer:after {
  6525. clear: both;
  6526. }
  6527. .center-block {
  6528. display: block;
  6529. margin-left: auto;
  6530. margin-right: auto;
  6531. }
  6532. .pull-right {
  6533. float: right !important;
  6534. }
  6535. .pull-left {
  6536. float: left !important;
  6537. }
  6538. .hide {
  6539. display: none !important;
  6540. }
  6541. .show {
  6542. display: block !important;
  6543. }
  6544. .invisible {
  6545. visibility: hidden;
  6546. }
  6547. .text-hide {
  6548. font: 0/0 a;
  6549. color: transparent;
  6550. text-shadow: none;
  6551. background-color: transparent;
  6552. border: 0;
  6553. }
  6554. .hidden {
  6555. display: none !important;
  6556. }
  6557. .affix {
  6558. position: fixed;
  6559. }
  6560. @-ms-viewport {
  6561. width: device-width;
  6562. }
  6563. .visible-xs,
  6564. .visible-sm,
  6565. .visible-md,
  6566. .visible-lg {
  6567. display: none !important;
  6568. }
  6569. .visible-xs-block,
  6570. .visible-xs-inline,
  6571. .visible-xs-inline-block,
  6572. .visible-sm-block,
  6573. .visible-sm-inline,
  6574. .visible-sm-inline-block,
  6575. .visible-md-block,
  6576. .visible-md-inline,
  6577. .visible-md-inline-block,
  6578. .visible-lg-block,
  6579. .visible-lg-inline,
  6580. .visible-lg-inline-block {
  6581. display: none !important;
  6582. }
  6583. @media (max-width: 767px) {
  6584. .visible-xs {
  6585. display: block !important;
  6586. }
  6587. table.visible-xs {
  6588. display: table !important;
  6589. }
  6590. tr.visible-xs {
  6591. display: table-row !important;
  6592. }
  6593. th.visible-xs,
  6594. td.visible-xs {
  6595. display: table-cell !important;
  6596. }
  6597. }
  6598. @media (max-width: 767px) {
  6599. .visible-xs-block {
  6600. display: block !important;
  6601. }
  6602. }
  6603. @media (max-width: 767px) {
  6604. .visible-xs-inline {
  6605. display: inline !important;
  6606. }
  6607. }
  6608. @media (max-width: 767px) {
  6609. .visible-xs-inline-block {
  6610. display: inline-block !important;
  6611. }
  6612. }
  6613. @media (min-width: 768px) and (max-width: 991px) {
  6614. .visible-sm {
  6615. display: block !important;
  6616. }
  6617. table.visible-sm {
  6618. display: table !important;
  6619. }
  6620. tr.visible-sm {
  6621. display: table-row !important;
  6622. }
  6623. th.visible-sm,
  6624. td.visible-sm {
  6625. display: table-cell !important;
  6626. }
  6627. }
  6628. @media (min-width: 768px) and (max-width: 991px) {
  6629. .visible-sm-block {
  6630. display: block !important;
  6631. }
  6632. }
  6633. @media (min-width: 768px) and (max-width: 991px) {
  6634. .visible-sm-inline {
  6635. display: inline !important;
  6636. }
  6637. }
  6638. @media (min-width: 768px) and (max-width: 991px) {
  6639. .visible-sm-inline-block {
  6640. display: inline-block !important;
  6641. }
  6642. }
  6643. @media (min-width: 992px) and (max-width: 1199px) {
  6644. .visible-md {
  6645. display: block !important;
  6646. }
  6647. table.visible-md {
  6648. display: table !important;
  6649. }
  6650. tr.visible-md {
  6651. display: table-row !important;
  6652. }
  6653. th.visible-md,
  6654. td.visible-md {
  6655. display: table-cell !important;
  6656. }
  6657. }
  6658. @media (min-width: 992px) and (max-width: 1199px) {
  6659. .visible-md-block {
  6660. display: block !important;
  6661. }
  6662. }
  6663. @media (min-width: 992px) and (max-width: 1199px) {
  6664. .visible-md-inline {
  6665. display: inline !important;
  6666. }
  6667. }
  6668. @media (min-width: 992px) and (max-width: 1199px) {
  6669. .visible-md-inline-block {
  6670. display: inline-block !important;
  6671. }
  6672. }
  6673. @media (min-width: 1200px) {
  6674. .visible-lg {
  6675. display: block !important;
  6676. }
  6677. table.visible-lg {
  6678. display: table !important;
  6679. }
  6680. tr.visible-lg {
  6681. display: table-row !important;
  6682. }
  6683. th.visible-lg,
  6684. td.visible-lg {
  6685. display: table-cell !important;
  6686. }
  6687. }
  6688. @media (min-width: 1200px) {
  6689. .visible-lg-block {
  6690. display: block !important;
  6691. }
  6692. }
  6693. @media (min-width: 1200px) {
  6694. .visible-lg-inline {
  6695. display: inline !important;
  6696. }
  6697. }
  6698. @media (min-width: 1200px) {
  6699. .visible-lg-inline-block {
  6700. display: inline-block !important;
  6701. }
  6702. }
  6703. @media (max-width: 767px) {
  6704. .hidden-xs {
  6705. display: none !important;
  6706. }
  6707. }
  6708. @media (min-width: 768px) and (max-width: 991px) {
  6709. .hidden-sm {
  6710. display: none !important;
  6711. }
  6712. }
  6713. @media (min-width: 992px) and (max-width: 1199px) {
  6714. .hidden-md {
  6715. display: none !important;
  6716. }
  6717. }
  6718. @media (min-width: 1200px) {
  6719. .hidden-lg {
  6720. display: none !important;
  6721. }
  6722. }
  6723. .visible-print {
  6724. display: none !important;
  6725. }
  6726. @media print {
  6727. .visible-print {
  6728. display: block !important;
  6729. }
  6730. table.visible-print {
  6731. display: table !important;
  6732. }
  6733. tr.visible-print {
  6734. display: table-row !important;
  6735. }
  6736. th.visible-print,
  6737. td.visible-print {
  6738. display: table-cell !important;
  6739. }
  6740. }
  6741. .visible-print-block {
  6742. display: none !important;
  6743. }
  6744. @media print {
  6745. .visible-print-block {
  6746. display: block !important;
  6747. }
  6748. }
  6749. .visible-print-inline {
  6750. display: none !important;
  6751. }
  6752. @media print {
  6753. .visible-print-inline {
  6754. display: inline !important;
  6755. }
  6756. }
  6757. .visible-print-inline-block {
  6758. display: none !important;
  6759. }
  6760. @media print {
  6761. .visible-print-inline-block {
  6762. display: inline-block !important;
  6763. }
  6764. }
  6765. @media print {
  6766. .hidden-print {
  6767. display: none !important;
  6768. }
  6769. }
  6770. .navbar-inverse .badge {
  6771. background-color: #fff;
  6772. color: #d9230f;
  6773. }
  6774. .btn {
  6775. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  6776. }
  6777. .btn-default,
  6778. .btn-default:hover {
  6779. background-image: -webkit-linear-gradient(#4f5151, #474949 6%, #3f4141);
  6780. background-image: -o-linear-gradient(#4f5151, #474949 6%, #3f4141);
  6781. background-image: -webkit-gradient(linear, left top, left bottom, from(#4f5151), color-stop(6%, #474949), to(#3f4141));
  6782. background-image: linear-gradient(#4f5151, #474949 6%, #3f4141);
  6783. background-repeat: no-repeat;
  6784. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4f5151', endColorstr='#ff3f4141', GradientType=0);
  6785. -webkit-filter: none;
  6786. filter: none;
  6787. border: 1px solid #2e2f2f;
  6788. }
  6789. .btn-primary,
  6790. .btn-primary:hover {
  6791. background-image: -webkit-linear-gradient(#e72510, #d9230f 6%, #cb210e);
  6792. background-image: -o-linear-gradient(#e72510, #d9230f 6%, #cb210e);
  6793. background-image: -webkit-gradient(linear, left top, left bottom, from(#e72510), color-stop(6%, #d9230f), to(#cb210e));
  6794. background-image: linear-gradient(#e72510, #d9230f 6%, #cb210e);
  6795. background-repeat: no-repeat;
  6796. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe72510', endColorstr='#ffcb210e', GradientType=0);
  6797. -webkit-filter: none;
  6798. filter: none;
  6799. border: 1px solid #a91b0c;
  6800. }
  6801. .btn-success,
  6802. .btn-success:hover {
  6803. /* background-image: -webkit-linear-gradient(#37ABC8, #469408 6%, #3f8507); */
  6804. background-image: -o-linear-gradient(#37ABC8, #469408 6%, #3f8507);
  6805. /* background-image: -webkit-gradient(linear, left top, left bottom, from(#37ABC8), color-stop(6%, #469408), to(#3f8507)); */
  6806. background-image: linear-gradient(#37ABC8, #27859c 6%, #247084);
  6807. background-repeat: no-repeat;
  6808. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4da309', endColorstr='#ff3f8507', GradientType=0);
  6809. -webkit-filter: none;
  6810. filter: none;
  6811. border: 1px solid #236271;
  6812. }
  6813. .btn-info,
  6814. .btn-info:hover {
  6815. background-image: -webkit-linear-gradient(#02a5de, #029acf 6%, #028fc0);
  6816. background-image: -o-linear-gradient(#02a5de, #029acf 6%, #028fc0);
  6817. background-image: -webkit-gradient(linear, left top, left bottom, from(#02a5de), color-stop(6%, #029acf), to(#028fc0));
  6818. background-image: linear-gradient(#02a5de, #029acf 6%, #028fc0);
  6819. background-repeat: no-repeat;
  6820. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff02a5de', endColorstr='#ff028fc0', GradientType=0);
  6821. -webkit-filter: none;
  6822. filter: none;
  6823. border: 1px solid #02749c;
  6824. }
  6825. .btn-fb,
  6826. .btn-fb:hover {
  6827. background-image: -webkit-linear-gradient(#3B5999, #3B5999 6%, #3B5999);
  6828. background-image: -o-linear-gradient(#3B5999, #3B5999 6%, #3B5999);
  6829. background-image: -webkit-gradient(linear, left top, left bottom, from(#02a5de), color-stop(6%, #3B5999), to(#3B5999));
  6830. background-image: linear-gradient(#3B5999, #3B5999 6%, #3B5999);
  6831. background-repeat: no-repeat;
  6832. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff02a5de', endColorstr='#ff028fc0', GradientType=0);
  6833. -webkit-filter: none;
  6834. filter: none;
  6835. border: 1px solid #3B5999;
  6836. color: #ffffff;
  6837. }
  6838. .btn-tw,
  6839. .btn-tw:hover {
  6840. background-image: -webkit-linear-gradient(#00aced, #00aced 6%, #00aced);
  6841. background-image: -o-linear-gradient(#00aced, #00aced 6%, #00aced);
  6842. background-image: -webkit-gradient(linear, left top, left bottom, from(#02a5de), color-stop(6%, #00aced), to(#00aced));
  6843. background-image: linear-gradient(#00aced, #00aced 6%, #00aced);
  6844. background-repeat: no-repeat;
  6845. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff02a5de', endColorstr='#ff028fc0', GradientType=0);
  6846. -webkit-filter: none;
  6847. filter: none;
  6848. border: 1px solid #00aced;
  6849. color: #ffffff;
  6850. }
  6851. .btn-warning,
  6852. .btn-warning:hover {
  6853. background-image: -webkit-linear-gradient(#a54caa, #9b479f 6%, #914294);
  6854. background-image: -o-linear-gradient(#a54caa, #9b479f 6%, #914294);
  6855. background-image: -webkit-gradient(linear, left top, left bottom, from(#a54caa), color-stop(6%, #9b479f), to(#914294));
  6856. background-image: linear-gradient(#a54caa, #9b479f 6%, #914294);
  6857. background-repeat: no-repeat;
  6858. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa54caa', endColorstr='#ff914294', GradientType=0);
  6859. -webkit-filter: none;
  6860. filter: none;
  6861. border: 1px solid #79377c;
  6862. }
  6863. .btn-danger,
  6864. .btn-danger:hover {
  6865. background-image: -webkit-linear-gradient(#e08b27, #d9831f 6%, #cc7b1d);
  6866. background-image: -o-linear-gradient(#e08b27, #d9831f 6%, #cc7b1d);
  6867. background-image: -webkit-gradient(linear, left top, left bottom, from(#e08b27), color-stop(6%, #d9831f), to(#cc7b1d));
  6868. background-image: linear-gradient(#e08b27, #d9831f 6%, #cc7b1d);
  6869. background-repeat: no-repeat;
  6870. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe08b27', endColorstr='#ffcc7b1d', GradientType=0);
  6871. -webkit-filter: none;
  6872. filter: none;
  6873. border: 1px solid #ac6819;
  6874. }
  6875. body {
  6876. font-weight: 200;
  6877. }
  6878. th {
  6879. color: #444444;
  6880. }
  6881. legend {
  6882. color: #444444;
  6883. }
  6884. label {
  6885. font-weight: normal;
  6886. }
  6887. .has-warning .help-block,
  6888. .has-warning .control-label,
  6889. .has-warning .radio,
  6890. .has-warning .checkbox,
  6891. .has-warning .radio-inline,
  6892. .has-warning .checkbox-inline,
  6893. .has-warning.radio label,
  6894. .has-warning.checkbox label,
  6895. .has-warning.radio-inline label,
  6896. .has-warning.checkbox-inline label,
  6897. .has-warning .form-control-feedback {
  6898. color: #d9831f;
  6899. }
  6900. .has-warning .form-control,
  6901. .has-warning .form-control:focus {
  6902. border-color: #d9831f;
  6903. }
  6904. .has-error .help-block,
  6905. .has-error .control-label,
  6906. .has-error .radio,
  6907. .has-error .checkbox,
  6908. .has-error .radio-inline,
  6909. .has-error .checkbox-inline,
  6910. .has-error.radio label,
  6911. .has-error.checkbox label,
  6912. .has-error.radio-inline label,
  6913. .has-error.checkbox-inline label,
  6914. .has-error .form-control-feedback {
  6915. color: #d9230f;
  6916. }
  6917. .has-error .form-control,
  6918. .has-error .form-control:focus {
  6919. border-color: #d9230f;
  6920. }
  6921. .has-success .help-block,
  6922. .has-success .control-label,
  6923. .has-success .radio,
  6924. .has-success .checkbox,
  6925. .has-success .radio-inline,
  6926. .has-success .checkbox-inline,
  6927. .has-success.radio label,
  6928. .has-success.checkbox label,
  6929. .has-success.radio-inline label,
  6930. .has-success.checkbox-inline label,
  6931. .has-success .form-control-feedback {
  6932. color: #469408;
  6933. }
  6934. .has-success .form-control,
  6935. .has-success .form-control:focus {
  6936. border-color: #469408;
  6937. }
  6938. .pager a {
  6939. color: #444444;
  6940. }
  6941. .pager a:hover,
  6942. .pager .active > a {
  6943. border-color: #d9230f;
  6944. color: #fff;
  6945. }
  6946. .pager .disabled > a {
  6947. border-color: #dddddd;
  6948. }
  6949. footer{
  6950. z-index: -99;
  6951. }