bootstrap.css 127 KB

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