bootstrap.css 138 KB

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