bootstrap.css 120 KB

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