all.css 783 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776
  1. #fitem_id_availabilityconditionsjson .availability_grade input[type=text]{width:3em}.que.calculated
  2. .answer{padding:0.3em;width:auto;display:inline}.que.calculated .answer input[type="text"]{width:30%}#page-question-type-calculated.dir-rtl input[name^="answer"],
  3. #page-question-type-calculated.dir-rtl input[name^="unit"],
  4. #page-question-type-calculated.dir-rtl input[name^="multiplier"],
  5. #page-question-type-calculated.dir-rtl input[name^="calcmax"],
  6. #page-question-type-calculated.dir-rtl input[name^="calcmin"],
  7. #page-question-type-calculated.dir-rtl input[name^="number"],
  8. #page-question-type-calculated.dir-rtl input[name^="tolerance"]{direction:ltr;text-align:left}body#page-question-type-calculated div[id^=fgroup_id_][id*=answeroptions_],
  9. body#page-question-type-calculatedmulti div[id^=fgroup_id_][id*=answeroptions_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  10. solid #BBB;border-bottom:0}body#page-question-type-calculated div[id^=fgroup_id_][id*=answeroptions_] .fgrouplabel label,
  11. body#page-question-type-calculatedmulti div[id^=fgroup_id_][id*=answeroptions_] .fgrouplabel
  12. label{font-weight:bold}body#page-question-type-calculated div[id^=fgroup_id_][id*=answeroptions_] label[for^='id_answer_'],
  13. body#page-question-type-calculated div[id^=fgroup_id_][id*=answertolerance_] label[for^='id_tolerance_'],
  14. body#page-question-type-calculated div[id^=fgroup_id_][id*=answerdisplay_] label[for^='id_correctanswerlength_'],
  15. body#page-question-type-calculatedmulti div[id^=fgroup_id_][id*=answeroptions_] label[for^='id_answer_'],
  16. body#page-question-type-calculatedmulti div[id^=fgroup_id_][id*=answerdisplay_] label[for^='id_correctanswerlength_']{position:absolute;left:-10000px;font-weight:normal;font-size:1em}body#page-question-type-calculated div[id^=fgroup_id_][id*=answertolerance_],
  17. body#page-question-type-calculated div[id^=fgroup_id_][id*=answerdisplay_],
  18. body#page-question-type-calculatedmulti div[id^=fgroup_id_][id*=answertolerance_],
  19. body#page-question-type-calculatedmulti div[id^=fgroup_id_][id*=answerdisplay_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  20. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-calculated div[id^=fitem_id_][id*=feedback_],
  21. body#page-question-type-calculatedmulti div[id^=fitem_id_][id*=feedback_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  22. solid #BBB;border-top:0}.que.calculatedmulti .answer
  23. .specificfeedback{display:inline;padding:0
  24. 0.7em;background:#FFF3BF}.que.calculatedmulti .answer .specificfeedback
  25. *{display:inline;background:#FFF3BF}.que.calculatedmulti .answer .specificfeedback
  26. script{display:none}.que.calculatedmulti .answer div.r0,
  27. .que.calculatedmulti .answer
  28. div.r1{padding:0.3em}.que.calculatedsimple
  29. .answer{padding:0.3em;width:auto;display:inline}.que.calculatedsimple .answer input[type="text"]{width:30%}body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answeroptions_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  30. solid #BBB;border-bottom:0}body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answeroptions_] .fgrouplabel
  31. label{font-weight:bold}body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answeroptions_] label[for^='id_answer_'],
  32. body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answertolerance_] label[for^='id_tolerance_'],
  33. body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answerdisplay_] label[for^='id_correctanswerlength_']{position:absolute;left:-10000px;font-weight:normal;font-size:1em}body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answertolerance_],
  34. body#page-question-type-calculatedsimple div[id^=fgroup_id_][id*=answerdisplay_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  35. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-calculatedsimple div[id^=fitem_id_][id*=feedback_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  36. solid #BBB;border-top:0}.que.ddimageortext
  37. .qtext{margin-bottom:0.5em;display:block}.que.ddimageortext div.droparea img, form.mform fieldset#id_previewareaheader div.droparea
  38. img{border:1px
  39. solid #000;max-width:none}.que.ddimageortext .draghome, form.mform fieldset#id_previewareaheader
  40. .draghome{vertical-align:top;margin:5px;visibility:hidden}.que.ddimageortext div.draghome, form.mform fieldset#id_previewareaheader
  41. div.draghome{border:1px
  42. solid black;cursor:move;background-color:#B0C4DE;display:inline-block;height:auto;width:auto;zoom:1}.que.ddimageortext .group1, form.mform fieldset#id_previewareaheader
  43. .group1{background-color:#FFF}.que.ddimageortext .group2, form.mform fieldset#id_previewareaheader
  44. .group2{background-color:#B0C4DE}.que.ddimageortext .group3, form.mform fieldset#id_previewareaheader
  45. .group3{background-color:#DCDCDC}.que.ddimageortext .group4, form.mform fieldset#id_previewareaheader
  46. .group4{background-color:#D8BFD8}.que.ddimageortext .group5, form.mform fieldset#id_previewareaheader
  47. .group5{background-color:#87CEFA}.que.ddimageortext .group6, form.mform fieldset#id_previewareaheader
  48. .group6{background-color:#DAA520}.que.ddimageortext .group7, form.mform fieldset#id_previewareaheader
  49. .group7{background-color:#FFD700}.que.ddimageortext .group8, form.mform fieldset#id_previewareaheader
  50. .group8{background-color:#F0E68C}.que.ddimageortext .drag, form.mform fieldset#id_previewareaheader
  51. .drag{border:1px
  52. solid black;cursor:move;z-index:2}.que.ddimageortext .dragitems.readonly
  53. .drag{cursor:auto}.que.ddimageortext div.ddarea, form.mform fieldset#id_previewareaheader
  54. div.ddarea{text-align:center}.que.ddimageortext .dropbackground, form.mform fieldset#id_previewareaheader
  55. .dropbackground{margin:0
  56. auto}.que.ddimageortext
  57. .dropzone{border:1px
  58. solid black;position:absolute;z-index:1}.que.ddimageortext .dropzone:focus,
  59. .que.ddimageortext .dropzone.yui3-dd-drop-over.yui3-dd-drop-active-valid{border-color:#0a0;box-shadow:0 0 5px 5px rgba(255, 255, 150, 1)}.que.ddimageortext div.dragitems div.draghome, .que.ddimageortext div.dragitems div.drag,
  60. form.mform fieldset#id_previewareaheader div.draghome, form.mform fieldset#id_previewareaheader
  61. div.drag{font:13px/1.231 arial,helvetica,clean,sans-serif}form.mform fieldset#id_previewareaheader div.drag.yui3-dd-dragging,
  62. .que.ddimageortext div.drag.yui3-dd-dragging{z-index:3;box-shadow:3px 3px 4px #000}body#page-question-type-ddimageortext div[id^=fgroup_id_][id*=drags_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  63. solid #BBB;border-bottom:0}body#page-question-type-ddimageortext div[id^=fgroup_id_][id*=drags_] .fgrouplabel
  64. label{font-weight:bold}body#page-question-type-ddimageortext div[id^=fitem_id_][id*=dragitem_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  65. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-ddimageortext div[id^=fitem_id_][id*=draglabel_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  66. solid #BBB;border-top:0}.que.ddmarker
  67. .qtext{margin-bottom:0.5em;display:block}.que.ddmarker div.droparea img, form.mform fieldset#id_previewareaheader div.droparea
  68. img{border:1px
  69. solid #000;max-width:none}.que.ddmarker .draghome img, .que.ddmarker .draghome
  70. span{visibility:hidden}.que.ddmarker .dragitems
  71. .dragitem{cursor:move;position:absolute;z-index:2}.que.ddmarker .dragitems
  72. .draghome{margin:10px}.que.ddmarker
  73. .dragitems{margin-top:10px}.que.ddmarker .dragitems.readonly
  74. .dragitem{cursor:auto}.que.ddmarker div.ddarea, form.mform fieldset#id_previewareaheader
  75. div.ddarea{text-align:center}form.mform fieldset#id_previewareaheader div.ddarea
  76. .markertexts{min-height:80px}.que.ddmarker .dropbackground, form.mform fieldset#id_previewareaheader
  77. .dropbackground{margin:0
  78. auto}.que.ddmarker div.dragitems div.draghome, .que.ddmarker div.dragitems div.dragitem,
  79. form.mform fieldset#id_previewareaheader div.draghome, form.mform fieldset#id_previewareaheader
  80. div.drag{font:13px/1.231 arial,helvetica,clean,sans-serif}.que.ddmarker div.dragitems span.markertext,
  81. .que.ddmarker div.markertexts span.markertext,
  82. form.mform fieldset#id_previewareaheader div.markertexts
  83. span.markertext{margin:0
  84. 5px;z-index:3;background-color:white;border:2px
  85. solid black;padding:5px;display:inline-block;zoom:1;border-radius:10px}.que.ddmarker div.markertexts
  86. span.markertext{z-index:2;background-color:yellow;border-style:solid;border-width:2px;border-color:khaki}.que.ddmarker
  87. span.wrongpart{background-color:yellow;border-style:solid;border-width:2px;border-color:khaki;padding:5px;border-radius:10px;filter:alpha(opacity=60);opacity:0.6;margin:5px;display:inline-block}.que.ddmarker div.dragitems
  88. img.target{position:absolute;left:-7px;top:-7px}.que.ddmarker div.dragitems div.draghome
  89. img.target{display:none}.que.ddmarker .dragitem.yui3-dd-dragging
  90. span.markertext{z-index:3;box-shadow:3px 3px 4px #000}#page-question-type-ddmarker .ddarea
  91. .grid{position:absolute;background:url(/theme/image.php/essential/qtype_ddmarker/1489002274/grid) repeat scroll 0 0}body#page-question-type-ddmarker div[id^=fitem_id_][id*=hint_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  92. solid #BBB;border-bottom:0}body#page-question-type-ddmarker div[id^=fitem_id_][id*=hint_] .fitemtitle{font-weight:bold}body#page-question-type-ddmarker div[id^=fitem_id_][id*=hintoptions_],
  93. body#page-question-type-ddmarker div[id^=fitem_id_][id*=hintshownumcorrect_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  94. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-ddmarker div[id^=fitem_id_][id*=hintclearwrong_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  95. solid #BBB;border-top:0}body#page-question-type-ddmarker
  96. #fitem_id_penalty{margin-bottom:2em}.que.ddwtos
  97. .qtext{margin-bottom:0.5em;display:block}.que.ddwtos
  98. .draghome{margin-bottom:1em}.que.ddwtos
  99. .answertext{margin-bottom:0.5em}.que.ddwtos
  100. .drop{display:inline-block;text-align:center;border:1px
  101. solid #000;margin-bottom:2px}.que.ddwtos .draghome, .que.ddwtos
  102. .drag{display:inline-block;text-align:center;background:transparent;border:0}.que.ddwtos .draghome, .que.ddwtos
  103. .drag.unplaced{border:1px
  104. solid #000}.que.ddwtos
  105. .draghome{visibility:hidden}.que.ddwtos
  106. .drag{z-index:2}.que.ddwtos .drag.yui3-dd-dragging{z-index:3;box-shadow:3px 3px 4px #000}.que.ddwtos .drop:focus,
  107. .que.ddwtos .drop.yui3-dd-drop-over.yui3-dd-drop-active-valid{border-color:#0a0;box-shadow:0 0 5px 5px rgba(255, 255, 150, 1)}.que.ddwtos .notreadonly
  108. .drag{cursor:move}.que.ddwtos .readonly
  109. .drag{cursor:default}.que.ddwtos
  110. span.incorrect{background-color:#faa}.que.ddwtos
  111. span.correct{background-color:#afa}.que.ddwtos
  112. .group1{background-color:#FFF}.que.ddwtos
  113. .group2{background-color:#DCDCDC}.que.ddwtos
  114. .group3{background-color:#B0C4DE}.que.ddwtos
  115. .group4{background-color:#D8BFD8}.que.ddwtos
  116. .group5{background-color:#87CEFA}.que.ddwtos
  117. .group6{background-color:#DAA520}.que.ddwtos
  118. .group7{background-color:#FFD700}.que.ddwtos
  119. .group8{background-color:#F0E68C}.que.ddwtos sub,
  120. .que.ddwtos
  121. sup{font-size:80%;position:relative;vertical-align:baseline}.que.ddwtos
  122. sup{top:-0.4em}.que.ddwtos
  123. sub{bottom:-0.2em}.que.essay
  124. textarea.qtype_essay_response{width:100%}.que.essay
  125. textarea.qtype_essay_response.qtype_essay_plain{white-space:pre-wrap;font:inherit}.que.essay
  126. textarea.qtype_essay_response.qtype_essay_monospaced{white-space:pre;font-family:Andale Mono,Monaco,Courier New,DejaVu Sans Mono,monospace}.que.essay
  127. .qtype_essay_response{min-height:3em}.que.essay
  128. .qtype_essay_response.readonly{background-color:white}.que.essay div.qtype_essay_response
  129. textarea{width:100%}.que.gapselect
  130. .qtext{line-height:2em;margin-top:1px;margin-bottom:0.5em;display:block}.que.gapselect
  131. .answercontainer{line-height:2em;margin-bottom:1em;display:block}.que.gapselect
  132. .answertext{padding-bottom:0.5em}.que.sddl
  133. .control{padding:0.2em}body#page-question-type-match div[id^=fitem_id_][id*=subquestions_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  134. solid #BBB;border-bottom:0}body#page-question-type-match div[id^=fitem_id_][id*=subquestions_] .fitemtitle{font-weight:bold}body#page-question-type-match div[id^=fitem_id_][id*=subanswers_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  135. solid #BBB;border-top:0}.que.multianswer
  136. .feedbackspan{display:block;max-width:70%;background:#fff3bf;padding:0.5em;margin-top:1em;box-shadow:0.5em 0.5em 1em #000}body.ie6 .que.multianswer .feedbackspan,
  137. body.ie7 .que.multianswer .feedbackspan,
  138. body.ie8 .que.multianswer .feedbackspan,
  139. body.ie9 .que.multianswer
  140. .feedbackspan{width:70%}.que.multianswer .answer
  141. .specificfeedback{display:inline;padding:0
  142. 0.7em;background:#FFF3BF}.que.multianswer .answer .specificfeedback
  143. *{display:inline;background:#FFF3BF}.que.multianswer .answer .specificfeedback
  144. script{display:none}.que.multianswer .answer div.r0,
  145. .que.multianswer .answer
  146. div.r1{padding:0.3em}.que.multianswer
  147. table.answer{margin-bottom:0;width:100%}.que.multichoice .answer
  148. .specificfeedback{display:inline;padding:0
  149. 0.7em;background:#FFF3BF}.que.multichoice .answer div.r0,
  150. .que.multichoice .answer
  151. div.r1{padding:0.3em 0 0.3em 25px;text-indent:-25px}.que.multichoice .answer div.r0 label,
  152. .que.multichoice .answer div.r1 label,
  153. .que.multichoice .answer div.r0 div.specificfeedback,
  154. .que.multichoice .answer div.r1
  155. div.specificfeedback{text-indent:0}.que.multichoice .answer div.r0 input,
  156. .que.multichoice .answer div.r1
  157. input{margin:0
  158. 5px;padding:0;width:15px}.dir-rtl .que.multichoice .answer div.r0,
  159. .dir-rtl .que.multichoice .answer
  160. div.r1{padding:0.3em 25px 0.3em 0}body#page-question-type-multichoice div[id^=fitem_id_][id*=answer_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  161. solid #BBB;border-bottom:0}body#page-question-type-multichoice div[id^=fitem_id_][id*=answer_] .fitemtitle{font-weight:bold}body#page-question-type-multichoice div[id^=fitem_id_] .fitemtitle{margin-left:0px;margin-right:0px;padding-left:6px;padding-right:0px}body.dir-rtl#page-question-type-multichoice div[id^=fitem_id_] .fitemtitle{margin-left:0px;margin-right:0px;padding-left:0px;padding-right:6px}body#page-question-type-multichoice div[id^=fitem_id_][id*=fraction_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  162. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-multichoice div[id^=fitem_id_][id*=feedback_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  163. solid #BBB;border-top:0}.que.numerical
  164. .answer{padding:0.3em;width:auto;display:inline}.que.numerical .answer input[type="text"]{width:30%}#page-question-type-numerical.dir-rtl input[name="unitpenalty"],
  165. #page-question-type-numerical.dir-rtl input[name^="answer"],
  166. #page-question-type-numerical.dir-rtl input[name^="tolerance"],
  167. #page-question-type-numerical.dir-rtl input[name^="multiplier"],
  168. #page-question-type-numerical.dir-rtl input[name^="unit"]{direction:ltr;text-align:left}body#page-question-type-numerical div[id^=fgroup_id_][id*=answeroptions_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  169. solid #BBB;border-bottom:0}body#page-question-type-numerical div[id^=fgroup_id_][id*=answeroptions_] .fgrouplabel
  170. label{font-weight:bold}body.path-question-type div#fgroup_id_penaltygrp label[for^=id_unitpenalty],
  171. body.path-question-type div[id^=fgroup_id_units_] label[for^='id_unit_'],
  172. body#page-question-type-numerical div[id^=fgroup_id_][id*=answeroptions_] label[for^='id_answer_']{position:absolute;left:-10000px;font-weight:normal;font-size:1em}body#page-question-type-numerical div[id^=fitem_id_][id*=fraction_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  173. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-numerical div[id^=fitem_id_][id*=feedback_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  174. solid #BBB;border-top:0}.que.shortanswer
  175. .answer{padding:0.3em;width:auto;display:inline}.que.shortanswer .answer
  176. input{width:80%}body#page-question-type-shortanswer div[id^=fgroup_id_][id*=answeroptions_]{background:#EEE;margin-top:0;margin-bottom:0;padding-bottom:5px;padding-top:5px;border:1px
  177. solid #BBB;border-bottom:0}body#page-question-type-shortanswer div[id^=fgroup_id_][id*=answeroptions_] .fgrouplabel
  178. label{font-weight:bold}body#page-question-type-shortanswer div[id^=fgroup_id_][id*=answeroptions_] label[for^='id_answer_']{position:absolute;left:-10000px;font-weight:normal;font-size:1em}body#page-question-type-shortanswer div[id^=fitem_id_][id*=fraction_]{background:#EEE;margin-bottom:0;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  179. solid #BBB;border-top:0;border-bottom:0}body#page-question-type-shortanswer div[id^=fitem_id_][id*=feedback_]{background:#EEE;margin-bottom:2em;margin-top:0;padding-bottom:5px;padding-top:5px;border:1px
  180. solid #BBB;border-top:0}.que.truefalse .answer div.r0,
  181. .que.truefalse .answer
  182. div.r1{padding:0.3em}.path-mod-book .navtop img.icon,
  183. .path-mod-book .navbottom
  184. img.icon{margin-right:4px;margin-left:4px;border:0;padding:0}.path-mod-book .navbottom,
  185. .path-mod-book
  186. .navtop{text-align:right}.dir-rtl.path-mod-book .navbottom,
  187. .dir-rtl.path-mod-book
  188. .navtop{text-align:left}.path-mod-book
  189. .navtop{margin-bottom:0.5em}.path-mod-book
  190. .navbottom{margin-top:0.5em}.path-mod-book .block_book_toc
  191. ul{margin:0
  192. 0 0 5px;padding-left:0;padding-right:0}.dir-rtl.path-mod-book .block_book_toc
  193. ul{margin:0
  194. 5px 0 0}.path-mod-book .block_book_toc
  195. li{clear:both;list-style:none;margin-top: .5em}.path-mod-book .block_book_toc li
  196. li{list-style:none}.path-mod-book .block_book_toc .action-list{float:right}.dir-rtl.path-mod-book .block_book_toc .action-list{float:left}.path-mod-book .block_book_toc .action-list
  197. img.smallicon{margin:0
  198. 3px}.path-mod-book .book_toc_none ul ul,
  199. .dir-rtl.path-mod-book .book_toc_none ul
  200. ul{margin-left:0;margin-right:0}.path-mod-book .book_toc_bullets ul
  201. ul{margin-left:20px}.dir-rtl.path-mod-book .book_toc_bullets ul
  202. ul{margin-left:0;margin-right:20px}.path-mod-book .book_toc_bullets li
  203. li{list-style:circle}.path-mod-book .book_toc_bullets li li:before{display:none}.path-mod-book .book_toc_indented
  204. ul{margin-left:5px}.dir-rtl.path-mod-book .book_toc_indented
  205. ul{margin-left:0;margin-right:5px}.path-mod-book .book_toc_indented ul
  206. ul{margin-left:15px}.dir-rtl.path-mod-book .book_toc_indented ul
  207. ul{margin-left:0;margin-right:15px}.path-mod-book .book_toc_indented li
  208. li{list-style:none}.navtop.navtext .chaptername,
  209. .navbottom.navtext
  210. .chaptername{font-weight:bolder}.navtop.navtext a,
  211. .navbottom.navtext
  212. a{display:inline-block;max-width:45%}.navtop.navtext a.bookprev,
  213. .navbottom.navtext
  214. a.bookprev{float:left;text-align:left}.dir-rtl .navtop.navtext a.bookprev,
  215. .dir-rtl .navbottom.navtext
  216. a.bookprev{float:right;text-align:right}@media (max-width: 480px){.path-mod-book .navbottom,
  217. .path-mod-book .navtop,
  218. .dir-rtl.path-mod-book .navbottom,
  219. .dir-rtl.path-mod-book
  220. .navtop{text-align:center}.navtop.navtext a,
  221. .navbottom.navtext
  222. a{display:block;max-width:100%;margin:auto}.navtop.navtext a.bookprev,
  223. .navbottom.navtext a.bookprev,
  224. .dir-rtl .navtop.navtext a.bookprev,
  225. .dir-rtl .navbottom.navtext
  226. a.bookprev{float:none}}.path-mod-chat .chat-event .picture,
  227. .path-mod-chat .chat-message
  228. .picture{width:40px}.path-mod-chat .chat-event
  229. .text{text-align:left}.path-mod-chat #messages-list,
  230. .path-mod-chat #users-list{list-style-type:none;padding:0;margin:0}.path-mod-chat #chat-header{overflow:hidden}.path-mod-chat #chat-input-area table.generaltable
  231. td.cell{padding:1px}@media all and (max-device-width: 320px){.path-mod-chat #input-message{width:150px}}@media all and (min-device-width: 321px) and (max-device-width: 640px){.path-mod-chat #input-message{width:175px}}#page-mod-chat-view .chatcurrentusers
  232. .chatuserdetails{vertical-align:middle}#page-mod-chat-gui_basic #participants
  233. ul{margin:0;padding:0;list-style-type:none}#page-mod-chat-gui_basic #participants ul
  234. li{list-style-type:none;display:inline;margin-right:10px}#page-mod-chat-gui_basic #participants ul li
  235. .userinfo{display:inline}#page-mod-chat-gui_basic
  236. #messages{padding:0;margin:0}#page-mod-chat-gui_basic #messages
  237. dl{padding:0;margin:6px
  238. 0}#page-mod-chat-gui_basic #messages
  239. dt{margin-left:0;margin-right:5px;padding:0;display:inline}#page-mod-chat-gui_basic #messages
  240. dd{padding:0;margin:0}#page-mod-chat-gui_header_js-jsupdate .chat-event,
  241. #page-mod-chat-gui_header_js-jsupdate .chat-message{width:100%}.path-mod-chat .yui-layout-unit-top{background:#FFE39D}.path-mod-chat .yui-layout-unit-right{background:#FFD46B}.path-mod-chat .yui-layout-unit-bottom{background:#FFCB44}.path-mod-chat .yui-layout .yui-layout-hd{border:0}.path-mod-chat .yui-layout .yui-layout-unit div.yui-layout-bd{border:0;background:transparent}.path-mod-chat .yui-layout .yui-layout-unit div.yui-layout-unit-right{background:white}.path-mod-choice
  242. .results{border-collapse:separate}.path-mod-choice .results
  243. .data{vertical-align:top;white-space:nowrap}.path-mod-choice
  244. .button{text-align:center}.path-mod-choice
  245. .attemptcell{width:5px;white-space:nowrap}.path-mod-choice .anonymous,
  246. .path-mod-choice
  247. .names{margin-left:auto;margin-right:auto;width:80%}.path-mod-choice
  248. .downloadreport{border-width:0;margin-left:10%}.path-mod-choice
  249. .choiceresponse{width:100%}.path-mod-choice .choiceresponse
  250. .picture{width:10px;white-space:nowrap}.path-mod-choice .choiceresponse
  251. .fullname{width:100%;white-space:nowrap}.path-mod-choice
  252. .responseheader{width:100%;text-align:center;margin-top:10px}.path-mod-choice .choices .option
  253. label{vertical-align:top}.path-mod-choice .choices .option
  254. input{vertical-align:middle}.path-mod-choice .horizontal,
  255. .path-mod-choice
  256. .vertical{margin-left:10%;margin-right:10%}.path-mod-choice .horizontal .choices
  257. .option{padding-right:20px;display:inline-block;white-space:normal}.path-mod-choice .horizontal .choices
  258. .button{margin-top:10px}.path-mod-choice ul.choices
  259. li{list-style:none}.path-mod-choice
  260. .results{text-align:center}.path-mod-choice .results.anonymous
  261. .graph.horizontal{vertical-align:middle;text-align:left;width:70%}.path-mod-choice .results.anonymous .graph.vertical,
  262. .path-mod-choice
  263. .cell{vertical-align:bottom;text-align:center}.path-mod-choice .results.anonymous
  264. th.header{border:1px
  265. solid inherit}.path-mod-choice .results.names
  266. .header{width:10%;white-space:normal}.path-mod-choice .results.names
  267. .cell{vertical-align:top;text-align:left}.path-mod-choice .results.names .user,
  268. .path-mod-choice
  269. #yourselection{padding:5px}.path-mod-choice .results.names .user .attemptaction,
  270. .path-mod-choice .results.names .user .image,
  271. .path-mod-choice .results.names .user
  272. .fullname{float:left}.path-mod-choice .results.names .user
  273. .fullname{padding-left:5px}.path-mod-choice .results
  274. .data.header{width:10%}.path-mod-choice
  275. .responseaction{text-align:center}.path-mod-choice .results
  276. .option{white-space:normal}.path-mod-choice
  277. .response{overflow:auto}.path-mod-choice .results .option,
  278. .path-mod-choice .results .numberofuser,
  279. .path-mod-choice .results
  280. .percentage{font-weight:bold;font-size:108%}#page-mod-choice-report .downloadreport ul
  281. li{list-style:none;padding:0
  282. 20px;display:inline;float:left}.path-mod-choice
  283. .clearfloat{float:none;clear:both}.path-mod-choice.dir-rtl .horizontal .choices
  284. .option{padding-right:0px;padding-left:20px;float:right}.path-mod-choice.dir-rtl .results.anonymous
  285. .graph.horizontal{text-align:right}.path-mod-choice.dir-rtl
  286. .results.anonymous{text-align:center}.path-mod-choice.dir-rtl .results.names
  287. .cell{text-align:right}.path-mod-choice.dir-rtl .results.names .user .attemptaction,
  288. .path-mod-choice.dir-rtl .results.names .user .image,
  289. .path-mod-choice.dir-rtl .results.names .user .fullname,
  290. .path-mod-choice.dir-rtl .results.names .user
  291. .fullname{padding-left:0px;padding-right:5px}.path-mod-choice.dir-rtl
  292. .downloadreport{margin-left:0;margin-right:25%}#page-mod-choice-report.dir-rtl .downloadreport ul
  293. li{float:right}#page-mod-choice-view.dir-rtl
  294. .reportlink{text-align:left}.path-mod-data .fieldadd,
  295. .path-mod-data .sortdefault,
  296. .path-mod-data .defaulttemplate,
  297. #page-mod-data-view .datapreferences,
  298. #page-mod-data-preset
  299. .presetmapping{text-align:center}.path-mod-data-field .c0,
  300. #page-mod-data-view #sortsearch
  301. .c0{text-align:right}#page-mod-data-view .approve
  302. img.icon{width:34px;height:34px}#page-mod-data-view
  303. img.list_picture{border:0px}#page-mod-data-view
  304. div.search_none{display:none}#page-mod-data-view div.search_inline,
  305. #page-mod-data-view
  306. form#latlongfieldbrowse{display:inline}#page-mod-data-view
  307. div#data_adv_form{margin-left:auto;margin-right:auto}#page-mod-data-edit
  308. .basefieldinput{width:300px}#page-mod-data-preset .presetmapping
  309. table{text-align:left;margin-left:auto;margin-right:auto}#page-mod-data-preset
  310. .overwritesettings{margin-bottom:1em}#page-mod-data-preset
  311. table.presets{margin-left:auto;margin-right:auto}#page-mod-data-view .datapreferences
  312. label{display:inline-block}.path-mod-data-field .fieldadd,
  313. .path-mod-data-field
  314. .sortdefault{margin:1em
  315. 0}.path-mod-data-field .fieldadd select,
  316. .path-mod-data-field .sortdefault
  317. select{margin-left:1em}.path-mod-data-field .fieldname,
  318. .path-mod-data-field
  319. .fielddescription{width:300px}.path-mod-data-field
  320. textarea.optionstextarea{width:300px;height:150px}.path-mod-data-field
  321. input.textareafieldsize{width:50px}.path-mod-data-field
  322. input.picturefieldsize{width:70px}.path-mod-data .action-icon img.portfolio-add-icon{margin-left:0}#page-mod-data-export #notice
  323. span{padding:0
  324. 10px}#page-mod-data-edit input[id*="url"]{text-align:left;direction:ltr}.mod-data-default-template
  325. td{vertical-align:top}.mod-data-default-template .template-field{text-align:right}.mod-data-default-template .template-token{text-align:left}.mod-data-default-template
  326. .controls{text-align:center}.mod-data-default-template
  327. searchcontrols{text-align:right}.mod-data-default-template.notapproved{background-color:#FCC}#page-mod-data-templates td.save_template,
  328. #page-mod-data-templates
  329. .template_heading{text-align:center}#page-mod-data-templates
  330. #availabletags_wrapper{max-width:250px}.dir-rtl .mod-data-default-template .template-field{text-align:left}.dir-rtl .mod-data-default-template .template-token{text-align:right}.dir-rtl .mod-data-default-template
  331. searchcontrols{text-align:left}#page-mod-data-edit
  332. .req{cursor:help}#page-mod-data-edit .inline-req
  333. .req{position:absolute}#page-mod-data-edit .inline-req{text-align:left}#page-mod-data-edit .mod-data-input{margin-left:10px}.dir-rtl#page-mod-data-edit .inline-req{text-align:right}.dir-rtl#page-mod-data-edit .mod-data-input{margin-left:0px;margin-right:10px}.path-mod-feedback
  334. span.feedback_info{font-weight:bold}.path-mod-feedback
  335. div.feedback_is_dependent{background:#DDD}.path-mod-feedback
  336. span.feedback_depend{color:#f00}.path-mod-feedback
  337. hr.feedback_pagebreak{height:4px;color:#aaa;background-color:#aaa;border:0;margin:0}.path-mod-feedback
  338. .drag_target_active{opacity: .25}.path-mod-feedback
  339. .drag_item_active{opacity: .5}.path-mod-feedback
  340. .feedback_bar_image{height:10px}.path-mod-feedback #analysis-form
  341. label{display:inline}.path-mod-feedback .mform.feedback_form .fitem
  342. .fitemtitle{display:block;margin-top:4px;margin-bottom:4px;text-align:left;width:100%}.path-mod-feedback .mform.feedback_form .fitem
  343. .felement{margin-left:0;width:100%;float:left;padding-left:0;padding-right:0}.path-mod-feedback .mform.feedback_form .fitem .fstatic:empty{display:none}.path-mod-feedback .mform.feedback_form .fitem .fcheckbox > span,
  344. .path-mod-feedback .mform.feedback_form .fitem .fradio > span,
  345. .path-mod-feedback .mform.feedback_form .fitem .fgroup>span{margin-top:4px}body.path-mod-feedback #region-main .mform.feedback_form .femptylabel
  346. .fitemtitle{display:inline-block;width:auto;margin-right:0}.path-mod-feedback .mform.feedback_form .femptylabel
  347. .felement{display:inline-block;margin-top:4px;padding-top:5px;width:auto}body.path-mod-feedback #region-main .mform.feedback_form .feedback-item-pagebreak
  348. .felement{width:100%}.path-mod-feedback .mform.feedback_form .fitem_fcheckbox .fitemtitle,
  349. .path-mod-feedback .mform.feedback_form .fitem_fcheckbox
  350. .felement{display:inline-block;width:auto}.path-mod-feedback .mform.feedback_form .fitem_fcheckbox
  351. .felement{padding:6px}body.dir-rtl.path-mod-feedback #region-main .mform.feedback_form .femptylabel
  352. .fitemtitle{margin-right:0px;margin-left:0}.dir-rtl.path-mod-feedback .mform.feedback_form .fitem
  353. .fitemtitle{text-align:right}.dir-rtl.path-mod-feedback .mform.feedback_form .fitem
  354. .felement{margin-right:0;float:right;padding-right:0;padding-left:0}.dir-rtl.path-mod-feedback .mform.feedback_form .fitem_fcheckbox
  355. .felement{float:right}.path-mod-feedback .mform.feedback_form#feedback_viewresponse_form .fitem.feedback_hasvalue:not(.feedback-item-captcha) .felement{background:#FBFBF1;min-height:1em;box-sizing:border-box;padding:3px;border:1px
  356. solid #ddd}.path-mod-feedback .mform.feedback_form .fitem.feedback_hasvalue .fstatic:empty{display:inherit}.path-mod-feedback .mform.feedback_form#feedback_edit_form .fitem:hover{background:#f5f5f5}.path-mod-feedback .mform.feedback_form#feedback_edit_form .fitem .fitemtitle
  357. label{width:100%}.path-mod-feedback .mform.feedback_form#feedback_edit_form .fitem .fitemtitle
  358. .itemtitle{position:relative;width:100%}.path-mod-feedback .mform.feedback_form#feedback_edit_form .fitem .fitemtitle .itemtitle .itemdd,
  359. .path-mod-feedback .mform.feedback_form#feedback_edit_form .fitem .fitemtitle .itemtitle
  360. .itemname{float:left}.path-mod-feedback .mform.feedback_form#feedback_edit_form .fitem .fitemtitle .itemtitle
  361. .itemactions{float:right}.path-mod-feedback .templateslist td.cell.action,
  362. .path-mod-feedback .templateslist
  363. th.header.action{width:10%}.path-mod-feedback
  364. table.analysis{width:100%;border-top:1px solid #aaa;margin-top:10px}.path-mod-feedback table.analysis tr:first-child
  365. th{padding-top:10px}.path-mod-feedback table.analysis tr:hover{background:#f5f5f5}.path-mod-feedback table.analysis td.singlevalue:before,
  366. .path-mod-feedback table.analysis td.optionname:before{content:'- '}.path-mod-feedback table.analysis.itemtype_textarea
  367. td{padding:4px
  368. 0}.path-mod-feedback table.analysis
  369. tr.isempty{display:none}.path-mod-feedback #showentrytable td.cell.completed_timemodified,
  370. .path-mod-feedback #showentryanontable
  371. td.cell.random_response{font-weight:bold}.path-mod-feedback #showentrytable td.cell.userpic,
  372. .path-mod-feedback #showentrytable td.cell.deleteentry,
  373. .path-mod-feedback #showentryanontable
  374. td.cell.deleteentry{width:10px}.path-mod-feedback
  375. .response_navigation{margin: .5em 0}.path-mod-feedback .response_navigation
  376. a{display:inline-block}.path-mod-feedback .response_navigation
  377. a.back_to_list{margin:auto;float:right;left:-50%;position:relative}.dir-rtl.path-mod-feedback .response_navigation .next_response:after,
  378. .path-mod-feedback .response_navigation .prev_response:before{content:' ◄ '}.dir-rtl.path-mod-feedback .response_navigation .prev_response:before,
  379. .path-mod-feedback .response_navigation .next_response:after{content:' ► '}.dir-rtl.path-mod-feedback .response_navigation .prev_response,
  380. .path-mod-feedback .response_navigation
  381. .next_response{float:right}.dir-rtl.path-mod-feedback .response_navigation .next_response,
  382. .path-mod-feedback .response_navigation
  383. .prev_response{float:left}.forumpost{display:block;position:relative;margin:0
  384. 0 1em 0;padding:0;border:1px
  385. solid #000;max-width:100%}.forumpost
  386. .row{width:100%;position:relative}.forumpost .row
  387. .left{float:left;width:43px;overflow:hidden}.forumpost .row .left .grouppictures
  388. a{text-align:center;display:block;margin:6px
  389. 2px 0 2px}.forumpost .row .left
  390. .grouppicture{width:20px;height:20px}.forumpost .row .topic,
  391. .forumpost .row .content-mask,
  392. .forumpost .row
  393. .options{margin-left:43px}.forumpost .picture
  394. img{margin:4px}.forumpost .options .commands,
  395. .forumpost .content .attachments,
  396. .forumpost .options .footer,
  397. .forumpost .options
  398. .link{text-align:right}.forumpost .options .forum-post-rating{float:left}.forumpost .content
  399. .posting{overflow:auto;max-width:100%}.forumpost .content .attachedimages
  400. img{max-width:100%}.forumpost .post-word-count{font-size: .85em;font-style:italic}.forumpost .shortenedpost .post-word-count{display:inline;padding:0
  401. .3em}.dir-rtl .forumpost .row .topic,
  402. .dir-rtl .forumpost .row .content-mask,
  403. .dir-rtl .forumpost .row
  404. .options{margin-right:43px;margin-left:0}.dir-rtl .forumpost .row
  405. .left{float:right}.dir-rtl.path-mod-forum
  406. .indent{margin-right:3%;margin-left:0}.path-mod-forum .forumolddiscuss,
  407. #page-mod-forum-search
  408. .c0{text-align:right}.path-mod-forum
  409. .indent{margin-left:3%}.path-mod-forum
  410. .forumheaderlist{width:100%;border-width:1px;border-style:solid;border-collapse:separate;margin-top:10px}.path-mod-forum .forumheaderlist
  411. td{border-width:1px 0px 0px 1px;border-style:solid}.path-mod-forum .forumheaderlist th.header.replies
  412. .iconsmall{margin:0
  413. .3em}.path-mod-forum .forumheaderlist
  414. .picture{width:35px}.path-mod-forum .forumheaderlist .discussion
  415. .starter{vertical-align:middle}.path-mod-forum .forumheaderlist .discussion .pinned
  416. img{padding:5px}.path-mod-forum .forumheaderlist .discussion
  417. .lastpost{white-space:nowrap;text-align:right}.path-mod-forum .forumheaderlist .replies,
  418. .path-mod-forum .forumheaderlist .discussion
  419. .author{white-space:nowrap}.path-mod-forum .forumheaderlist thead
  420. .discussionsubscription{text-align:center}#page-mod-forum-subscribers .subscriberdiv,
  421. #page-mod-forum-subscribers
  422. .subscribertable{width:100%;vertical-align:top}#page-mod-forum-subscribers .subscribertable tr
  423. td{vertical-align:top}#page-mod-forum-subscribers .subscribertable tr
  424. td.actions{width:16%;padding-top:3em}#page-mod-forum-subscribers .subscribertable tr td.actions
  425. .actionbutton{margin:0.3em 0;padding:0.5em 0;width:100%}#page-mod-forum-subscribers .subscribertable tr td.existing,
  426. #page-mod-forum-subscribers .subscribertable tr
  427. td.potential{width:42%}#page-mod-forum-discuss
  428. .discussioncontrols{width:100%;margin:5px}#page-mod-forum-discuss .discussioncontrols
  429. .controlscontainer{width:100%;float:right}#page-mod-forum-discuss .discussioncontrols
  430. .discussioncontrol{float:left}#page-mod-forum-discuss
  431. .discussioncontrol.exporttoportfolio{text-align:left}#page-mod-forum-discuss
  432. .discussioncontrol.displaymode{padding-right:10px}#page-mod-forum-discuss
  433. .discussioncontrol.movediscussion{padding-right:10px}#page-mod-forum-discuss .discussioncontrol.movediscussion
  434. .movediscussionoption{}#page-mod-forum-view
  435. .forumaddnew{margin-bottom:20px}#page-mod-forum-view
  436. .groupmenu{float:left;text-align:left;white-space:nowrap}#page-mod-forum-index .subscription,
  437. #page-mod-forum-view
  438. .subscription{float:right;text-align:right;white-space:nowrap;margin:5px
  439. 0}#page-mod-forum-search
  440. .introcontent{padding:15px;font-weight:bold}#page-mod-forum-index .unread a:first-child,
  441. #page-mod-forum-view .unread a:first-child{padding-right:10px}#page-mod-forum-index .unread img,
  442. #page-mod-forum-view .unread
  443. img{margin-left:5px}#page-mod-forum-view .unread
  444. img{margin-left:5px}.dir-rtl#page-mod-forum-view .unread
  445. img{margin-right:5px;margin-left:0}#email
  446. .unsubscribelink{margin-top:20px}#page-mod-forum-view .unread,
  447. .forumpost.unread .row.header,
  448. .path-course-view .unread,span.unread{background-color:#FFD}.forumpost.unread
  449. .row.header{border-bottom:1px solid #DDD}.path-mod-forum :target~.forumpost:before{display:block;content:'';width:4px;position:absolute;background:#0070a8;left:-1px;top:-1px;bottom:-1px}.path-mod-forum .discussion-nav{margin: .5em 0}.path-mod-forum .discussion-nav
  450. ul{margin:0;list-style:none}.dir-rtl.path-mod-forum .discussion-nav .next-discussion:after,
  451. .path-mod-forum .discussion-nav .prev-discussion:before{content:' ◄ '}.dir-rtl.path-mod-forum .discussion-nav .prev-discussion:before,
  452. .path-mod-forum .discussion-nav .next-discussion:after{content:' ► '}.dir-rtl.path-mod-forum .discussion-nav .prev-discussion,
  453. .path-mod-forum .discussion-nav .next-discussion{float:right}.dir-rtl.path-mod-forum .discussion-nav .next-discussion,
  454. .path-mod-forum .discussion-nav .prev-discussion{float:left}.path-mod-forum .preload-subscribe{background:url(/theme/image.php/essential/mod_forum/1489002274/t/subscribed) no-repeat -9999px -9999px}.path-mod-forum .preload-unsubscribe{background:url(/theme/image.php/essential/mod_forum/1489002274/t/unsubscribed) no-repeat -9999px -9999px}.path-mod-forum
  455. .discussionsubscription{margin-top:-10px;text-align:right;margin-bottom:10px}.path-mod-forum .discussionsubscription>a>img{width:12px;padding:0
  456. 4px}.dir-rtl .path-mod-forum
  457. .discussionsubscription{text-align:left}#page-mod-forum-view
  458. img.timedpost{margin-right:5px}.dir-rtl#page-mod-forum-view
  459. img.timedpost{margin:3px
  460. 0 0 5px;float:right}.path-mod-glossary
  461. .glossarypost{width:95%;border-collapse:separate;margin:0px
  462. auto;text-align:left}.path-mod-glossary
  463. .glossarypost.entrylist{border-width:0px}.path-mod-glossary .glossarypost.continuous
  464. .concept{display:inline}.path-mod-glossary .glossarypost
  465. .commands{width:200px;white-space:nowrap}.path-mod-glossary .glossarypost
  466. td.picture{width:35px}.path-mod-glossary .glossarypost .entrylowersection
  467. .aliases{text-align:center}.path-mod-glossary .glossarypost .entrylowersection
  468. .icons{text-align:right;padding-right:5px}.path-mod-glossary .glossarypost .entrylowersection
  469. .ratings{text-align:right;padding-right:5px;padding-bottom:2px}.path-mod-glossary .glossarypost .glossary-hidden-note{margin:0
  470. .45em}.path-mod-glossary
  471. .glossarydisplay{margin-left:auto;margin-right:auto}.path-mod-glossary .glossarydisplay
  472. .tabs{width:100%;margin-bottom:0px}.path-mod-glossary .glossarydisplay .tabs
  473. .side{border-style:none;border-width:0px;width:auto}.path-mod-glossary .glossarydisplay
  474. .separator{width:4px}.path-mod-glossary
  475. table.glossarypopup{width:95%}.path-mod-glossary .entrybox, .path-mod-glossary table.glossaryapproval,
  476. .path-mod-glossary .glossarypost .entrylowersection
  477. table{width:100%;margin-bottom:0em}.glossary-activity-picture{float:left}.glossary-activity-content{margin-left:40px}#page-mod-glossary-view
  478. .glossarycontrol{float:right;text-align:right;white-space:nowrap;margin:5px
  479. 0}#page-mod-glossary-view table.glossarycategoryheader,
  480. #page-mod-glossary-import
  481. table.glossaryimportexport{margin-left:auto;margin-right:auto}#page-mod-glossary-view
  482. table.glossarycategoryheader{margin-bottom:0em}#page-mod-glossary-view table.glossarycategoryheader
  483. th{padding:0px}#page-mod-glossary-view td.glossarysearchbox
  484. label{display:inline-block}#page-mod-glossary-showentry #page-content{min-width:600px}#page-mod-glossary-print .mod-glossary-entrylist .mod-glossary-entry{vertical-align:top}#page-mod-glossary-print .displayprinticon,
  485. .path-mod-glossary.dir-rtl
  486. .glossarypost{text-align:right}#page-mod-glossary-print
  487. .displaydate{text-align:right;font-size:0.75em}#page-mod-glossary-print
  488. .strong{font-weight:bold}.path-mod-glossary
  489. .printicon{background:url(/theme/image.php/essential/core/1489002274/t/print) no-repeat scroll 2px center transparent;padding-left:20px}#page-mod-imscp-view
  490. #imscp_nav{text-align:center;margin-bottom:5px;margin-top:10px}#page-mod-imscp-view #imscp_toc .ygtv-highlight1{font-weight:bold}#page-mod-imscp-view .yui-layout-hd{background-image:none;background-color:#DDD}#page-mod-imscp-view .yui-layout-hd
  491. h2{color:black}.path-mod-imscp
  492. #imscp_child_list{margin-left:1em;width:auto;height:auto}.path-mod-lesson .contents,
  493. .path-mod-lesson .standardtable,
  494. .path-mod-lesson .mform .box.contents,
  495. .path-mod-lesson .invisiblefieldset.fieldsetfix
  496. tr{text-align:left}.path-mod-lesson #layout-table{width:100%}.path-mod-lesson .edit_buttons form,
  497. .path-mod-lesson .edit_buttons
  498. input{display:inline}.path-mod-lesson .userinfotable .cell,
  499. .path-mod-lesson .userinfotable
  500. .userpicture{vertical-align:middle}.path-mod-lesson
  501. .invisiblefieldset.fieldsetfix{display:block}.path-mod-lesson
  502. .slideshow{overflow:auto;padding:15px}.path-mod-lesson .menu
  503. .menuwrapper{max-height:400px;overflow:auto;vertical-align:top;margin-bottom:10px}.path-mod-lesson .menu
  504. ul{list-style:none;padding:5px
  505. 0px 0px 5px;margin:0px}.path-mod-lesson .menu ul
  506. li{padding-bottom:5px}.path-mod-lesson
  507. .skip{position:absolute;top:-1000em;width:20em}.path-mod-lesson .branchbuttoncontainer.horizontal div,
  508. .path-mod-lesson .branchbuttoncontainer.horizontal
  509. form{display:inline}.path-mod-lesson
  510. .firstpageoptions{width:30%;margin-left:35%;margin-top:1em}.path-mod-lesson .progress_bar_table,
  511. .path-mod-lesson .progress_bar_completed,
  512. .path-mod-lesson
  513. .progress_bar_todo{padding:0;margin:0}.path-mod-lesson
  514. .progress_bar_token{height:20px;width:5px;padding:0;margin:0}.path-mod-lesson .edit_pages_box
  515. .addlinks{margin:0;margin-bottom:1em}.path-mod-lesson
  516. .progress_bar_completed{background-color:green;text-align:right;vertical-align:middle;color:#FFF}.path-mod-lesson
  517. .resourcecontent{text-align:center}.path-mod-lesson .answeroption .fcheckbox>span{position:relative;float:left}.path-mod-lesson .answeroptiongroup .fgroup>span{position:relative;width:100%}.path-mod-lesson .answeroption .fcheckbox input,
  518. .path-mod-lesson .answeroptiongroup
  519. input{position:absolute;top:2px;margin-top:0px;left:0}.path-mod-lesson .answeroption .fcheckbox label,
  520. .path-mod-lesson .mform .fitem.answeroptiongroup fieldset.fgroup
  521. label{padding-left:20px;float:left}.path-mod-lesson .answeroption .felement label p:last-child,
  522. .path-mod-lesson .answeroptiongroup .felement label p:last-child{margin-bottom:0px}.path-mod-lesson.dir-rtl .answeroption .fcheckbox>span{float:right}.path-mod-lesson.dir-rtl .answeroption .fcheckbox input,
  523. .path-mod-lesson.dir-rtl .answeroptiongroup .fgroup
  524. input{left:inherit;right:0}.path-mod-lesson.dir-rtl .answeroption .fcheckbox label,
  525. .path-mod-lesson.dir-rtl .mform .fitem.answeroptiongroup fieldset.fgroup
  526. label{padding-left:0;padding-right:20px;float:right}#page-mod-lesson-view .password-form
  527. .submitbutton{display:inline}.path-mod-lesson
  528. .reviewessay{width:40%;border:1px
  529. solid #DDD;background-color:#EEE}.path-mod-lesson.dir-rtl .contents,
  530. .path-mod-lesson.dir-rtl .standardtable,
  531. .path-mod-lesson.dir-rtl .mform .box.contents,
  532. .path-mod-lesson.dir-rtl .invisiblefieldset.fieldsetfix
  533. tr{text-align:right}#lesson-timer{text-align:center}.path-mod-lesson
  534. .essayungraded{background-color:#efcfcf}.path-mod-lesson
  535. .essaygraded{background-color:#efefcf}.path-mod-lesson
  536. .essaysent{background-color:#cfefcf}.path-mod-lti
  537. .ltiframe{position:relative;width:100%;height:100%}.path-mod-lti .userpicture,
  538. .path-mod-lti .picture.user,
  539. .path-mod-lti
  540. .picture.teacher{width:35px;height:35px;vertical-align:top}.path-mod-lti .feedback .files,
  541. .path-mod-lti .feedback .grade,
  542. .path-mod-lti .feedback .outcome,
  543. .path-mod-lti .feedback
  544. .finalgrade{float:right}.path-mod-lti .feedback
  545. .disabledfeedback{width:500px;height:250px}.path-mod-lti .feedback
  546. .from{float:left}.path-mod-lti .files
  547. img{margin-right:4px}.path-mod-lti .files
  548. a{white-space:nowrap}.path-mod-lti
  549. .late{color:red}.path-mod-lti
  550. .message{text-align:center}.path-admin-mod-lti .mform .fitem
  551. .fitemtitle{min-width:18em;padding-right:1em}.path-mod-lti .mform .fitem
  552. .fitemtitle{min-width:14em;padding-right:1em}#page-mod-lti-instructor_edit_tool_type .mform .fitem
  553. .fitemtitle{min-width:18em;padding-right:1em}#registration-choice-container .buffer-text{margin:20px}#choice-list{list-style:none;border-bottom:1px solid #e3e3e3;padding-bottom:1em;margin-left:0}#choice-list>li{display:inline-block}#external-registration-container
  554. iframe{border:1px
  555. solid #e5e5e5;border-radius:10px;width:100%;min-height:800px}.loading-screen{text-align:center;padding:3em}.loading-screen .loading-text{font-size:2em}.loading-screen
  556. .loader{margin-left:auto;margin-right:auto;margin-bottom:1em;height:2em;width:2em;font-size:2em}#registration-submit{min-width:140px}#registration-form-container{min-height:260px}#registration-form-container
  557. .well{margin-bottom:0}#registration-form-container .control-group:last-child{margin-bottom:0}#registration-choice-container
  558. .well{text-align:center}#registration-choice-container .btn-toolbar{margin-bottom:0}#registration-choice-container p:last-child{margin-top:20px}#tool-type-capabilities-container .registration-loading-container{display:none}#tool-type-capabilities-container.loading .registration-loading-container{display:block}#tool-type-capabilities-container.loading #tool-type-capabilities-template-container{display:none}.centered-menu{max-width:70%;margin-left:auto;margin-right:auto}.btn-text{display:block}.btn-loader{display:none}.loading .btn-text{display:none}.loading .btn-loader{display:block}.btn
  559. .loader{margin-left:auto;margin-right:auto}.btn .loader
  560. img{height:1.5em}#tool-list-container
  561. h3{display:inline-block}#tool-list-loader-container{display:inline-block}#tool-list-loader-container
  562. .loader{display:none}#tool-list-loader-container .loader
  563. img{height:2em}.loading #tool-list-loader-container
  564. .loader{display:block}.loading #tool-notools-text{display:none}.tool-card{display:inline-block;width:250px;height:300px;border:1px
  565. solid #e5e5e5;border-radius:10px;margin:5px;position:relative;box-sizing:border-box;vertical-align:top}.tool-card:hover,.tool-card:focus{border-color:#08c;box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-webkit-transition:border linear 0.2s, box-shadow linear 0.2s;-moz-transition:border linear 0.2s, box-shadow linear 0.2s;-o-transition:border linear 0.2s, box-shadow linear 0.2s;transition:border linear 0.2s, box-shadow linear 0.2s}.tool-card .overlay-container{background-color:rgba(255, 255, 255, 0.8);border-radius:10px;display:none;height:100%;left:0;position:absolute;text-align:center;top:0;width:100%;z-index:100;box-sizing:border-box;padding:10px}.tool-card .overlay-container .img-container{position:absolute;top:115px;left:90px;display:block;width:70px;height:70px}.tool-card .overlay-container .img-container
  566. img{height:100%;width:100%}.tool-card.announcement>.overlay-container{display:block}.tool-card.announcement .overlay-container
  567. .loader{display:none}.tool-card.announcement.loading .overlay-container
  568. .loader{display:block;width:100%;height:100%}.tool-card.announcement .overlay-container .success-icon-container{display:none}.tool-card.announcement.success .overlay-container .success-icon-container{display:block}.tool-card.announcement .overlay-container .fail-icon-container{display:none}.tool-card.announcement.fail .overlay-container .fail-icon-container{display:block}.tool-card.announcement .overlay-container .capabilities-container{display:none}.tool-card.announcement.capabilities .overlay-container .capabilities-container{display:block}.tool-card.announcement.capabilities .overlay-container{background-color:rgb(255, 255, 255)}.tool-card.announcement.capabilities .overlay-container .img-container{display:none}.tool-card-content{z-index:1}.tool-card-header{text-align:center;background-color:#f5f5f5;padding:10px;border-top-left-radius:10px;border-top-right-radius:10px;box-sizing:border-box;height:125px}.tool-card-subheader{margin-bottom:10px;text-align:left}.dir-rtl .tool-card-subheader{text-align:right}.tool-card-header .tool-card-icon{width:35px;height:35px}.tool-card-header
  569. .name{margin-bottom:0;white-space:nowrap}.tool-card-header .tool-card-actions{float:right}.dir-rtl .tool-card-header .tool-card-actions{float:left}.tool-card-header .tool-card-actions
  570. img{width:15px;height:15px;margin-left:7px}.dir-rtl .tool-card-header .tool-card-actions
  571. img{margin-left:0px;margin-right:7px}.tool-card-body{border-top:1px solid #e5e5e5;box-sizing:border-box;padding:5px;height:125px}.tool-card-body
  572. .description{max-height:100px;word-wrap:break-word}.tool-card-footer{height:50px;text-align:center;padding-top:10px;box-sizing:border-box}.tool-card .contenteditable-container{position:relative}.tool-card [contenteditable=true]{border:1px
  573. solid transparent;padding:0.25em;position:relative;z-index:1;overflow:auto}.tool-card [contenteditable=true]:hover{border-radius:4px;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);background-color:#fff;border:1px
  574. solid #e3e3e3;-webkit-transition:border linear 0.2s, box-shadow linear 0.2s;-moz-transition:border linear 0.2s, box-shadow linear 0.2s;-o-transition:border linear 0.2s, box-shadow linear 0.2s;transition:border linear 0.2s, box-shadow linear 0.2s;cursor:text}.tool-card [contenteditable=true]:focus{outline:0;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);background-color:#fff;border:1px
  575. solid rgba(82, 168, 236, 0.8);-webkit-transition:border linear 0.2s, box-shadow linear 0.2s;-moz-transition:border linear 0.2s, box-shadow linear 0.2s;-o-transition:border linear 0.2s, box-shadow linear 0.2s;transition:border linear 0.2s, box-shadow linear 0.2s;cursor:text}.tool-card [contenteditable=true].loading+.overlay-container{border-radius:4px;display:block}.tool-card [contenteditable=true] + .overlay-container
  576. .loader{display:inline-block;vertical-align:middle}#contentframe{border:1px
  577. solid #ddd;border-radius:4px}.path-mod-quiz
  578. .statedetails{display:block;font-size:0.7em}#page-mod-quiz-attempt #page .controls,
  579. #page-mod-quiz-summary #page .controls,
  580. #page-mod-quiz-review #page
  581. .controls{text-align:center;margin:8px
  582. auto}#page-mod-quiz-attempt .submitbtns,
  583. #page-mod-quiz-review
  584. .submitbtns{clear:left;text-align:left;padding-top:1.5em}#page-mod-quiz-attempt.dir-rtl .submitbtns,
  585. #page-mod-quiz-review.dir-rtl
  586. .submitbtns{text-align:right}#page-mod-quiz-attempt .submitbtns .mod_quiz-next-nav,
  587. #page-mod-quiz-review .submitbtns .mod_quiz-next-nav{float:right}#page-mod-quiz-attempt.dir-rtl .submitbtns .mod_quiz-next-nav,
  588. #page-mod-quiz-review.dir-rtl .submitbtns .mod_quiz-next-nav{float:left}.path-mod-quiz .mod_quiz-redo_question_button{margin:0}.path-mod-quiz input[type="submit"].mod_quiz-redo_question_button{padding:2px
  589. 0.8em;font-size:1em}#page-mod-quiz-attempt .mod_quiz-blocked_question_warning .que .formulation,
  590. #page-mod-quiz-review .mod_quiz-blocked_question_warning .que
  591. .formulation{background:#eee;border:1px
  592. solid #dcdcdc}body.jsenabled
  593. .questionflagcheckbox{display:none}#page-mod-quiz-attempt #connection-ok,
  594. #page-mod-quiz-attempt #connection-error{position:fixed;top:0;width:80%;left:10%;color:#555;border-radius:0 0 10px 10px;box-shadow:5px 5px 20px 0 #666;padding:1em
  595. 1em 0;z-index:10000}#page-mod-quiz-attempt #connection-error{background-color:#fcc}#page-mod-quiz-attempt #connection-ok{background-color:#cfb;width:60%;left:20%}.generalbox#passwordbox{width:70%;margin-left:auto;margin-right:auto}#passwordform{margin:1em
  596. 0}#quiznojswarning{color:red}#quiznojswarning{font-size:0.7em;line-height:1.1}.jsenabled
  597. #quiznojswarning{display:none}.path-mod-quiz #user-picture{margin:0.5em 0}.path-mod-quiz #user-picture
  598. img{width:auto;height:auto;vertical-align:bottom}.path-mod-quiz #mod_quiz_navblock h3.mod_quiz-section-heading{padding:0.7em 0 0;margin:0;clear:both}.path-mod-quiz #mod_quiz_navblock h3.mod_quiz-section-heading:first-child{padding-top:0}.path-mod-quiz
  599. .qnbutton{display:block;position:relative;float:left;width:1.5em;height:1.5em;overflow:hidden;margin:0.3em 0.3em 0.3em 0;padding:0;border:1px
  600. solid #bbb;background:#ddd;text-align:center;vertical-align:middle;line-height:1.5em;font-weight:bold;text-decoration:none}.path-mod-quiz.dir-rtl
  601. .qnbutton{float:right}.path-mod-quiz .qnbutton:visited:hover,
  602. .path-mod-quiz .qnbutton:link:hover{text-decoration:underline}.path-mod-quiz .qnbutton .trafficlight,
  603. .path-mod-quiz .qnbutton
  604. .thispageholder{display:block;position:absolute;top:0;bottom:0;left:0;right:0}.path-mod-quiz
  605. .qnbutton.thispage{border-color:#666}.path-mod-quiz .qnbutton.thispage
  606. .thispageholder{border:1px
  607. solid #666}.path-mod-quiz .qnbutton.flagged
  608. .trafficlight{background:url(/theme/image.php/essential/quiz/1489002274/navflagged) no-repeat top right}.path-mod-quiz .qnbutton.blocked,
  609. .path-mod-quiz .qnbutton.notyetanswered,
  610. .path-mod-quiz .qnbutton.requiresgrading,
  611. .path-mod-quiz
  612. .qnbutton.invalidanswer{background-color:white}.path-mod-quiz
  613. .qnbutton.correct{background-color:#cfc}.path-mod-quiz .qnbutton.correct
  614. .trafficlight{border-bottom:3px solid #080}.path-mod-quiz
  615. .qnbutton.partiallycorrect{background-color:#ffa}.path-mod-quiz .qnbutton.notanswered,
  616. .path-mod-quiz
  617. .qnbutton.incorrect{background-color:#fcc}.path-mod-quiz
  618. .qnbutton.blocked{color:#999}.path-mod-quiz .qnbutton.notanswered .trafficlight,
  619. .path-mod-quiz .qnbutton.incorrect
  620. .trafficlight{border-top:3px solid #800}.path-mod-quiz
  621. .othernav{clear:both;margin:0.5em 0}.path-mod-quiz .othernav a,
  622. .path-mod-quiz .othernav
  623. input{display:block;margin:0.5em 0}#quiz-timer{display:none;margin-top:1em}#quiz-time-left{font-weight:bold}#quiz-timer.timeleft15{background:#fff}#quiz-timer.timeleft14{background:#fee}#quiz-timer.timeleft13{background:#fdd}#quiz-timer.timeleft12{background:#fcc}#quiz-timer.timeleft11{background:#fbb}#quiz-timer.timeleft10{background:#faa}#quiz-timer.timeleft9{background:#f99}#quiz-timer.timeleft8{background:#f88}#quiz-timer.timeleft7{background:#f77}#quiz-timer.timeleft6{background:#f66}#quiz-timer.timeleft5{background:#f55}#quiz-timer.timeleft4{background:#f44}#quiz-timer.timeleft3{background:#f33}#quiz-timer.timeleft2{background:#f22}#quiz-timer.timeleft1{background:#f11}#quiz-timer.timeleft0{background:#f00}#page-mod-quiz-mod #id_reviewoptionshdr
  624. .fitem{width:23%;margin-left:10px}#page-mod-quiz-mod #id_reviewoptionshdr
  625. fieldset.fgroup{width:100%;text-align:left;margin-left:0}#page-mod-quiz-mod #id_reviewoptionshdr
  626. .fitem{float:left;width:23%;clear:none}#page-mod-quiz-mod.dir-rtl #id_reviewoptionshdr
  627. .fitem{float:right}#page-mod-quiz-mod #id_reviewoptionshdr
  628. .fitemtitle{width:100%;font-weight:bold;text-align:left;height:2.5em;margin-left:0}#page-mod-quiz-mod.dir-rtl #id_reviewoptionshdr
  629. .fitemtitle{text-align:right}#page-mod-quiz-mod #id_reviewoptionshdr
  630. fieldset.fgroup{clear:left;margin:0
  631. 0 1em}#page-mod-quiz-mod #id_reviewoptionshdr fieldset.fgroup>span{float:left;clear:left;line-height:1.7}#page-mod-quiz-mod.dir-rtl #id_reviewoptionshdr fieldset.fgroup>span{float:right;clear:right}#page-mod-quiz-mod #id_reviewoptionshdr fieldset.fgroup span
  632. label{margin-left:0.4em}#page-mod-quiz-view .quizinfo,
  633. #page-mod-quiz-view #page .quizgradefeedback,
  634. #page-mod-quiz-view #page
  635. .quizattempt{text-align:center}#page-mod-quiz-view #page .quizattemptsummary td
  636. p{margin-top:0}#page-mod-quiz-view table.quizattemptsummary tr.bestrow
  637. td{border-color:#bce8f1;background-color:#d9edf7}table.quizattemptsummary
  638. .noreviewmessage{color:gray}#page-mod-quiz-view
  639. .generaltable.quizattemptsummary{margin-left:auto;margin-right:auto}#page-mod-quiz-view
  640. .generalbox#feedback{width:70%;margin-left:auto;margin-right:auto;padding-bottom:15px}#page-mod-quiz-view .generalbox#feedback
  641. h2{margin:0}#page-mod-quiz-view .generalbox#feedback
  642. h3{text-align:left}#page-mod-quiz-view.dir-rtl .generalbox#feedback
  643. h3{text-align:center}#page-mod-quiz-view .generalbox#feedback
  644. .overriddennotice{text-align:center;font-size:0.7em}.quizstartbuttondiv.quizsecuremoderequired
  645. input{display:none}.jsenabled .quizstartbuttondiv.quizsecuremoderequired
  646. input{display:inline}.quizattempt
  647. #mod_quiz_preflight_form{display:none}#mod_quiz_preflight_form .femptylabel
  648. .fitemtitle{display:none}#mod_quiz_preflight_form .femptylabel
  649. .felement{margin:0;padding:0}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup{width:600px}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup .moodle-dialogue-wrap{overflow:hidden}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup .moodle-dialogue-bd{padding:0}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup .moodle-dialogue-bd #mod_quiz_preflight_form
  650. legend{padding:0
  651. 10px;margin:0;border:0
  652. none}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup .moodle-dialogue-bd #mod_quiz_preflight_form
  653. .fitem{margin-left:10px}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup .moodle-dialogue-bd #mod_quiz_preflight_form
  654. #fgroup_id_buttonar{padding:10px
  655. 0 0;margin:0}.moodle-dialogue-base .moodle-dialogue.mod_quiz_preflight_popup .moodle-dialogue-content .moodle-dialogue-ft{margin:0}.moodle-dialogue-bd #mod_quiz_preflight_form
  656. fieldset.hidden{display:inherit;visibility:inherit}body.path-mod-quiz .gradedattempt,
  657. body.path-mod-quiz table tbody tr.gradedattempt>td{border-color:#bce8f1;background-color:#d9edf7}.quizattemptcounts{clear:left;text-align:center;display:inline;margin-left:20%}.dir-rtl
  658. .quizattemptcounts{margin-left:0;margin-right:20%}#page-mod-quiz-view .quizattemptcounts,
  659. .dir-rtl #page-mod-quiz-view
  660. .quizattemptcounts{display:block;margin-left:0;margin-right:0}#page-mod-quiz-summary
  661. #content{text-align:center}#page-mod-quiz-summary
  662. .questionflag{vertical-align:text-bottom}#page-mod-quiz-summary #quiz-timer{text-align:center;margin-top:1em}#page-mod-quiz-summary
  663. .submitbtns{margin-top:1.5em}@media
  664. print{.quiz-secure-window
  665. *{display:none !important}}table.quizreviewsummary{width:100%}table.quizreviewsummary
  666. th.cell{padding:1px
  667. 0.5em 1px 1em;font-weight:bold;text-align:right;width:10em;background:#f0f0f0}table.quizreviewsummary
  668. td.cell{padding:1px
  669. 1em 1px 0.5em;text-align:left;background:#fafafa}.dir-rtl table.quizreviewsummary
  670. td.cell{text-align:right}#page-mod-quiz-comment
  671. .mform{width:100%}#page-mod-quiz-comment .mform
  672. fieldset{margin:0}#page-mod-quiz-comment
  673. .que{margin:0}#page-mod-quiz-report
  674. h2.main{clear:both}#page-mod-quiz-report div#commands,
  675. #page-mod-quiz-report
  676. .controls{text-align:center}#page-mod-quiz-report
  677. .dubious{background-color:#fcc}#page-mod-quiz-report
  678. .highlight{border:1px
  679. solid #bce8f1;background-color:#d9edf7}#page-mod-quiz-report
  680. .negcovar{border:medium solid pink}#page-mod-quiz-report
  681. .toggleincludeauto{text-align:center}#page-mod-quiz-report
  682. .gradetheselink{font-size:0.8em}#page-mod-quiz-report .mform fieldset.fgroup span
  683. label{margin-right:14px}#page-mod-quiz-report table
  684. th{white-space:normal}#page-mod-quiz-report table#attempts td,
  685. #page-mod-quiz-report table.quizresponseanalysis
  686. td{word-wrap:break-word;max-width:20em}#page-mod-quiz-report table.titlesleft
  687. td.c0{font-weight:bold}#page-mod-quiz-report table
  688. .numcol{text-align:center;vertical-align:middle !important}#page-mod-quiz-report
  689. table#attempts{clear:both;width:80%;margin:0.2em auto}#page-mod-quiz-report table#attempts .header,
  690. #page-mod-quiz-report table#attempts
  691. .cell{padding:4px}#page-mod-quiz-report table#attempts .header
  692. .commands{display:inline}#page-mod-quiz-report table#attempts
  693. .picture{width:40px}#page-mod-quiz-report table#attempts
  694. td{border-left-width:1px;border-right-width:1px;border-left-style:solid;border-right-style:solid;vertical-align:middle}#page-mod-quiz-report table#attempts
  695. .header{text-align:left}#page-mod-quiz-report table#attempts
  696. .picture{text-align:center !important}#page-mod-quiz-report table#attempts.grades span.que,
  697. #page-mod-quiz-report table#attempts
  698. span.avgcell{white-space:nowrap}#page-mod-quiz-report table#attempts span.que
  699. .requiresgrading{white-space:normal}#page-mod-quiz-report table#attempts
  700. .questionflag{vertical-align:text-bottom;padding-left:6px}.dir-rtl#page-mod-quiz-report table#attempts
  701. .questionflag{padding-right:6px;padding-left:0}#page-mod-quiz-report .graph.flexible-wrap{text-align:center;overflow:auto}#page-mod-quiz-report
  702. #cachingnotice{margin-bottom:1em;padding:0.2em}#page-mod-quiz-report #cachingnotice
  703. .singlebutton{margin:0.5em 0 0}#page-mod-quiz-report .bold
  704. .reviewlink{font-weight:normal}#page-mod-quiz-report
  705. tr.lastrowforattempt{border-bottom:lightgrey solid 0.2em}#page-mod-quiz-edit
  706. .statusbar{margin:0.6em 0.4em}#page-mod-quiz-edit
  707. .statusdisplay{background-color:#ffc;clear:both;margin:0.3em 0;padding:1px
  708. 10px}#page-mod-quiz-edit .statusdisplay
  709. p{margin:4px
  710. 0}#page-mod-quiz-edit .maxgrade,
  711. #page-mod-quiz-edit
  712. .totalpoints{display:block;float:right;margin:-2.85em 0 0;padding: .2em}#page-mod-quiz-edit.dir-rtl .maxgrade,
  713. #page-mod-quiz-edit.dir-rtl
  714. .totalpoints{float:left}#page-mod-quiz-edit .maxgrade
  715. label{display:inline}#page-mod-quiz-edit li.activity > div,
  716. #page-mod-quiz-edit
  717. li.pagenumber{position:relative}#page-mod-quiz-edit ul.section li.pagenumber:first-child .add-menu-outer ul.menu li:first-child,
  718. #page-mod-quiz-edit .last-add-menu .add-menu-outer ul.menu li:first-child{display:none}#page-mod-quiz-edit .last-add-menu{position:relative;height:1.5em;margin:0
  719. 20px}#page-mod-quiz-edit .add-menu-outer{position:absolute;right:0}#page-mod-quiz-edit.dir-rtl .add-menu-outer{right:auto;left:0}#page-mod-quiz-edit
  720. .slotnumber{background-color:#D3D3D3;text-align:center;margin:0.1em 0.5em;min-width:2em;display:inline-block}#page-mod-quiz-edit .section-heading{font-size:24px;margin-left:20px;margin-bottom:0;height:40px}#page-mod-quiz-edit .section-heading
  721. .instancesectioncontainer{display:inline}#page-mod-quiz-edit .section-heading .instancesectioncontainer
  722. h3{display:inline;color:#999}#page-mod-quiz-edit .section-heading .editing_section,
  723. #page-mod-quiz-edit .section-heading
  724. .editing_delete{margin-left:10px}#page-mod-quiz-edit .section-heading
  725. .sectioninstance{position:relative}#page-mod-quiz-edit .section-heading
  726. .instancesection{white-space:nowrap;max-width:72%;display:inline-block;text-overflow:ellipsis;overflow:hidden;vertical-align:bottom}#page-mod-quiz-edit .section-heading
  727. form{display:inline;position:relative;top:3px;left:-7px}#page-mod-quiz-edit .section-heading form
  728. input{font-size:24px;font-weight:bold;width:50%}#page-mod-quiz-edit .section-heading
  729. .instanceshufflequestions{float:right;margin:0.3em 20px 0 0}#page-mod-quiz-edit
  730. ul.section{margin:0;padding:0
  731. 20px}#page-mod-quiz-edit
  732. ul.slots{margin:0}#page-mod-quiz-edit ul.slots
  733. li.section{border:0}#page-mod-quiz-edit ul.slots li.section
  734. .content{background-color:#FAFAFA;padding:1px
  735. 0}#page-mod-quiz-edit ul.slots
  736. li.section{list-style:none;margin:0;padding:0}#page-mod-quiz-edit ul.slots li.section
  737. li.activity{background:#E6E6E6;margin:3px
  738. 0;padding:0.2em}#page-mod-quiz-edit ul.slots li.section
  739. li.activity.page{background:transparent}#page-mod-quiz-edit ul.slots li.section li.activity.page
  740. h4{display:inline;font-weight:normal;font-size:1em}#page-mod-quiz-edit ul.slots li.section li.activity
  741. .instancemaxmarkcontainer{background:white;padding:0.2em;margin:0.4em}#page-mod-quiz-edit ul.slots li.section li.activity .instancemaxmarkcontainer
  742. .editicon{width:13px}#page-mod-quiz-edit ul.slots li.section li.activity
  743. .instancemaxmarkcontainer.infoitem{background:transparent}#page-mod-quiz-edit ul.slots li.section li.activity .instancemaxmarkcontainer
  744. form{display:inline}#page-mod-quiz-edit ul.slots li.section li.activity .instancemaxmarkcontainer form
  745. input{margin:0;padding:0.2em;height:1em}#page-mod-quiz-edit ul.slots li.section li.activity
  746. .instancemaxmark{display:inline-block;text-align:right}#page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity
  747. .instancemaxmark{text-align:left}#page-mod-quiz-edit ul.slots li.section li.activity
  748. .page_split_join_wrapper{position:absolute}#page-mod-quiz-edit ul.slots li.section li.activity
  749. .page_split_join{position:relative;left:-20px;top:-7px}#page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity
  750. .page_split_join{left:auto;right:-20px}#page-mod-quiz-edit ul.slots li.section li.activity
  751. .instancemaxmark.decimalplaces_0{min-width:1.3em}#page-mod-quiz-edit ul.slots li.section li.activity
  752. .instancemaxmark.decimalplaces_1{min-width:2em}#page-mod-quiz-edit ul.slots li.section li.activity
  753. .instancemaxmark.decimalplaces_2{min-width:2.6em}#page-mod-quiz-edit ul.slots li.section li.activity
  754. .instancemaxmark.decimalplaces_3{min-width:3.2em}#page-mod-quiz-edit ul.slots li.section li.activity
  755. .instancemaxmark.decimalplaces_4{min-width:3.7em}#page-mod-quiz-edit ul.slots li.section li.activity
  756. .instancemaxmark.decimalplaces_5{min-width:4.3em}#page-mod-quiz-edit ul.slots li.section li.activity
  757. .instancemaxmark.decimalplaces_6{min-width:4.8em}#page-mod-quiz-edit ul.slots li.section li.activity
  758. .instancemaxmark.decimalplaces_7{min-width:5.45em}#page-mod-quiz-edit ul.slots li.section li.activity .edit_icon,
  759. #page-mod-quiz-edit ul.slots li.section li.activity a.preview,
  760. #page-mod-quiz-edit ul.slots li.section li.activity .editing_delete,
  761. #page-mod-quiz-edit ul.slots li.section li.activity
  762. .editing_maxmark{margin:0
  763. 2px}#page-mod-quiz-edit ul.slots li.section.only-has-one-slot li.activity .editing_move,
  764. #page-mod-quiz-edit ul.slots li.section.only-has-one-slot li.activity
  765. .editing_delete{visibility:hidden}#page-mod-quiz-edit ul.slots.only-one-section li.section.only-has-one-slot li.activity
  766. .editing_delete{visibility:visible}#page-mod-quiz-edit ul.slots li.section li.activity
  767. .question_dependency_wrapper{position:absolute;top:0;right:0}#page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity
  768. .question_dependency_wrapper{left:0;right:auto}#page-mod-quiz-edit ul.slots li.section li.activity
  769. .question_dependency_wrapper.question_dependency_cannot_depend{display:none}#page-mod-quiz-edit ul.slots li.section li.activity .question_dependency_wrapper .currentlink,
  770. #page-mod-quiz-edit ul.slots li.section li.activity .question_dependency_wrapper .cm-edit-action{position:relative;left:20px;top:-1em}#page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity .question_dependency_wrapper .currentlink,
  771. #page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity .question_dependency_wrapper .cm-edit-action{right:20px;left:auto}#page-mod-quiz-edit ul.slots li.section li.activity
  772. .activityinstance{display:block;min-height:1.7em;position:absolute;top:0;left:5em;width:100%}#page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity
  773. .activityinstance{left:auto;right:5em}#page-mod-quiz-edit ul.slots li.section li.activity .mod-indent-outer{padding-left:22px}#page-mod-quiz-edit.dir-rtl ul.slots li.section li.activity .mod-indent-outer{padding-left:0;padding-right:22px}#page-mod-quiz-edit ul.slots .activityinstance
  774. form{display:inline}#page-mod-quiz-edit
  775. span.editinstructions{right:0}#page-mod-quiz-edit.dir-rtl
  776. span.editinstructions{left:0;right:auto}#page-mod-quiz-edit ul.slots .activityinstance
  777. span.instancename{overflow-x:hidden;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;width:70%;display:inline-block;height:20px}#page-mod-quiz-edit ul.slots .activityinstance span.instancename
  778. img{margin:0
  779. 0.2em}#page-mod-quiz-edit #categoryquestions .questionname,
  780. #page-mod-quiz-edit ul.slots li.activity div.activityinstance
  781. .questionname{font-weight:bold;color:#555}#page-mod-quiz-edit ul.slots li.activity div.activityinstance
  782. .questiontext{color:#555}#page-mod-quiz-edit ul.slots li.activity div.activityinstance
  783. .mod_quiz_random_qbank_link{font-size:0.8em}#page-mod-quiz-edit ul.slots .activityinstance
  784. img.activityicon{float:left;margin: .2em 0 0;padding:0}#page-mod-quiz-edit.dir-rtl ul.slots .activityinstance
  785. img.activityicon{float:right}#page-mod-quiz-edit .section .activity
  786. .actions{white-space:nowrap;background:#e6e6e6;padding:0.1em 0}#page-mod-quiz-edit
  787. .mod_quiz_edit_forms{display:none}#categoryquestions>tbody>tr:nth-of-type(even){background:#e4e4e4}#categoryquestions>tbody>tr:nth-of-type(even).highlight{background-color:#AFA}#categoryquestions
  788. .header{text-align:center;padding:0
  789. 2px;border:0
  790. none}#categoryquestions th.modifiername .sorters,
  791. #categoryquestions th.creatorname
  792. .sorters{font-weight:normal;font-size:0.8em}#categoryquestions td.modifiername,
  793. #categoryquestions
  794. td.creatorname{line-height:1em}#categoryquestions td.modifiername span.date,
  795. #categoryquestions td.creatorname
  796. span.date{font-weight:normal;font-size:0.8em}table#categoryquestions{width:100%;overflow:hidden;table-layout:fixed}#categoryquestions
  797. .iconcol{width:15px;text-align:center;padding:0}#categoryquestions
  798. .checkbox{width:19px;text-align:center;padding:0}#categoryquestions
  799. .qtype{text-align:center}#categoryquestions
  800. .qtype{width:28px;padding:0}#categoryquestions
  801. .questiontext{position:relative;zoom:1;padding-left:0.3em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dir-rtl #categoryquestions
  802. .questiontext{padding-left:0;padding-right:0.3em}#categoryquestions
  803. .questionname{white-space:nowrap;overflow:hidden;zoom:1;position:relative}#categoryquestions .questiontext
  804. p{margin:0}#page-mod-quiz-edit table#categoryquestions td,
  805. #page-mod-quiz-edit table#categoryquestions
  806. th{overflow:hidden;white-space:nowrap}.mod_quiz_qbank_dialogue{width:80%;min-height:200px}.mod_quiz_qbank_dialogue.moodle-dialogue-fullscreen{width:100%}.mod_quiz_qbank_dialogue
  807. .questionbankloading{position:absolute;top:30px;bottom:0;left:0;right:0;background:#fff;text-align:center;opacity:0.5;padding-top:50px}.mod_quiz_qbank_dialogue #advancedsearch
  808. label{font-size:100%}.modulespecificbuttonscontainer{padding-left:0.3em;padding-right:0.3em}.quizquestionlistcontrols{text-align:center}.categoryinfo{padding:0.3em}.path-mod-quiz
  809. .gradingdetails{font-size:small}#page-mod-quiz-edit div#repaginatedialog
  810. .mform{margin-left:auto;margin-right:auto}#page-mod-quiz-edit div.container
  811. div.generalbox{position:relative;display:block;border:0
  812. none;margin:0;padding:0}#page-mod-quiz-edit
  813. .paging{margin-top:0;margin-bottom:0;padding:0.1em 0.3em;display:block;background-color:#ddd}#page-mod-quiz-edit #page-footer{clear:both;padding-top:1em}#page-mod-quiz-edit
  814. .categoryinfofield{font-style:italic}#page-mod-quiz-edit
  815. .categorynamefield{font-weight:bold}#page-mod-quiz-edit
  816. .questionsortoptions{background-color:#ddd}#page-mod-quiz-edit div.questionbank
  817. .categorysortopotionscontainer{padding-top:0.5em;margin-top:0.3em}#page-mod-quiz-edit div.questionbank .categoryquestionscontainer,
  818. .questionbank .categorysortopotionscontainer,
  819. .questionbank .categorypagingbarcontainer,
  820. .questionbank
  821. .categoryselectallcontainer{background-color:#FFF}#page-mod-quiz-edit ul.slots li.section
  822. ul.section{list-style:none}@media
  823. print{#page-mod-quiz-attempt header.navbar,
  824. #page-mod-quiz-review
  825. header.navbar{display:none}#page-mod-quiz-attempt #dock,
  826. #page-mod-quiz-review
  827. #dock{display:none}#page-mod-quiz-attempt #page #page-header h1,
  828. #page-mod-quiz-review #page #page-header
  829. h1{display:none}#page-mod-quiz-attempt #region-main,
  830. #page-mod-quiz-review #region-main{width:100%}#page-mod-quiz-attempt #block-region-side-pre,
  831. #page-mod-quiz-attempt #block-region-side-post,
  832. #page-mod-quiz-review #block-region-side-pre,
  833. #page-mod-quiz-review #block-region-side-post{display:none}#page-mod-quiz-attempt #page-footer,
  834. #page-mod-quiz-review #page-footer{display:none}#page-mod-quiz-attempt .editquestion,
  835. #page-mod-quiz-review .editquestion,
  836. #page-mod-quiz-attempt .questionflag,
  837. #page-mod-quiz-review
  838. .questionflag{display:none}#page-mod-quiz-attempt .submitbtns,
  839. #page-mod-quiz-review
  840. .submitbtns{display:none}#page-mod-quiz-review .que
  841. .commentlink{display:none}#page-mod-quiz-attempt .que,
  842. #page-mod-quiz-review
  843. .que{page-break-inside:avoid}}@media only screen and (max-width:565px){#page-mod-quiz-edit
  844. .rpcontainerclass{margin-top:3em}#page-mod-quiz-edit
  845. .maxgrade{margin-top:0.1em}#page-mod-quiz-edit
  846. .statusbar{padding:0}}.path-mod-resource
  847. .resourcecontent{text-align:center}.path-mod-resource
  848. .resourcedetails{font-size:0.8em;color:#555}.resourcelinkdetails{font-size:0.8em;color:#555}.path-mod-scorm
  849. .top{vertical-align:top}.path-mod-scorm .scorm-left{text-align:left}.path-mod-scorm .scorm-center{text-align:center}.path-mod-scorm .scorm-right{text-align:right}.path-mod-scorm
  850. .scoframe{position:relative;width:100%;height:100%}.ios #scormpage
  851. #scorm_content{-webkit-overflow-scrolling:touch;overflow:scroll}#page-mod-scorm-player
  852. #scormtop{position:relative;width:100%;height:30px}#page-mod-scorm-player
  853. #scormbrowse{position:absolute;left:5px;top:0px}#page-mod-scorm-player
  854. #scormnav{position:absolute;right:5px;text-align:center;top:3px;width:100%}#page-mod-scorm-player
  855. #scormbox{width:74%;height:100%;position:absolute;right:0px;top:0px}#page-mod-scorm-player
  856. #scormpage{position:relative;width:100%;height:100%}#page-mod-scorm-player #scormpage
  857. #toctree{position:relative;width:100%}#page-mod-scorm-player
  858. #tocbox{position:relative;left:0px;width:100%;height:100%;font-size:0.8em}#page-mod-scorm-player
  859. #toctree{overflow:visible}#page-mod-scorm-player
  860. #tochead{position:relative;text-align:center;top:3px;height:30px}#page-mod-scorm-player #scormpage
  861. .scoframe{frameborder:0}#page-mod-scorm-player #scormpage
  862. #scorm_object{border:none;width:98%;height:98%}#page-mod-scorm-player #scormpage
  863. #scorm_object.scorm_nav_under_content{height:95%}#page-mod-scorm-player #scormpage
  864. #scorm_content{height:100%}#page-mod-scorm-player #scormpage
  865. #scorm_toc{position:relative}#page-mod-scorm-player #scormpage
  866. #scorm_toc_title{font-size:1.2em;font-weight:bold}#page-mod-scorm-player #scormpage
  867. #scorm_tree{border-right:5px solid rgb(239, 245, 255)}#page-mod-scorm-player #scormpage
  868. #scorm_navpanel{text-align:center}#page-mod-scorm-player .toc,
  869. #page-mod-scorm-player .no-toc{width:100%}#page-mod-scorm-player
  870. .structlist{list-style-type:none;white-space:nowrap}#page-mod-scorm-player
  871. .structurelist{position:relative;list-style-type:none;width:96%;margin:0;padding:0}#page-mod-scorm-player .structurelist
  872. ul{padding-left:0.5em;margin-left:0.5em}#page-mod-scorm-player #scormpage #scorm_toc.disabled,
  873. #page-mod-scorm-player #scormpage
  874. #scorm_toc_toggle.disabled{display:none}#page-mod-scorm-view
  875. .structurelist{list-style-type:none;white-space:nowrap}#page-mod-scorm-view
  876. .structurelist{list-style-type:none;white-space:nowrap}#page-mod-scorm-view
  877. .exceededmaxattempts{color:#c00}#page-mod-scorm-player
  878. #altfinishlink{font-size:140%;border:0px;padding:0px}#page-mod-scorm-player
  879. #scormmode{float:left;border:0px}#page-mod-scorm-player.pagelayout-popup #page-content .region-content{padding:0px}#page-mod-scorm-player.pagelayout-popup #page-wrapper{width:100%}#page-mod-scorm-player .yui-layout-scroll div.yui-layout-bd{overflow:visible}#page-mod-scorm-player .yui-layout-unit-left div.yui-layout-bd{overflow:auto}.path-mod-scorm.forcejavascript .scorm-center{display:none}.path-mod-scorm.forcejavascript
  880. .toc{display:none}.path-mod-scorm.forcejavascript #scormpage
  881. #tocbox{display:none}.path-mod-scorm.jsenabled
  882. .forcejavascriptmessage{display:none}.path-mod-scorm.jsenabled .scorm-center{display:block}.path-mod-scorm.jsenabled
  883. .toc{display:block}.path-mod-scorm.jsenabled #scormpage
  884. #tocbox{display:block}#page-mod-scorm-report-userreporttracks table
  885. .c1{word-wrap:break-word;word-break:break-all}#page-mod-scorm-report
  886. .scormattemptcounts{clear:left;text-align:center;display:inline;margin-left:20%}#page-mod-scorm-player #scormpage span.yui3-treeview-icon{display:none}#page-mod-scorm-player #scormpage li.yui3-treeview-has-children>div.yui3-treeview-row>span.yui3-treeview-icon{display:block}#page-mod-scorm-player #scormpage div.yui3-u-1,
  887. #page-mod-scorm-player #scormpage div.yui3-u-3-4,
  888. #page-mod-scorm-player #scormpage div.yui3-u-1-5,
  889. #page-mod-scorm-player #scormpage div.yui3-u-1-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}#page-mod-scorm-player #scormpage div.yui3-u-1{display:block}#page-mod-scorm-player #scormpage div.yui3-u-3-4{width:75%}#page-mod-scorm-player #scormpage div.yui3-u-1-5{width:20%}#page-mod-scorm-player #scormpage div.yui3-u-1-24{width:4.1666%}#page-mod-scorm-player #scormpage div.yui3-g-r{*letter-spacing:normal;*word-spacing:-0.43em}#scorm_layout{margin-bottom:50px}#page-mod-scorm-player .opera-only :-o-prefocus,
  890. #page-mod-scorm-player #scormpage div.yui3-g-r
  891. img{max-width:100%}.dir-rtl#page-mod-scorm-player #scormpage span.yui3-treeview-icon{float:right}.path-mod-survey
  892. .smalltext{font-size:0.75em}.path-mod-survey .surveytable .rblock
  893. label{display:block}.path-mod-survey .surveytable .foundthat,
  894. .path-mod-survey .surveytable
  895. .preferthat{white-space:nowrap}.path-mod-survey .surveytable
  896. .buttoncell{width:5%}.path-mod-survey .surveytable .optioncell,
  897. .path-mod-survey .surveytable
  898. .questioncell{width:50%;vertical-align:top}.path-mod-survey .surveytable
  899. .whitecell{background-color:white}.path-mod-survey #surveyform
  900. th{font-weight:normal;text-align:left}.path-mod-survey #surveyform
  901. th.hresponse{text-align:center;width:9%}#page-mod-survey-report
  902. .fullnamecell{width:10%;vertical-align:top;white-space:nowrap}.path-mod-url
  903. .resourcecontent{text-align:center}.wiki_contentbox{width:80%;margin:auto;min-width:200px;min-height:100px}.wiki_editor{width:50%;margin:auto;margin-top:10px;margin-bottom:10px}.wiki_previewbox{width:50%;margin:auto;border:thin solid blue}.wiki_button{margin:5px}.wiki_warning{color:red}.emptycomments{color:red;display:inline}.wiki-toc{border:1px
  904. solid #BBB;background:#EEE;margin:16px;padding:8px}.wiki-toc-title{color:#666;font-size:1.1em;font-variant:small-caps;text-align:center}.wiki-toc-section{padding:0;margin:2px
  905. 8px}.wiki-toc-section-2{padding-left:12px}.wiki-toc-section-3{padding-left:24px}.wiki_form-button{margin-left:0%}.wiki-form-center{text-align:center;margin:auto;width:320px}.wiki-upload-table{margin:8px
  906. auto;clear:both}.wiki-upload-table
  907. table{margin:auto}.wiki-upload-table
  908. h3{margin:4px
  909. 0px;text-align:center}.wiki-upload-section{border:1px
  910. solid #EEE;width:400px;margin:8px
  911. auto}.wiki-upload-section
  912. legend{font-weight:bold;font-size:0.9em;margin-left:16px}.wiki-tags{text-align:right}.wiki_modifieduser
  913. p{line-height:35px}.wiki_modifieduser
  914. img{border:thin solid black}.wiki_restore_yes, .wiki_deletecomment_yes,
  915. .dir-rtl .wiki_restore_no, .dir-rtl
  916. .wiki_deletecomment_no{float:left}.wiki_restore_no, .wiki_deletecomment_no,
  917. .dir-rtl .wiki_restore_yes, .dir-rtl
  918. .wiki_deletecomment_yes{float:right}.wiki_restoreform,.wiki_deletecommentform{width:10%;margin:auto}.wiki_versionuser{float:left}.wiki_diffuserleft,.wiki_diffuserright{font-weight:normal;padding-top:1%}.wiki_diffuserleft{float:right}.dir-rtl
  919. .wiki_diffuserleft{float:left}.wiki_diffuserright{float:left}.wiki_compareheading{font-weight:normal}.wiki_restore,.wiki_diffview,.wiki_difftime,.wiki_headingtime{font-size:0.8em;font-weight:normal}.wiki_difftime,.wiki_headingtime{font-style:oblique;text-align:center}.wiki_diff_oldpaging{float:left;width:40%;min-width:200px;margin-left:5%}.wiki_diff_newpaging{float:right;width:40%;min-width:200px;margin-right:5%}.wiki_diff_old,.wiki_diff_new{float:left;min-width:200px;width:40%}.wiki_difftable
  920. td{width:50%;float:left}.wiki_histdate{text-align:left}.wiki_histnewdate{border-top:1px dotted gray}.ouw_deleted{background:#FFA;color:red;text-decoration:line-through}.ouw_added{background:#CFC;color:red}a.wiki_newentry:link,a.wiki_newentry:visited{color:red;font-style:italic}.wiki_newentry
  921. a{color:red;font-style:italic}#intro.generalbox{margin-top:10px;padding:5px}.wiki_navigation_container{margin:0
  922. auto}.wiki_navigation_from{float:left;width:40%;min-width:200px;margin-left:5%}.wiki_navigation_to{float:left;width:40%;min-width:200px;margin-right:5%}.wiki_headingtitle{text-align:center}.wiki_clear{clear:both}.wiki_right{text-align:right}.wiki_index{text-align:right}.notunderlined{text-decoration:none}a.wiki_edit_section{font-size:0.6em;vertical-align:top;position:relative;float:right}.midpad{text-align:center;margin-top:0.4em;margin-bottom:0.4em}.block_wiki_search
  923. ul{margin-top:0.5em;margin-bottom:3px}.wiki-attachment:before{content:url("/mod/wiki/pix/attachment.png");padding-right:2px}#wiki_printable_content{text-align:left}.dir-rtl
  924. #wiki_printable_content{text-align:right}#wiki_printable_content
  925. a{color:black}#wiki_printable_title{font-size:2.2em;text-decoration:underline}.wiki_diff_boxes{width:100%;clear:both}.wiki_diff_paging{width:100%;clear:both}.wiki_grayline{color:gray}.wikisearchresults{padding-left:50px;padding-top:20px}.wiki-diff-container{width:95%;margin:10px
  926. auto}.wiki-diff-container .wiki-diff-leftside,
  927. .wiki-diff-container .wiki-diff-rightside{width:49.5%;margin:0;padding:0;float:left}.wiki-diff-container .wiki-diff-rightside{margin-left:1%}.wiki-diff-container .wiki-diff-heading,
  928. .wiki-diff-container .no-overflow{padding:10px;border:1px
  929. solid #DDD}.wiki-diff-container .wiki-diff-rightside
  930. .wiki_diffversion{text-align:right}.wikieditor-toolbar
  931. img{width:22px;height:22px;vertical-align:middle}.path-mod-wiki
  932. .printicon{background:url(/theme/image.php/essential/core/1489002274/t/print) no-repeat scroll 2px center transparent;padding-left:20px}#page-mod-wiki-prettyview
  933. .displayprinticon{text-align:right}.path-mod-workshop
  934. .collapsibleregion{margin-bottom:0.75em}.path-mod-workshop
  935. .collapsibleregioncaption{font-weight:bold;font-size:120%}.path-mod-workshop
  936. div.singlebutton{text-align:center;margin:0.75em auto}.path-mod-workshop #workshop-viewlet-assignedassessments div.singlebutton,
  937. .path-mod-workshop #workshop-viewlet-allexamples div.singlebutton,
  938. .path-mod-workshop #workshop-viewlet-examples
  939. div.singlebutton{text-align:left}.path-mod-workshop
  940. .groupwidget{text-align:center;margin:0.75em auto}.path-mod-workshop
  941. .perpagewidget{text-align:center;margin:0.75em auto}.path-mod-workshop .submission-summary{position:relative;margin-bottom:10px}.path-mod-workshop .submission-summary .title,
  942. .path-mod-workshop .submission-summary .author,
  943. .path-mod-workshop .submission-summary .author .fullname,
  944. .path-mod-workshop .submission-summary .author
  945. .picture{display:inline}.path-mod-workshop .submission-summary .title,
  946. .path-mod-workshop .submission-summary .userdate,
  947. .path-mod-workshop .submission-summary .grade-status{margin:0px
  948. 0px 0px 40px}.path-mod-workshop .submission-summary
  949. .author{margin-left:1ex}.path-mod-workshop .submission-summary.anonymous .title,
  950. .path-mod-workshop .submission-summary.anonymous .author,
  951. .path-mod-workshop .submission-summary.anonymous .userdate,
  952. .path-mod-workshop .submission-summary.anonymous .grade-status{margin:0px
  953. 0px 0px 5px}.path-mod-workshop .submission-summary
  954. .userdate{font-size:x-small;color:#333}.path-mod-workshop .submission-summary .userdate
  955. span{font-style:italic}.path-mod-workshop .submission-summary .author
  956. .picture{position:absolute;top:0px;left:0px}.path-mod-workshop .submission-full{border:1px
  957. solid #ddd;margin:0px
  958. 0px 1em 0px}.path-mod-workshop .submission-full
  959. .header{position:relative;background-color:#ddd;padding:3px;min-height:67px}.path-mod-workshop .submission-full .header .title,
  960. .path-mod-workshop .submission-full .header .author,
  961. .path-mod-workshop .submission-full .header
  962. .userdate{margin:0px
  963. 0px 0px 80px}.dir-rtl.path-mod-workshop .submission-full .header .title,
  964. .dir-rtl.path-mod-workshop .submission-full .header .author,
  965. .dir-rtl.path-mod-workshop .submission-full .header
  966. .userdate{margin:0px
  967. 80px 0px 0px}.path-mod-workshop .submission-full.anonymous .header .title,
  968. .path-mod-workshop .submission-full.anonymous .header .author,
  969. .path-mod-workshop .submission-full.anonymous .header
  970. .userdate{margin:0px
  971. 0px 0px 5px}.path-mod-workshop .submission-full .header
  972. .userdate.created{padding-right:10px}.path-mod-workshop .submission-full .header
  973. .userdate.modified{padding-left:10px;margin-left:0px;border-left:1px solid #000}.path-mod-workshop .submission-full .header
  974. .userdate{font-size:x-small;color:#333;display:inline}.path-mod-workshop .submission-full .header .userdate
  975. span{font-style:italic}.path-mod-workshop .submission-full .header .author
  976. .picture{position:absolute;top:3px;left:3px}.dir-rtl.path-mod-workshop .submission-full .header .author
  977. .picture{right:3px;left:auto}.path-mod-workshop .submission-full .content,
  978. .path-mod-workshop .submission-full
  979. .attachments{padding:5px
  980. 10px}.path-mod-workshop .submission-full .attachments .files
  981. img.icon{margin-right:5px}.path-mod-workshop .submission-full .attachments .images
  982. div{display:inline-block;margin:5px;padding:5px;border:1px
  983. solid #ddd}.path-mod-workshop .submission-summary.example .title,
  984. .path-mod-workshop .submission-summary.example
  985. .userdate{margin:0px
  986. 0px 0px 0px}.path-mod-workshop .submission-full.example
  987. .header{min-height:0px}.path-mod-workshop .submission-full.example .header
  988. .title{margin:0px
  989. 0px 0px 0px}.path-mod-workshop
  990. .message{padding:5px
  991. 5em 5px 15px;margin:0px
  992. auto 20px auto;width:100%;font-size:80%;position:relative}.path-mod-workshop .message
  993. .singlebutton{text-align:left;margin:0px}.path-mod-workshop
  994. .message.ok{color:#547c22;background-color:#e7f1c3}.path-mod-workshop
  995. .message.error{color:#dd0221;background-color:#ffd3d9}.path-mod-workshop
  996. .message.info{color:#1666a9;background-color:#d2ebff}.path-mod-workshop .allocation-init-results{margin:10px
  997. auto;width:100%;font-size:80%}.path-mod-workshop .allocation-init-results
  998. .indent{margin-left:20px}.path-mod-workshop .allocation-init-results
  999. .ok{color:#547c22;background-color:#e7f1c3}.path-mod-workshop .allocation-init-results
  1000. .error{color:#dd0221;background-color:#ffd3d9}.path-mod-workshop .allocation-init-results
  1001. .info{color:#1666a9;background-color:#d2ebff}.path-mod-workshop .allocation-init-results
  1002. .debug{color:black;background-color:#ddd}.path-mod-workshop
  1003. .userplan{width:100%;margin:1em
  1004. auto 1em auto;font-size:80%;border:1px
  1005. solid #ddd}.path-mod-workshop .userplan
  1006. th{vertical-align:bottom;white-space:normal;color:#999;border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:3px}.path-mod-workshop .userplan
  1007. th.active{vertical-align:top;color:black;font-size:140%;border:1px
  1008. solid #ddd;border-bottom:0;background:#e7f1c3}.path-mod-workshop .userplan
  1009. td{width:20%;vertical-align:top;border-right:1px solid #ddd;background-color:#f5f5f5}.path-mod-workshop .userplan td,
  1010. .path-mod-workshop .userplan td a,
  1011. .path-mod-workshop .userplan td a:link,
  1012. .path-mod-workshop .userplan td a:hover,
  1013. .path-mod-workshop .userplan td a:visited,
  1014. .path-mod-workshop .userplan td a:active{color:#999}.path-mod-workshop .userplan td.active,
  1015. .path-mod-workshop .userplan td.active a,
  1016. .path-mod-workshop .userplan td.active a:link,
  1017. .path-mod-workshop .userplan td.active a:hover,
  1018. .path-mod-workshop .userplan td.active a:visited,
  1019. .path-mod-workshop .userplan td.active a:active{color:black}.path-mod-workshop .userplan
  1020. td.lastcol{border-right:0}.path-mod-workshop .userplan
  1021. td.active{border-left:1px solid #ddd;border-right:1px solid #ddd;background-color:#e7f1c3}.path-mod-workshop .userplan th
  1022. .actions{display:inline}.path-mod-workshop .userplan tr.phasetasks
  1023. li{background-image:url(/theme/image.php/essential/mod_workshop/1489002274/userplan/task-todo);background-position:top left;background-repeat:no-repeat;list-style-type:none;min-height:16px;margin: .3em 0}.dir-rtl.path-mod-workshop .userplan tr.phasetasks
  1024. li{background-position:top right}.path-mod-workshop .userplan tr.phasetasks
  1025. li.completed{background-image:url(/theme/image.php/essential/mod_workshop/1489002274/userplan/task-done)}.path-mod-workshop .userplan tr.phasetasks
  1026. li.fail{background-image:url(/theme/image.php/essential/mod_workshop/1489002274/userplan/task-fail)}.path-mod-workshop .userplan tr.phasetasks
  1027. li.info{background-image:url(/theme/image.php/essential/mod_workshop/1489002274/userplan/task-info)}.path-mod-workshop .userplan tr.phasetasks
  1028. .tasks{list-style:none;margin:3px;padding:0px}.path-mod-workshop .userplan tr.phasetasks
  1029. .title{padding:0px
  1030. 10px 0px 20px}.dir-rtl.path-mod-workshop .userplan tr.phasetasks
  1031. .title{padding:0px
  1032. 20px 0px 10px}.path-mod-workshop .userplan tr.phasetasks
  1033. .details{padding:0px
  1034. 10px 0px 25px;font-size:80%}.dir-rtl.path-mod-workshop .userplan tr.phasetasks
  1035. .details{padding:0px
  1036. 25px 0px 10px}.path-mod-workshop .assessment-full{border:1px
  1037. solid #ddd;margin:0px
  1038. auto 1em auto}.path-mod-workshop .assessment-full
  1039. .header{position:relative;background-color:#ddd;padding:3px;min-height:35px}.path-mod-workshop .assessment-full .header
  1040. .title{font-weight:bold}.path-mod-workshop .assessment-full .header .title,
  1041. .path-mod-workshop .assessment-full .header .reviewer,
  1042. .path-mod-workshop .assessment-full .header .grade,
  1043. .path-mod-workshop .assessment-full .header
  1044. .weight{margin:0px
  1045. 0px 0px 40px}.dir-rtl.path-mod-workshop .assessment-full .header .title,
  1046. .dir-rtl.path-mod-workshop .assessment-full .header .reviewer,
  1047. .dir-rtl.path-mod-workshop .assessment-full .header .grade,
  1048. .dir-rtl.path-mod-workshop .assessment-full .header
  1049. .weight{margin:0px
  1050. 40px 0px 0px}.path-mod-workshop .assessment-full.anonymous .header .title,
  1051. .path-mod-workshop .assessment-full.anonymous .header .reviewer,
  1052. .path-mod-workshop .assessment-full.anonymous .header .grade,
  1053. .path-mod-workshop .assessment-full.anonymous .header
  1054. .weight{margin:0px
  1055. 0px 0px 5px}.path-mod-workshop .assessment-full .header .reviewer
  1056. .picture{position:absolute;top:3px;left:3px}.dir-rtl.path-mod-workshop .assessment-full .header .reviewer
  1057. .picture{right:3px;left:auto}.path-mod-workshop .assessment-full .header
  1058. .actions{position:absolute;top:5px;right:5px;text-align:right}.path-mod-workshop .assessment-full .header .actions .singlebutton,
  1059. .path-mod-workshop .assessment-full .header .actions .singlebutton form,
  1060. .path-mod-workshop .assessment-full .header .actions .singlebutton form
  1061. div{display:inline}.path-mod-workshop .assessment-full .assessment-form-wrapper,
  1062. .path-mod-workshop .assessment-full .overall-feedback-wrapper{margin-top:0.5em;padding:0px
  1063. 1em}.path-mod-workshop .assessment-summary.graded .singlebutton input[type="submit"],
  1064. .path-mod-workshop .example-summary.graded .singlebutton input[type="submit"]{background-color:#e7f1c3}.path-mod-workshop .assessment-summary.notgraded .singlebutton input[type="submit"],
  1065. .path-mod-workshop .example-summary.notgraded .singlebutton input[type="submit"]{background-color:#ffd3d9}.path-mod-workshop .assessment-full .overallfeedback .content,
  1066. .path-mod-workshop .assessment-full .overallfeedback
  1067. .attachments{padding:5px
  1068. 10px}.path-mod-workshop .assessment-full .overallfeedback .attachments .files
  1069. img.icon{margin-right:5px}.path-mod-workshop .assessment-full .overallfeedback .attachments .images
  1070. div{display:inline-block;margin:5px;padding:5px;border:1px
  1071. solid #ddd}.path-mod-workshop .assessmentform
  1072. .description{margin:0px
  1073. 1em}.path-mod-workshop .grading-report{width:100%;margin:1em
  1074. auto 1em auto;font-size:80%;border:1px
  1075. solid #ddd}.path-mod-workshop .grading-report
  1076. .userpicture{margin:0px
  1077. 3px;vertical-align:middle}.path-mod-workshop .grading-report
  1078. del{color:red;font-size:90%;text-decoration:line-through}.path-mod-workshop .grading-report
  1079. ins{color:green;font-weight:bold;text-decoration:underline}.path-mod-workshop .grading-report
  1080. th{white-space:normal}.path-mod-workshop .grading-report
  1081. td{vertical-align:top;border:1px
  1082. solid #ddd}.path-mod-workshop .grading-report tr.published
  1083. td.submission{background-color:#d2ebff}.path-mod-workshop .grading-report tr.published td.submission
  1084. a{font-weight:bold}.path-mod-workshop .grading-report
  1085. .assessmentdetails{white-space:nowrap}.path-mod-workshop .grading-report .receivedgrade span.grade,
  1086. .path-mod-workshop .grading-report .givengrade
  1087. span.gradinggrade{font-weight:bold}.path-mod-workshop .grading-report .submissiongrade.cell,
  1088. .path-mod-workshop .grading-report
  1089. .gradinggrade.cell{text-align:center;font-size:200%;white-space:nowrap}.path-mod-workshop .grading-report .givengrade.null .user,
  1090. .path-mod-workshop .grading-report .receivedgrade.null
  1091. .user{color:#e00}.path-mod-workshop #workshop-viewlet-yourgrades
  1092. .finalgrades{text-align:center}.path-mod-workshop #workshop-viewlet-yourgrades .finalgrades
  1093. .grade{border:1px
  1094. solid #ddd;margin:1em;padding:2em;display:inline-block;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.path-mod-workshop #workshop-viewlet-yourgrades .finalgrades
  1095. .grade.submissiongrade{background-color:#d2ebff}.path-mod-workshop #workshop-viewlet-yourgrades .finalgrades
  1096. .grade.assessmentgrade{background-color:#eee}.path-mod-workshop #workshop-viewlet-yourgrades .finalgrades .grade
  1097. .gradevalue{font-weight:bold;font-size:x-large;margin:10px}#mod-workshop-editform fieldset.fgroup
  1098. *{vertical-align:top}.path-mod-workshop
  1099. .feedback{border:1px
  1100. solid #ddd;margin:0px
  1101. auto 1em auto;width:100%}.path-mod-workshop .feedback
  1102. .header{position:relative;background-color:#ddd;padding:3px;min-height:35px}.path-mod-workshop .feedback .header
  1103. .title{margin:0px
  1104. 0px 0px 40px}.path-mod-workshop .feedback .header
  1105. .picture{position:absolute;top:3px;left:3px}.path-mod-workshop .feedback
  1106. .content{padding:5px
  1107. 10px}.path-mod-workshop
  1108. div.buttonsbar{text-align:center}.path-mod-workshop div.buttonsbar
  1109. .singlebutton{display:inline}.path-mod-workshop
  1110. .toolboxaction{margin-right:1em}.path-mod-workshop .toolboxaction,
  1111. .path-mod-workshop .toolboxaction .singlebutton,
  1112. .path-mod-workshop .toolboxaction .singlebutton form,
  1113. .path-mod-workshop .toolboxaction .singlebutton form
  1114. div{display:inline}.path-mod-workshop div.buttonwithhelp
  1115. div{display:inline}.path-mod-workshop
  1116. #evaluationmethodchooser{margin:2em
  1117. auto;text-align:center}.path-mod-workshop
  1118. .lastmodified{line-height:1.0em}.path-mod-workshop
  1119. .nothingfound{font-size:150%;color:#FF4500}.path-mod-workshop .workshop-risk-dataloss{vertical-align:text-bottom}.block_activity_results{text-align:center}.block_activity_results
  1120. h1{margin:4px;font-size:1.1em}.block_activity_results
  1121. table.grades{text-align:left;width:100%}.block_activity_results table.grades
  1122. .number{text-align:left;width:10%}.block_activity_results table.grades
  1123. .name{text-align:left;width:77%}.block_activity_results table.grades
  1124. .grade{text-align:right}.block_activity_results table.grades
  1125. caption{font-weight:bold;font-size:18px}.dir-rtl .block_activity_results
  1126. table.grades{text-align:right}.dir-rtl .block_activity_results table.grades
  1127. .number{text-align:right}.dir-rtl .block_activity_results table.grades
  1128. .name{text-align:right}.block_blog_tags
  1129. .s20{font-size:1.5em;font-weight:bold}.block_blog_tags
  1130. .s19{font-size:1.5em}.block_blog_tags
  1131. .s18{font-size:1.4em;font-weight:bold}.block_blog_tags
  1132. .s17{font-size:1.4em}.block_blog_tags
  1133. .s16{font-size:1.3em;font-weight:bold}.block_blog_tags
  1134. .s15{font-size:1.3em}.block_blog_tags
  1135. .s14{font-size:1.2em;font-weight:bold}.block_blog_tags
  1136. .s13{font-size:1.2em}.block_blog_tags .s12,
  1137. .block_blog_tags
  1138. .s11{font-size:1.1em;font-weight:bold}.block_blog_tags .s10,
  1139. .block_blog_tags
  1140. .s9{font-size:1.1em}.block_blog_tags .s8,
  1141. .block_blog_tags
  1142. .s7{font-size:1em;font-weight:bold}.block_blog_tags .s6,
  1143. .block_blog_tags
  1144. .s5{font-size:1em}.block_blog_tags .s4,
  1145. .block_blog_tags
  1146. .s3{font-size:0.9em;font-weight:bold}.block_blog_tags .s2,
  1147. .block_blog_tags
  1148. .s1{font-size:0.9em}#page-blocks-community-communitycourse
  1149. .hubscreenshot{float:left}#page-blocks-community-communitycourse
  1150. .hubtitlelink{color:#999}#page-blocks-community-communitycourse
  1151. .hubsmalllogo{padding-left:3px;padding-right:7px;float:left}#page-blocks-community-communitycourse
  1152. .hubtext{display:block;width:68%;padding-left:165px}#page-blocks-community-communitycourse
  1153. .hubimgandtext{display:table}#page-blocks-community-communitycourse
  1154. .hubimage{float:left;display:block;width:100px}#page-blocks-community-communitycourse
  1155. .hubdescriptiontext{}#page-blocks-community-communitycourse
  1156. .hubstats{padding-top:10px}#page-blocks-community-communitycourse .hubstats
  1157. .iconhelp{float:left;padding-right:3px}#page-blocks-community-communitycourse
  1158. .hubadditionaldesc{color:#666;font-size:90%;display:block}#page-blocks-community-communitycourse
  1159. .hubscreenshot{margin-right:10px}#page-blocks-community-communitycourse
  1160. .hubnottrusted{}#page-blocks-community-communitycourse
  1161. .hubtrusted{display:inline}#page-blocks-community-communitycourse
  1162. .hubnottrusted{}#page-blocks-community-communitycourse
  1163. .trustedtr{background-color:#ffe1c3}#page-blocks-community-communitycourse
  1164. .prioritisetr{background-color:#ffd4ff}#page-blocks-community-communitycourse
  1165. .blockdescription{font-size:80%;color:#555}#page-blocks-community-communitycourse
  1166. .trusted{font-size:90%;color:#063;font-weight:normal;font-style:italic}#page-blocks-community-communitycourse
  1167. .additionaldesc{font-size:80%;color:#8B8989}#page-blocks-community-communitycourse .comment-link{font-size:80%;color:#555}#page-blocks-community-communitycourse
  1168. .coursescreenshot{text-align:center;cursor:pointer}#page-blocks-community-communitycourse
  1169. .hubcourseinfo{margin-left:15px}#page-blocks-community-communitycourse
  1170. .coursesitelink{}#page-blocks-community-communitycourse
  1171. .pagingbar{text-align:center}#page-blocks-community-communitycourse
  1172. .coursecomment{float:right}#page-blocks-community-communitycourse
  1173. .courseoperations{margin-top:9px;text-align:center}#page-blocks-community-communitycourse .hubcoursedownload:hover{background-color:#CDC9C9}#page-blocks-community-communitycourse
  1174. .courselinks{float:right;width:180px}#page-blocks-community-communitycourse
  1175. .ratingaggregate{float:left;padding-right:4px}#page-blocks-community-communitycourse
  1176. .hubcourserating{padding-top:3px;font-size:80%;color:#555}#page-blocks-community-communitycourse
  1177. .coursedescription{width:70%;float:left}#page-blocks-community-communitycourse
  1178. .fullhubcourse{margin-bottom:20px}#page-blocks-community-communitycourse
  1179. .hubcoursetitlepanel{margin-bottom:6px}#page-blocks-community-communitycourse
  1180. .hubcourseresult{background:none repeat scroll 0 0 #FFF;clear:both;margin:30px
  1181. auto 0;z-index:90;width:95%;padding:10px
  1182. 10px 10px 10px;border-style:solid;border-width:1px}#page-blocks-community-communitycourse
  1183. .hubcoursetitle{-webkit-box-shadow:rgba(0, 0, 0, 0.546875) 0px 0px 4px;-moz-box-shadow:rgba(0, 0, 0, 0.546875) 0px 0px 4px;background:#8B8989;left:-15px;position:relative;z-index:0;border:0px;margin:0px;outline:0px;padding:0px;vertical-align:baseline;color:#fff;padding-top:6px;padding-bottom:6px;text-shadow:1px 1px 2px rgba(0,0,0,0.2);text-align:left;font-style:italic;font-weight:normal;line-height:1.2em;font-size:140%;width:102%;text-indent:15px}#page-blocks-community-communitycourse
  1184. .hubcoursedownload{display:inline-block;padding:5px
  1185. 8px 6px;color:black;text-decoration:none;-moz-border-radius:6px;-webkit-border-radius:6px;-moz-box-shadow:0 1px 3px rgba(0,0,0,0.6);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.6);border-bottom:1px solid rgba(0,0,0,0.25);position:relative;cursor:pointer;background-color:#EEE9E9;margin-left:6px;font-size:95%;margin-bottom:9px}#page-blocks-community-communitycourse .comment-list
  1186. li{background-color:#FFFAFA !important;-moz-border-radius:6px;-webkit-border-radius:6px;padding-right:4px;padding-bottom:2px}#page-blocks-community-communitycourse
  1187. .ratingcount{color:#8B8989;font-size:80%;vertical-align:top}#page-blocks-community-communitycourse
  1188. .norating{font-weight:bold;color:#8B8989;font-size:80%}#page-blocks-community-communitycourse .star-rating{list-style:none;margin:4px
  1189. 0 4px;padding:0px;width:100px;height:20px;position:relative;background:url(/theme/image.php/essential/core/1489002274/i/star-rating) top left repeat-x;float:left}#page-blocks-community-communitycourse .star-rating
  1190. li{padding:0px;margin:0px;height:20px;width:20px;float:left}#page-blocks-community-communitycourse .star-rating li.current-rating{background:url(/theme/image.php/essential/core/1489002274/i/star-rating) left bottom;position:absolute;height:20px;display:block;text-indent:-9000px;z-index:1}#page-blocks-community-communitycourse
  1191. .nocomments{font-weight:bold;color:#8B8989;font-size:80%}#page-blocks-community-communitycourse
  1192. .hubcommentator{float:left;font-weight:bold}#page-blocks-community-communitycourse
  1193. .hubcommentdate{font-weight:bold}#page-blocks-community-communitycourse
  1194. .hubcommenttext{margin-bottom:10px}#page-blocks-community-communitycourse
  1195. .hubnoscriptcoursecomments{margin-left:5px}#page-blocks-community-communitycourse .yui3-overlay-loading{top:-1000em;left:-1000em;position:absolute;z-index:1000}#page-blocks-community-communitycourse
  1196. .hubcoursecomments{display:inline-block;padding:3px
  1197. 3px 3px 3px;color:white;text-decoration:none;-moz-border-radius:6px;-webkit-border-radius:6px;position:relative;cursor:pointer;background-color:#8B8989;margin-left:0px;font-size:80%;margin-top:15px}#page-blocks-community-communitycourse
  1198. .hubrateandcomment{font-size:80%}#page-blocks-community-communitycourse
  1199. .hubcourseoutcomes{}#page-blocks-community-communitycourse
  1200. .nextlink{text-align:center;margin-top:6px}#page-blocks-community-communitycourse
  1201. .textinfo{text-align:center}#ss-mask{z-index:10;position:fixed;top:0;left:0;bottom:0;right:0;opacity:0.35;filter:alpha(opacity=35);background:#000}.hiddenoverlay{display:none;text-align:center}.imagearrow{font-size:120%;display:inline;cursor:pointer}.imagetitle{display:inline;cursor:pointer}#page-blocks-community-communitycourse .moodle-dialogue-base .moodle-dialogue{-moz-border-radius:12px 12px 12px 12px;-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.6);-webkit-border-radius:12px 12px 12px 12px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.6);border-width:0 0 0 0}#page-blocks-community-communitycourse .moodle-dialogue-base .moodle-dialogue-wrap{-moz-border-radius:12px 12px 0px 0px;-webkit-border-radius:12px 12px 0px 0px;background-color:#FFF;border:1px
  1202. solid #555}#page-blocks-community-communitycourse .moodle-dialogue-base .moodle-dialogue-hd{-moz-border-radius:12px 12px 0 0;-webkit-border-radius:12px 12px 0 0;background-color:#F6F6F6;border:1px
  1203. solid #CCC;overflow:auto;padding:7px
  1204. 6px}#page-blocks-community-communitycourse .moodle-dialogue-base .moodle-dialogue-bd{padding:0px;margin-bottom:-5px}#page-blocks-community-communitycourse .moodle-dialogue-base
  1205. .closebutton{margin-top:4px;margin-right:4px}.block_course_list
  1206. .footer{margin-top:5px}.block_course_list .content
  1207. li{margin-bottom: .3em}.block_course_overview
  1208. .coursechildren{font-weight:normal;font-style:italic}.block_course_overview
  1209. .categorypath{text-align:right}.dir-rtl .block_course_overview
  1210. .categorypath{text-align:left}.block_course_overview
  1211. .content{margin:0
  1212. 20px}.block_course_overview .content
  1213. .notice{margin:5px
  1214. 0}.block_course_overview
  1215. .coursebox{padding:15px;width:auto}.block_course_overview
  1216. .profilepicture{float:left}.dir-rtl.block_course_overview
  1217. .profilepicture{float:right}.block_course_overview
  1218. .welcome_area{width:100%;padding-bottom:5px}.block_course_overview
  1219. .welcome_message{float:left;padding:10px;vertical-align:middle;border-collapse:separate;clear:none}.dir-rtl .block_course_overview
  1220. .welcome_message{float:right}.block_course_overview .content
  1221. h2.title{float:left;margin:0
  1222. 0 .5em 0;position:relative}.dir-rtl .block_course_overview .content
  1223. h2.title{float:right}.block_course_overview
  1224. .course_title{position:relative}.editing .block_course_overview .coursebox
  1225. .cursor{cursor:move;margin-bottom:2px}.editing .block_course_overview
  1226. .move{float:left;padding:2px
  1227. 10px 0 0}.dir-rtl.editing .block_course_overview
  1228. .move{float:right;padding:2px
  1229. 10px}.block_course_overview
  1230. .course_list{width:100%}.block_course_overview
  1231. div.flush{clear:both}.block_course_overview
  1232. .activity_info{clear:both}.dir-rtl .block_course_overview
  1233. .activity_info{margin-right:25px}.block_course_overview
  1234. .activity_overview{padding:2px}.block_course_overview .activity_overview
  1235. img.iconlarge{vertical-align:text-bottom;margin-right:6px}.dir-rtl .block_course_overview .activity_overview
  1236. img.iconlarge{margin-left:6px;margin-right:0}.block_course_overview
  1237. .singleselect{text-align:left;margin:0}.dir-rtl .block_course_overview
  1238. .singleselect{text-align:right}.block_course_overview .content .course_list
  1239. .movehere{margin-bottom:15px}.block_course_summary
  1240. .content{padding:10px}.block_course_summary
  1241. .editbutton{text-align:right}.block_enrolmenttimer .content
  1242. .timerNum{display:inline-block;line-height:30px}.block_enrolmenttimer .content
  1243. .noDateSet{text-align:center}.block_enrolmenttimer .content
  1244. .numberTypeWrapper{display:inline-block}.block_enrolmenttimer .content .numberTypeWrapper
  1245. .timerNum{display:block}.block_enrolmenttimer .content .numberTypeWrapper
  1246. p{font-size:0.65em;margin:0;text-align:center}.block_enrolmenttimer .content
  1247. .timerNumChar{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#000;background:url(/theme/image.php/essential/block_enrolmenttimer/1489002274/background) repeat-x;border-radius:3px;color:#FFF;font-size:1.3em;margin:2px;padding:3px}.block_enrolmenttimer .content
  1248. .seperator{color:#000;display:inline-block;font-weight:bold;line-height:30px;vertical-align:top}.block_enrolmenttimer .content .timer-wrapper{display:table;margin:1em
  1249. auto 0.6em auto}.block_enrolmenttimer .content
  1250. p{margin:0
  1251. 0 10px 0;text-align:center}.block_enrolmenttimer .content .text-wrapper{margin-top:10px}.block_enrolmenttimer .content .text-wrapper .text-desc{font-size:0.65em;margin:0}.block_enrolmenttimer .content .text-wrapper .sub-text{font-size:0.8em}.block_globalsearch
  1252. .searchform{text-align:center}.block_globalsearch
  1253. .footer{text-align:center}.block_lp.block .content
  1254. h3{padding:0;text-transform:none}.block_lp .sub-content{padding:0
  1255. 15px}.block_lp
  1256. ul{list-style:none;margin:0}.block_lp ul
  1257. .more{padding-top:10px}.block_messages
  1258. .content{text-align:left;padding-top:5px}.block_messages .content .list
  1259. li.listentry{clear:both}.block_messages .content .list li.listentry
  1260. .user{float:left;position:relative}.block_messages .content .list li.listentry
  1261. .message{float:right}.block_messages .content
  1262. .info{text-align:center}.block_messages .content
  1263. .footer{clear:both}.dir-rtl .block_messages .content .list li.listentry
  1264. .user{float:right}.dir-rtl .block_messages .content .list li.listentry
  1265. .message{float:left}.block_myprofile
  1266. img.profilepicture{height:100px;width:100px}.block_myprofile
  1267. .myprofileitem.fullname{font-size:1.5em;font-weight:bold}.block_myprofile
  1268. .myprofileitem.edit{text-align:right}.block_navigation .block_tree .depth_1>.tree_item.branch{padding-left:0;background-image:none}.block_navigation .block_tree .depth_1>ul{margin:0}.block_navigation .block_tree
  1269. ul{margin-left:18px}.block_navigation .block_tree
  1270. p.hasicon{text-indent:-21px;padding-left:21px}.block_navigation .block_tree p.hasicon
  1271. img{width:16px;height:16px;margin-top:3px;margin-right:5px;vertical-align:top}.block_navigation .block_tree
  1272. p.hasicon.visibleifjs{display:block}.block_navigation .block_tree
  1273. .tree_item{cursor:pointer;padding-left:0;margin:3px
  1274. 0px;background-position:0 50%;background-repeat:no-repeat}.block_navigation .block_tree
  1275. .tree_item.branch{padding-left:21px}.block_navigation .block_tree
  1276. .active_tree_node{font-weight:bold}.block_navigation .block_tree [aria-expanded="true"]{background-image:url('/theme/image.php/essential/core/1489002274/t/expanded')}.block_navigation .block_tree [aria-expanded="false"]{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed')}.block_navigation .block_tree [aria-expanded="true"].emptybranch{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed_empty')}.block_navigation .block_tree [aria-expanded="false"].loading{background-image:url('/theme/image.php/essential/core/1489002274/i/loading_small')}.block_navigation .block_tree [aria-hidden="false"]{display:block}.block_navigation .block_tree [aria-hidden="true"]{display:none}.ie6 .block_navigation .block_tree
  1277. .tree_item{width:100%}.dir-rtl .block_navigation .block_tree
  1278. p.hasicon{padding-left:0px;padding-right:21px}.dir-rtl .block_navigation .block_tree
  1279. .tree_item{background-position:100% 50%}.dir-rtl .block_navigation .block_tree
  1280. .tree_item.branch{padding-right:21px;padding-left:0}.dir-rtl .block_navigation .block_tree [aria-expanded="false"]{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed_rtl')}.dir-rtl .block_navigation .block_tree [aria-expanded="true"].emptybranch{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed_empty_rtl')}.dir-rtl .block_navigation .block_tree [aria-expanded="false"].loading{background-image:url('/theme/image.php/essential/core/1489002274/i/loading_small')}.dir-rtl .block_navigation .block_tree .tree_item
  1281. img{margin-right:0;margin-left:5px}.dir-rtl .block_navigation .block_tree
  1282. ul{margin:0
  1283. 16px 0 0}.block_online_users .content .list
  1284. li.listentry{clear:both}.block_online_users .content .list li.listentry
  1285. .user{float:left;position:relative}.block_online_users .content .list li.listentry .user
  1286. .userpicture{vertical-align:text-bottom}.block_online_users .content .list li.listentry
  1287. .message{float:right;margin-top:3px}.block_online_users .content
  1288. .info{text-align:center}.dir-rtl .block_online_users .content .list li.listentry
  1289. .user{float:right}.dir-rtl .block_online_users .content .list li.listentry
  1290. .message{float:left}.block_private_files .content
  1291. table{table-layout:fixed;width:100%}.block_private_files .content
  1292. .footer{padding:10px
  1293. 0 0;margin-top: .5em}.block_ranking .rankingTable
  1294. tr.itsme{border:2px
  1295. solid #ffba00}.block_ranking #ranking-tabs
  1296. ul{border:solid #15629F;border-width:0 0 5px}.block_ranking #ranking-tabs ul li
  1297. a{background-color:#fff;margin-right:2px;line-height:1.42857143;border-radius:4px 4px 0 0;padding:7px
  1298. 12px}.block_ranking #ranking-tabs ul .yui3-tab-selected .yui3-tab-label{background:#15629F;border-color:#15629F}.ranking-report
  1299. .groupselector{text-align:center;display:block}.block_ranking .content
  1300. .footer{margin-top:10px;text-align:center}.block_recent_activity .activitydate,
  1301. .block_recent_activity
  1302. .activityhead{text-align:center}.block_recent_activity .unlist
  1303. li{margin-bottom:1em}.block_recent_activity li .head
  1304. .date{float:right}.dir-rtl .block_recent_activity .content
  1305. h3{text-align:right}.block_rss_client .list li:first-child{border-top-width:0}.block_rss_client .list
  1306. li{border-top:1px solid;padding:5px}.block_search_forums
  1307. .searchform{text-align:center}.block_search_forums .searchform
  1308. img{vertical-align:middle}.block_search_forums .searchform
  1309. img.resize{width:1em;height:1.1em}.block_search_forums
  1310. .invisiblefieldset{display:block}.block_settings .block_tree
  1311. ul{margin-left:18px}.block_settings .block_tree
  1312. p.hasicon{text-indent:-21px;padding-left:21px}.block_settings .block_tree p.hasicon
  1313. img{width:16px;height:16px;margin-top:3px;margin-right:5px;vertical-align:top}.block_settings .block_tree
  1314. p.hasicon.visibleifjs{display:block}.block_settings .block_tree
  1315. .tree_item.branch{padding-left:21px}.block_settings .block_tree
  1316. .tree_item{cursor:pointer;margin:3px
  1317. 0px;background-position:0 50%;background-repeat:no-repeat}.block_settings .block_tree
  1318. .active_tree_node{font-weight:bold}.block_settings .block_tree [aria-expanded="true"]{background-image:url('/theme/image.php/essential/core/1489002274/t/expanded')}.block_settings .block_tree [aria-expanded="false"]{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed')}.block_settings .block_tree [aria-expanded="true"].emptybranch{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed_empty')}.block_settings .block_tree [aria-expanded="false"].loading{background-image:url('/theme/image.php/essential/core/1489002274/i/loading_small')}.block_settings .block_tree [aria-hidden="false"]{display:block}.block_settings .block_tree [aria-hidden="true"]{display:none}.ie6 .block_settings .block_tree
  1319. .tree_item{width:100%}.dir-rtl .block_settings .block_tree
  1320. p.hasicon{padding-left:0px;padding-right:21px}.dir-rtl .block_settings .block_tree
  1321. .tree_item{background-position:100% 50%}.dir-rtl .block_settings .block_tree
  1322. .tree_item.branch{padding-right:21px;padding-left:0}.dir-rtl .block_settings .block_tree [aria-expanded="false"]{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed_rtl')}.dir-rtl .block_settings .block_tree [aria-expanded="true"].emptybranch{background-image:url('/theme/image.php/essential/core/1489002274/t/collapsed_empty_rtl')}.dir-rtl .block_settings .block_tree [aria-expanded="false"].loading{background-image:url('/theme/image.php/essential/core/1489002274/i/loading_small')}.dir-rtl .block_settings .block_tree .tree_item
  1323. img{margin-right:0;margin-left:5px}.dir-rtl .block_settings .block_tree
  1324. ul{margin:0
  1325. 16px 0 0}.block_site_main_menu
  1326. li{clear:both}.block_site_main_menu.block.list_block .unlist>li>.column{width:100%;display:table}.block_site_main_menu li
  1327. .buttons{float:right;margin:0;padding:0;border:0;background-color:inherit}.dir-rtl .block_site_main_menu li
  1328. .buttons{float:left}.block_site_main_menu li .buttons a
  1329. img{vertical-align:text-bottom}.block_site_main_menu
  1330. .footer{margin-top:1em}.block_site_main_menu .section_add_menus noscript
  1331. div{display:inline}.block_site_main_menu .mod-indent,
  1332. .block_site_main_menu .main-menu-content{display:table-cell}.block_social_activities
  1333. li{clear:both}.block_social_activities li
  1334. .column{width:100%}.block_social_activities li
  1335. .buttons{float:right;margin:0}.dir-rtl .block_social_activities li
  1336. .buttons{float:left}.block_social_activities li .buttons a
  1337. img{vertical-align:text-bottom}.block_tag_flickr .flickr-photos{padding:3px}.block_tag_youtube .youtube-thumb{padding:3px;padding-bottom:0.5em;display:block;float:left}.block_tag_youtube .yt-video-entry
  1338. li{clear:left}#glossaryfilteroverlayprogress{position:fixed;top:50%;width:100%;text-align:center}.jsenabled
  1339. #MathJax_ZoomFrame{position:absolute}.mediaplugin_html5audio,.mediaplugin_html5video,.mediaplugin_swf,.mediaplugin_flv,.mediaplugin_real,.mediaplugin_youtube,.mediaplugin_vimeo,.mediaplugin_wmp,.mediaplugin_qt{display:block;margin-top:5px;margin-bottom:5px;text-align:center}.mediaplugin.mediaplugin_mp3
  1340. object{display:inline;height:15px;width:180px;margin-left:0.5em}.mp3flowplayer_backgroundColor{color:#000}.editor_atto_content_wrap{background-color:white;color:#333}.editor_atto_content{padding:4px;resize:vertical;overflow:auto}.editor_atto_content_wrap,.editor_atto+textarea{width:100%;padding:0;border:1px
  1341. solid #BBB;border-top:none}.editor_atto+textarea{border-radius:0;resize:vertical;margin-top:-1px}div.editor_atto_toolbar{display:block;background:#F2F2F2;min-height:35px;border:1px
  1342. solid #BBB;width:100%;padding:0
  1343. 0 9px 0}div.editor_atto_toolbar
  1344. button{padding:4px
  1345. 9px;background:none;border:0;margin:0;border-radius:0;cursor:pointer;line-height:initial}div.editor_atto_toolbar button+button{border-left:1px solid #CCC}div.editor_atto_toolbar button[disabled]{opacity: .45;background:none;cursor:default}.editor_atto_toolbar button:hover{background-image:radial-gradient(ellipse at center, #fff 60%,#dfdfdf 100%);background-color:#ebebeb}.editor_atto_toolbar button:active, .editor_atto_toolbar
  1346. button.highlight{background-image:radial-gradient(ellipse at center, #fff 40%,#dfdfdf 100%);background-color:#dfdfdf}div.editor_atto_toolbar button::-moz-focus-inner{border:0;padding:0}div.editor_atto_toolbar button
  1347. img.icon{padding:0px;margin:2px
  1348. 0;vertical-align:text-bottom;width:auto;height:auto}div.editor_atto_toolbar
  1349. div.atto_group{display:inline-block;border:1px
  1350. solid #CCC;border-bottom:1px solid #B3B3B3;border-radius:4px;margin:9px
  1351. 0 0 9px;background:#FFF}.editor_atto_content
  1352. img{resize:both;overflow:auto}.atto_hasmenu{white-space:nowrap}.atto_menuentry
  1353. img{width:16px;height:16px}.atto_menuentry{clear:left}.atto_menuentry h1,
  1354. .atto_menuentry h2,
  1355. .atto_menuentry
  1356. p{margin:4px}.atto_form
  1357. label.sameline{display:inline-block;min-width:10em}.atto_form textarea.fullwidth,
  1358. .atto_form
  1359. input.fullwidth{width:100%}.atto_form{padding-left:30px;padding-right:30px}.atto_form
  1360. label{display:block;margin:0
  1361. 0 5px 0}body.dir-rtl div.editor_atto_toolbar button+button{border-left:0;border-right:1px solid #CCC}body.dir-rtl div.editor_atto_toolbar
  1362. img.icon{padding:0}body.dir-rtl div.editor_atto_toolbar
  1363. div.atto_group{margin:9px
  1364. 9px 0 0}.atto_control{position:absolute;right:-6px;bottom:-6px;display:none;cursor:pointer}.atto_control
  1365. img{background-color:white}div.editor_atto_content:focus .atto_control,
  1366. div.editor_atto_content:hover
  1367. .atto_control{display:block}.editor_atto_menu.yui3-menu-hidden{display:none}.editor_atto_content img:-moz-broken{-moz-force-broken-image-icon:1;min-width:24px;min-height:24px}.moodle-dialogue-base .editor_atto_menu .moodle-dialogue-content .moodle-dialogue-bd{padding:0;z-index:1000}.editor_atto_menu .dropdown-menu>li>a{padding:3px
  1368. 14px}.editor_atto_menu .open ul.dropdown-menu{padding-top:5px;padding-bottom:5px}.editor_atto_wrap{position:relative}.dir-rtl .editor_atto_wrap
  1369. textarea{direction:ltr}.editor_atto_notification{position:absolute;bottom:-1.5em;height:1.5em;margin-top:1px;cursor:pointer}.editor_atto_notification .atto_info,
  1370. .editor_atto_notification
  1371. .atto_warning{display:inline-block;background-color:#F2F2F2;padding:0.5em;padding-left:1em;padding-right:1em;border-bottom-left-radius:1em;border-bottom-right-radius:1em}.editor_atto_notification
  1372. .atto_info{background-color:#F2F2F2}.editor_atto_notification
  1373. .atto_warning{background-color:#FFD700}.editor_atto_toolbar,.editor_atto_content_wrap,.editor_atto+textarea{box-sizing:border-box}.dir-rtl .editor_atto_notification .atto_info,
  1374. .dir-rtl .editor_atto_notification
  1375. .atto_warning{border-bottom-right-radius:1em;border-bottom-left-radius:1em}.dir-ltr
  1376. .editor_atto_notification{right:0}.dir-rtl
  1377. .editor_atto_notification{left:0}@media (max-width: 480px){.mceToolbar
  1378. td{float:left;display:inline-block}.moodleSkin .mceLayout .mceToolbar
  1379. .mceWrap{clear:left;width:100%;height:4px}.moodleSkin .mceLayout .mceToolbar
  1380. .mceNoWrap{clear:none;width:0px}.o2k7Skin tr.mceLast .mceToolbar tr td.mceWrap,
  1381. .o2k7Skin tr.mceFirst .mceToolbar tr
  1382. td.mceWrap{margin-left:-3px}.dir-rtl .o2k7Skin tr.mceLast .mceToolbar tr td.mceWrap,
  1383. .dir-rtl .o2k7Skin tr.mceFirst .mceToolbar tr
  1384. td.mceWrap{margin-left:0px}}.format-singleactivity .tree_item.orphaned
  1385. a{color:red}.course-content
  1386. ul.topics{margin:0}.course-content ul.topics
  1387. li.section{list-style:none;margin:0
  1388. 0 5px 0;padding:0}.course-content ul.topics li.section
  1389. .content{margin:0
  1390. 40px}.course-content ul.topics li.section .left,
  1391. .course-content ul.topics li.section
  1392. .right{width:40px;padding:0
  1393. 6px}.course-content ul.topics li.section .right
  1394. img.icon{padding:0
  1395. 0 4px 0}.course-content ul.topics li.section
  1396. .left{padding-top:22px;text-align:right}.jsenabled .course-content ul.topics li.section .left,
  1397. .jsenabled .course-content ul.topics li.section
  1398. .right{width:auto}.course-content ul.topics li.section .left .section-handle
  1399. img.icon{padding:0;vertical-align:baseline}.course-content ul.topics li.section .section_action_menu .textmenu,
  1400. .course-content ul.topics li.section .section_action_menu .menu-action-text{white-space:nowrap}.course-content
  1401. ul.weeks{margin:0}.course-content ul.weeks
  1402. li.section{list-style:none;margin:0
  1403. 0 5px 0;padding:0}.course-content ul.weeks li.section
  1404. .content{margin:0
  1405. 40px}.course-content ul.weeks li.section .left,
  1406. .course-content ul.weeks li.section
  1407. .right{width:40px;padding:0
  1408. 6px}.course-content ul.weeks li.section .right
  1409. img.icon{padding:0
  1410. 0 4px 0}.course-content ul.weeks li.section
  1411. .left{padding-top:22px;text-align:right}.jsenabled .course-content ul.weeks li.section .left,
  1412. .jsenabled .course-content ul.weeks li.section
  1413. .right{width:auto}.course-content ul.weeks li.section .left .section-handle
  1414. img.icon{padding:0;vertical-align:baseline}.course-content ul.weeks li.section .section_action_menu .textmenu,
  1415. .course-content ul.weeks li.section .section_action_menu .menu-action-text{white-space:nowrap}.dir-rtl.path-report-competency [data-region="competency-breakdown-report"] .row-fluid [class*="span"]{float:right}.dir-rtl.path-report-competency .pull-left{float:right}.dir-rtl.path-report-competency .pull-right{float:left}.dir-rtl.path-report-competency
  1416. dd{margin-right:10px}.dir-rtl.path-report-competency
  1417. ul.inline{margin-right:0}.dir-rtl.path-report-competency .table th,
  1418. .dir-rtl.path-report-competency .table
  1419. td{text-align:right}#page-report-completion-index table#completion-progress{margin-top:20px;margin-bottom:30px}#page-report-completion-index .export-actions{text-align:center;list-style:none}#page-report-completion-index.dir-rtl #completion-progress th
  1420. svg{direction:ltr}.report-eventlist-name{color:#888;font-size:0.75em}.report-eventlist-datatable-table>div>table{width:100%}#page-admin-report-eventlist-index
  1421. dt{float:left;text-align:right;width:20em}#page-admin-report-eventlist-index
  1422. dd{display:block;text-align:left;margin-left:21em}#page-admin-report-eventlist-index dd+dd{clear:left}@media (max-width : 767px){#page-admin-report-eventlist-index
  1423. dt{width:100%;text-align:left}#page-admin-report-eventlist-index
  1424. dd{margin-left:0}#page-admin-report-eventlist-index dd+dd{margin-left:0}}#page-admin-report-eventlist-index.dir-rtl
  1425. dt{float:right;text-align:left;width:20em}#page-admin-report-eventlist-index.dir-rtl
  1426. dd{display:block;text-align:right;margin-right:22em}#page-admin-report-eventlist-index.dir-rtl dd+dd{clear:right}@media (max-width : 767px){#page-admin-report-eventlist-index.dir-rtl
  1427. dt{width:100%;text-align:right}#page-admin-report-eventlist-index.dir-rtl
  1428. dd{margin-right:0em}#page-admin-report-eventlist-index.dir-rtl dd+dd{margin-right:0em}}#page-report-log-index
  1429. .info{margin:10px}#page-report-log-index
  1430. .logselectform{margin:10px
  1431. auto}#page-report-log-user
  1432. .info{margin:10px;text-align:center}#page-report-log-user
  1433. .graph{text-align:center}#page-report-loglive-index
  1434. .info{margin:10px}table.flexible>tbody>tr:nth-child(n).newrow>td{background:#D4D4D4}#page-report-outline-index
  1435. td.numviews{text-align:right}#page-report-outline-index
  1436. tr.section{text-align:center}#page-report-outline-index
  1437. td.lastaccess{font-size:0.8em}#page-report-outline-user .section
  1438. .content{margin-left:30px;margin-right:30px}#page-report-outline-user .section
  1439. h2{margin-top:0}#page-report-outline-user
  1440. .section{margin-left:30px;margin-right:30px;margin-bottom:20px}#page-report-outline-user
  1441. .section{border-width:1px;border-style:solid;padding:10px}#page-report-participation-index
  1442. .participationselectform{margin:10px
  1443. auto}#page-report-participation-index .participationselectform
  1444. label{margin-left:15px;margin-right:5px}#page-report-progress-index #completion-progress th,
  1445. #page-report-progress-index #completion-progress
  1446. td{padding:2px
  1447. 4px;font-weight:normal;border-right:1px solid #EEE}#page-report-progress-index .progress-actions{text-align:center;list-style:none}#page-report-progress-index
  1448. .completion_pagingbar{margin:1em
  1449. 0;text-align:center}#page-report-progress-index
  1450. .completion_prev{display:inline;margin-right:2em}#page-report-progress-index .completion_pagingbar
  1451. p{display:inline;margin:0}#page-report-progress-index
  1452. .completion_next{display:inline;margin-left:2em}#page-report-progress-index.dir-rtl #completion-progress th
  1453. svg{direction:ltr}#page-report-stats-index
  1454. .graph{margin-bottom:1em}.gradeimport_data_area{margin:0px
  1455. 0px 10px;width:475px;height:209px}.path-grade-report-grader
  1456. .gradeparent{position:relative}.path-grade-report-grader .gradeparent .grader-information-tooltip{min-width:200px}.path-grade-report-grader .gradeparent
  1457. .graderreportoverlay{background-color:white;width:auto;padding:10px;font-size:12px;border:1px
  1458. solid #ccc;border-radius:4px}.path-grade-report-grader .gradeparent
  1459. table{border:1px
  1460. solid #ccc;border-collapse:separate;border-spacing:0;border-bottom-width:0;border-right-width:0;margin-bottom:2em}.dir-rtl.path-grade-report-grader .gradeparent
  1461. table{border-left-width:0;border-right-width:1px;max-width:initial}.path-grade-report-grader .gradeparent
  1462. .cell{border:1px
  1463. solid #ccc;border-top-width:0;border-left-width:0;padding:4px
  1464. 5px;vertical-align:middle;text-align:right;white-space:nowrap}.dir-rtl.path-grade-report-grader .gradeparent
  1465. .cell{border-left-width:1px;border-right-width:0;text-align:left}.path-grade-report-grader .gradeparent tr:nth-of-type(even) .cell{background-color:#f9f9f9}.path-grade-report-grader .gradeparent
  1466. .floater{display:none}.path-grade-report-grader .gradeparent
  1467. .floating{display:block}.path-grade-report-grader .gradeparent .heading .cell,
  1468. .path-grade-report-grader .gradeparent .avg .cell,
  1469. .path-grade-report-grader .gradeparent
  1470. .user.cell{font-size:14px;font-weight:normal;text-align:left}.dir-rtl.path-grade-report-grader .gradeparent .heading .cell,
  1471. .dir-rtl.path-grade-report-grader .gradeparent .avg .cell,
  1472. .dir-rtl.path-grade-report-grader .gradeparent
  1473. .user.cell{text-align:right}.path-grade-report-grader .gradeparent .floater
  1474. .cell{background-color:#f9f9f9}.path-grade-report-grader .gradeparent
  1475. .user.cell{min-width:200px;width:200px;white-space:normal;vertical-align:top}.path-grade-report-grader .gradeparent .user.cell
  1476. .userpicture{margin:0
  1477. 4px;border:none;vertical-align:middle}.path-grade-report-grader .gradeparent
  1478. .userfield{font-weight:normal;text-align:left}.dir-rtl.path-grade-report-grader .gradeparent
  1479. .userfield{text-align:right}.path-grade-report-grader .gradeparent .range .header,
  1480. .path-grade-report-grader .gradeparent .avg
  1481. .header{font-weight:bold}.path-grade-report-grader .gradeparent .avg.floating
  1482. .cell{border-top-width:1px}.path-grade-report-grader .gradeparent .avg
  1483. .cell{text-align:right}.dir-rtl.path-grade-report-grader .gradeparent .avg
  1484. .cell{text-align:left}.path-grade-report-grader .gradeparent .heading .cell
  1485. .iconsmall{padding-top:0;padding-bottom:0}.path-grade-report-grader .gradeparent
  1486. .sorticon{margin-left:3px}.dir-rtl.path-grade-report-grader .gradeparent
  1487. .sorticon{margin-left:0;margin-right:3px}.path-grade-report-grader .gradeparent
  1488. .gradevalue{display:inline-block}.path-grade-report-grader
  1489. span.gradepass{color:#298721}.path-grade-report-grader
  1490. span.gradefail{color:#890d0d}.path-grade-report-grader .gradeparent tr:nth-child(n) td.overridden:nth-child(n){background-color:#efd9a4}.path-grade-report-grader .gradeparent tr:nth-child(n) td.ajaxoverridden:nth-child(n){background-color:#ffe3a0}.path-grade-report-grader .gradeparent
  1491. .excludedfloater{font-weight:bold;color:red;font-size:9px;float:left}.dir-rtl.path-grade-report-grader .gradeparent
  1492. .excludedfloater{float:right}.path-grade-report .gradeparent .floater .controls.cell,
  1493. .path-grade-report-grader .gradeparent
  1494. .controls{background-color:#f3ead8}.path-grade-report-grader .gradeparent
  1495. .category{text-align:left}.dir-rtl.path-grade-report-grader .gradeparent
  1496. .category{text-align:right}.path-grade-report-grader .gradeparent
  1497. select{margin:0;padding:0}.path-grade-report-grader .gradeparent
  1498. .text{border:1px
  1499. solid #666;width:auto;margin:0;padding:0;text-align:center}.path-grade-report-grader .gradeparent
  1500. .quickfeedback{border:1px
  1501. dashed #000;width:auto;margin:0;padding:0;margin-left:10px}.dir-rtl.path-grade-report-grader .gradeparent
  1502. .quickfeedback{margin-left:0;margin-right:10px}.path-grade-report-grader .yui3-overlay{border:0;background:none;background-color:initial;min-width:200px}.path-grade-report-grader .yui3-overlay{background-color:white;width:auto;padding:10px;font-size:12px;border:1px
  1503. solid #ccc;border-radius:4px}.path-grade-report-history
  1504. div.gradeparent{overflow-x:scroll}.path-grade-report-history .singlebutton div,
  1505. .path-grade-report-history .singlebutton div input[type="button"]{margin:0}.yui3-gradereport_history_usp-hidden{display:none}.gradereport_history_usp .usp-content{position:relative}.gradereport_history_usp .usp-ajax-content{overflow:auto;border-top:1px solid #ccc;border-bottom:1px solid #ccc}.gradereport_history_usp .usp-ajax-content,
  1506. .gradereport_history_usp .usp-loading-lightbox{height:375px}.gradereport_history_usp .usp-loading-lightbox{background-color:#fff;opacity: .5;position:absolute;text-align:center;width:100%;top:0;left:0}.gradereport_history_usp .usp-loading-lightbox
  1507. img{margin-top:100px;opacity:1}.gradereport_history_usp .usp-search{text-align:center}.gradereport_history_usp .usp-user{width:100%;text-align:left;border-top:1px solid #eee}.gradereport_history_usp .usp-user:nth-child(odd){background-color:#f9f9f9}.gradereport_history_usp .usp-first-added{border-top:1px solid #bbb}.gradereport_history_usp .usp-checkbox{text-align:center;float:left;padding:11px
  1508. 6px 0 6px}.gradereport_history_usp .usp-checkbox input[type=checkbox]{margin:0}.gradereport_history_usp .usp-picture{margin:6px
  1509. 3px 0 3px;float:left}.gradereport_history_usp .usp-userpicture{cursor:pointer}.gradereport_history_usp .usp-user
  1510. .details{margin-left:67px;padding:3px
  1511. 6px 0 6px;word-wrap:break-word}.gradereport_history_usp .usp-user .details
  1512. label{margin:0}.gradereport_history_usp .usp-more-results{padding:5px;border-top:1px solid #bbb}.gradereport_history_usp .usp-finish{padding-top:1em;text-align:center}.gradereport_history_usp .usp-finish
  1513. input{margin:0}.dir-rtl .gradereport_history_usp .usp-search-results .usp-user{text-align:right}.dir-rtl .gradereport_history_usp .usp-picture,
  1514. .dir-rtl .gradereport_history_usp .usp-checkbox{float:right}.dir-rtl .gradereport_history_usp .usp-user
  1515. .details{margin-right:67px;margin-left:0}.dir-rtl .gradereport_history_usp input.usp-search-btn{margin-right:5px}.path-grade-report-singleview
  1516. div.reporttable{text-align:center}.path-grade-report-singleview div.groupselector,
  1517. .path-grade-report-singleview div.reporttable form div.singleview_buttons,
  1518. .path-grade-report-singleview
  1519. div.selectitems{display:block;text-align:right;clear:both}.dir-rtl.path-grade-report-singleview div.groupselector,
  1520. .dir-rtl.path-grade-report-singleview div.reporttable form div.singleview_buttons,
  1521. .dir-rtl.path-grade-report-singleview
  1522. div.selectitems{text-align:left}.path-grade-report-singleview div.singleselect+div.singleselect select,
  1523. .path-grade-report-singleview div.groupselector
  1524. select{margin-right:0px}dir-rtl.path-grade-report-singleview div.singleselect+div.singleselect select,
  1525. dir-rtl.path-grade-report-singleview div.groupselector
  1526. select{margin-right:10px;margin-left:0px}.path-grade-report-singleview div.reporttable div.singleselect form
  1527. div{text-align:center}.path-grade-report-singleview div.reporttable
  1528. table.reporttable{margin:0
  1529. auto 15px auto}.path-grade-report-singleview div.reporttable form
  1530. div{text-align:center}.path-grade-report-singleview
  1531. .singleview_buttons{padding:10px
  1532. 0}.path-grade-report-singleview div.reporttable
  1533. h2{text-align:center}.path-grade-report-singleview input[name^="finalgrade"]{width:50px}.path-grade-report-singleview .reporttable tbody th,
  1534. .path-grade-report-singleview .reporttable tbody
  1535. td.range{white-space:nowrap}.path-grade-report-singleview .reporttable tbody th>*{display:inline-block;vertical-align:middle;margin:0
  1536. 2px}.path-grade-report-singleview
  1537. .itemnav{font-size:small;display:inline;margin-bottom:0.5em}.path-grade-report-singleview
  1538. itemnav.previtem{float:left}.path-grade-report-singleview.dir-rtl
  1539. div.previtem{float:right}.path-grade-report-singleview
  1540. div.nextitem{float:right}.path-grade-report-singleview.dir-rtl
  1541. div.nextitem{float:left}.path-grade-report-singleview
  1542. .reporttable{width:100%}.path-grade-report-singleview .reporttable
  1543. th{text-align:left}.dir-rtl.path-grade-report-singleview .reporttable
  1544. th{text-align:right}.path-grade-report-singleview div.reporttable form
  1545. div.singleview_bulk{display:inline-block;text-align:left;margin-bottom:1em}.dir-rtl.path-grade-report-singleview div.reporttable form
  1546. div.singleview_bulk{text-align:right}.path-grade-report-singleview .singleview_bulk div > *,
  1547. .path-grade-report-singleview .singleview_bulk fieldset>*{display:inline-block;vertical-align:middle;margin:0}.path-grade-report-singleview .singleselect select,
  1548. .path-grade-report-singleview div.reporttable form .singleview_bulk select,
  1549. .path-grade-report-singleview div.reporttable form .singleview_bulk
  1550. input{margin-left:10px;margin-right:10px}.path-grade-report-singleview .singleview_bulk>fieldset{display:block}.path-grade-report-singleview div.reporttable form .singleview_bulk>div.enable{margin-bottom:0.5em;text-align:left}.dir-rtl.path-grade-report-singleview div.reporttable form .singleview_bulk>div.enable{text-align:right}.path-grade-report-user
  1551. #graded_users_selector{float:right;margin-bottom:5px}.path-grade-report-user #graded_users_selector .singleselect
  1552. label{display:inline-block}.path-grade-report-user .user-grade{width:100%;border:1px
  1553. solid}.path-grade-report-user .user-grade thead
  1554. th{vertical-align:bottom}.path-grade-report-user .user-grade
  1555. th{text-align:left}.path-grade-report-user .user-grade
  1556. td{min-width:4.5em;vertical-align:top}.dir-rtl.path-grade-report-user .user-grade
  1557. td{direction:ltr}.dir-rtl.path-grade-report-user table.user-grade{border-collapse:separate}.path-grade-report-user .user-grade
  1558. .b1l{padding:0;width:24px;min-width:24px}.path-grade-report-user .user-grade tbody .column-itemname{padding-left:0;padding-right:8px}.path-grade-report-user .user-grade .column-itemname.item,
  1559. .path-grade-report-user .user-grade
  1560. .gradeitemdescription{font-weight:normal;padding-left:24px}.path-grade-report-user .user-grade .column-itemname.baggt,
  1561. .path-grade-report-user .user-grade .column-itemname.baggb{padding-left:24px}.path-grade-report-user .user-grade .baggt,
  1562. .path-grade-report-user .user-grade
  1563. .baggb{font-weight:bold}.dir-rtl.path-grade-report-user
  1564. #graded_users_selector{float:left}.dir-rtl.path-grade-report-user .user-grade
  1565. th{text-align:right}.dir-rtl.path-grade-report-user .user-grade tbody .column-itemname{padding-right:0;padding-left:8px}.dir-rtl.path-grade-report-user .user-grade .column-itemname.item,
  1566. .dir-rtl.path-grade-report-user .user-grade
  1567. .gradeitemdescription{padding-right:24px}.dir-rtl.path-grade-report-user .user-grade .column-itemname.baggt,
  1568. .dir-rtl.path-grade-report-user .user-grade .column-itemname.baggb{padding-right:24px}.gradingform_guide-regrade{padding:10px;background:#FDD;border:1px
  1569. solid #F00;margin-bottom:10px}.gradingform_guide-restored{padding:10px;background:#FFD;border:1px
  1570. solid #FF0;margin-bottom:10px}.gradingform_guide-error{color:red;font-weight:bold}.gradingform_guide_editform
  1571. .status{font-weight:normal;text-transform:uppercase;font-size:60%;padding:0.25em;border:1px
  1572. solid #EEE}.gradingform_guide_editform
  1573. .status.ready{background-color:#e7f1c3;border-color:#AEA}.gradingform_guide_editform
  1574. .status.draft{background-color:#f3f2aa;border-color:#EE2}.gradingform_guide.editor .criterion .controls,
  1575. .gradingform_guide .criterion .description,
  1576. .gradingform_guide .criterion
  1577. .remark{vertical-align:top}.gradingform_guide.editor .criterion .controls,
  1578. .gradingform_guide.editor .criterion .description,
  1579. .gradingform_guide.editor .criterion
  1580. .remark{padding:3px}.gradingform_guide
  1581. .criteria{height:100%}.gradingform_guide
  1582. .criterion{border:1px
  1583. solid #DDD;overflow:hidden}.gradingform_guide
  1584. .criterion.even{background:#F0F0F0}.gradingform_guide .criterion
  1585. .description{width:100%}.gradingform_guide .criterion .description .criterionmaxscore
  1586. input{width:20px}.gradingform_guide .criterion .description
  1587. .criterionname{font-weight:bold}.gradingform_guide .criterion
  1588. label{font-weight:bold;padding-right:5px}.gradingform_guide
  1589. .plainvalue.empty{font-style:italic;color:#AAA}.gradingform_guide
  1590. .plainvalue.editname{font-weight:bold}.gradingform_guide.editor .criterion.first.last .controls .delete input,
  1591. .gradingform_guide.editor .criterion.first .controls .moveup input,
  1592. .gradingform_guide.editor .criterion.last .controls .movedown
  1593. input{display:none}.gradingform_guide.editor .delete input,
  1594. .gradingform_guide.editor .moveup input,
  1595. .gradingform_guide.editor .movedown
  1596. input{text-indent:-1000em;cursor:pointer;border:none}.gradingform_guide.editor .criterion .controls .delete
  1597. input{width:20px;height:16px;background:transparent url(/theme/image.php/essential/core/1489002274/t/delete) no-repeat center top;margin-top:4px}.gradingform_guide.editor .moveup
  1598. input{width:20px;height:15px;background:transparent url(/theme/image.php/essential/core/1489002274/t/up) no-repeat center top;margin-top:4px}.gradingform_guide.editor .movedown
  1599. input{width:20px;height:15px;background:transparent url(/theme/image.php/essential/core/1489002274/t/down) no-repeat center top;margin-top:4px}.gradingform_guide.editor .addcriterion input,
  1600. .gradingform_guide.editor .addcomment
  1601. input{background:transparent url(/theme/image.php/essential/core/1489002274/t/add) no-repeat;display:block;color:#555;font-weight:bold;text-decoration:none}.gradingform_guide.editor .addcriterion input,
  1602. .gradingform_guide.editor .addcomment
  1603. input{background-position:5px 8px;height:30px;line-height:29px;margin-bottom:14px;padding-left:20px;padding-right:10px}.gradingform_guide .options
  1604. .optionsheading{font-weight:bold;font-size:1.1em;padding-bottom:5px}.gradingform_guide .options
  1605. .option{padding-bottom:2px}.gradingform_guide .options .option
  1606. label{margin-left:5px}.gradingform_guide .options .option
  1607. .value{margin-left:5px;font-weight:bold}.gradingform_guide .criterion
  1608. .description.error{background:#FDD}.gradingform_guide.editor
  1609. .hiddenelement{display:none}.gradingform_guide.editor
  1610. .pseudotablink{background-color:transparent;border:0
  1611. solid;height:1px;width:1px;color:transparent;padding:0;margin:0;position:relative;float:right}.jsenabled .gradingform_guide
  1612. .markingguidecomment{cursor:pointer}.jsenabled .gradingform_guide .markingguidecomment:before{content:url(/theme/image.php/essential/core/1489002274/t/add);padding-right:2px}.dir-rtl.jsenabled .gradingform_guide .markingguidecomment:before{padding-right:0;padding-left:2px}.gradingform_guide
  1613. .commentheader{font-weight:bold;font-size:1.1em;padding-bottom:5px}.jsenabled .gradingform_guide
  1614. .criterionnamelabel{display:none}.jsenabled .gradingform_guide
  1615. .criterionshortname{font-weight:bold}.gradingform_guide
  1616. table{width:100%}.gradingform_guide
  1617. .descriptionreadonly{vertical-align:top}.gradingform_guide
  1618. .criteriondescriptionmarkers{width:300px}.gradingform_guide
  1619. .markingguideremark{margin:0;width:100%;-moz-box-sizing:border-box;box-sizing:border-box}.gradingform_guide
  1620. .criteriondescriptionscore{display:inline}.gradingform_guide .score
  1621. label{display:block}.gradingform_guide .score
  1622. input{margin:0;width:auto}.gradingform_rubric_editform
  1623. .status{font-weight:normal;text-transform:uppercase;font-size:60%;padding:0.25em;border:1px
  1624. solid #EEE}.gradingform_rubric_editform
  1625. .status.ready{background-color:#e7f1c3;border-color:#AEA}.gradingform_rubric_editform
  1626. .status.draft{background-color:#f3f2aa;border-color:#EE2}.gradingform_rubric{overflow:auto;padding-bottom:1.5em;max-width:720px;position:relative}.gradingform_rubric.editor .criterion .controls,
  1627. .gradingform_rubric .criterion .description,
  1628. .gradingform_rubric .criterion .levels,
  1629. .gradingform_rubric.editor .criterion .addlevel,
  1630. .gradingform_rubric .criterion .remark,
  1631. .gradingform_rubric .criterion .levels
  1632. .level{vertical-align:top}.gradingform_rubric.editor .criterion .controls,
  1633. .gradingform_rubric .criterion .description,
  1634. .gradingform_rubric.editor .criterion .addlevel,
  1635. .gradingform_rubric .criterion .remark,
  1636. .gradingform_rubric .criterion .levels
  1637. .level{padding:3px}.gradingform_rubric
  1638. .criteria{height:100%}.gradingform_rubric
  1639. .criterion{border:1px
  1640. solid #DDD;overflow:hidden}.gradingform_rubric
  1641. .criterion.even{background:#F0F0F0}.gradingform_rubric .criterion
  1642. .description{width:150px;font-weight:bold}.gradingform_rubric .criterion .levels
  1643. table{width:100%;height:100%}.gradingform_rubric .criterion .levels,
  1644. .gradingform_rubric .criterion .levels table,
  1645. .gradingform_rubric .criterion .levels table
  1646. tbody{padding:0;margin:0}.gradingform_rubric .criterion .levels
  1647. .level{border-left:1px solid #DDD;max-width:150px}.gradingform_rubric .criterion .levels .level .level-wrapper{position:relative}.gradingform_rubric .criterion .levels
  1648. .level.last{border-right:1px solid #DDD}.gradingform_rubric
  1649. .plainvalue.empty{font-style:italic;color:#AAA}.gradingform_rubric.editor .criterion .levels .level
  1650. .delete{position:absolute;right:0}.gradingform_rubric .criterion .levels .level
  1651. .score{font-style:italic;color:#575;font-weight:bold;margin-top:5px;white-space:nowrap}.gradingform_rubric .criterion .levels .level .score
  1652. .scorevalue{padding-right:5px}.gradingform_rubric.editor .criterion.first .controls .moveup input,
  1653. .gradingform_rubric.editor .criterion.last .controls .movedown
  1654. input{display:none}.gradingform_rubric .criterion .levels
  1655. .level.currentchecked{background:#fff0f0}.gradingform_rubric .criterion .levels
  1656. .level.checked{background:#d0ffd0;border:1px
  1657. solid #555}.gradingform_rubric.evaluate .criterion .levels .level:hover{background:#30ff30}.gradingform_rubric.editor .delete input,
  1658. .gradingform_rubric.editor .duplicate input,
  1659. .gradingform_rubric.editor .moveup input,
  1660. .gradingform_rubric.editor .movedown
  1661. input{text-indent:-1000em;cursor:pointer;border:none}.gradingform_rubric.editor .criterion .controls .delete
  1662. input{width:12px;height:12px;background:transparent url(/theme/image.php/essential/core/1489002274/t/delete) no-repeat center top;margin: .3em .3em 0 .3em}.gradingform_rubric.editor .criterion .controls .duplicate
  1663. input{width:12px;height:12px;background:transparent url(/theme/image.php/essential/core/1489002274/t/copy) no-repeat center top;margin: .3em .3em 0 .3em}.gradingform_rubric.editor .levels .level .delete
  1664. input{width:12px;height:16px;background:transparent url(/theme/image.php/essential/core/1489002274/t/delete) no-repeat center center}.dir-rtl .gradingform_rubric.editor .levels .level .delete
  1665. input{margin-right: .45em;margin-left:0}.gradingform_rubric.editor .moveup
  1666. input{width:12px;height:12px;background:transparent url(/theme/image.php/essential/core/1489002274/t/up) no-repeat center top;margin: .3em .3em 0 .3em}.gradingform_rubric.editor .movedown
  1667. input{width:12px;height:12px;background:transparent url(/theme/image.php/essential/core/1489002274/t/down) no-repeat center top;margin: .3em .3em 0 .3em}.gradingform_rubric.editor .addcriterion input,
  1668. .gradingform_rubric.editor .addlevel
  1669. input{background:transparent url(/theme/image.php/essential/core/1489002274/t/add) no-repeat top left;display:block;color:#555;font-weight:bold;text-decoration:none}.gradingform_rubric.editor .addcriterion
  1670. input{background-position:5px 8px;height:30px;line-height:29px;margin-bottom:14px;padding-left:20px;padding-right:10px}.gradingform_rubric.editor .addlevel
  1671. input{background-position:5px 5px;height:25px;line-height:24px;margin-bottom:45px;padding-left:18px;padding-right:8px}.gradingform_rubric .options
  1672. .optionsheading{font-weight:bold;font-size:1.1em;padding-bottom:5px}.gradingform_rubric .options
  1673. .option{padding-bottom:2px}.gradingform_rubric .options .option
  1674. label{margin-left:5px}.gradingform_rubric .options .option
  1675. .value{margin-left:5px;font-weight:bold}.gradingform_rubric .criterion
  1676. .levels.error{border:1px
  1677. solid red}.gradingform_rubric .criterion .description.error,
  1678. .gradingform_rubric .criterion .levels .level .definition.error,
  1679. .gradingform_rubric .criterion .levels .level
  1680. .score.error{background:#FDD}.gradingform_rubric-regrade{padding:10px;background:#FDD;border:1px
  1681. solid #F00;margin-bottom:10px}.gradingform_rubric-restored{padding:10px;background:#FFD;border:1px
  1682. solid #FF0;margin-bottom:10px}.gradingform_rubric-error{color:red;font-weight:bold}.gradingform_rubric.editor
  1683. .hiddenelement{display:none}.gradingform_rubric.editor
  1684. .pseudotablink{background-color:transparent;border:0
  1685. solid;height:1px;width:1px;color:transparent;padding:0;margin:0;position:relative;float:right}.path-admin-mnet-service-enrol
  1686. .singlebutton{text-align:center}.path-admin-mnet-service-enrol table.remotehosts,
  1687. .path-admin-mnet-service-enrol table.otherenrolledusers,
  1688. .path-admin-mnet-service-enrol
  1689. table.remotecourses{margin:0px
  1690. auto 1em auto}.path-admin-mnet-service-enrol table.remotecourses
  1691. th.categoryname{text-align:left;background-color:#f6f6f6}.path-admin-mnet-service-enrol table.remotecourses
  1692. td.c1{font-weight:bold}.path-admin-mnet-service-enrol table.remotecourses th.categoryname
  1693. img{margin-right:1em}.path-admin-mnet-service-enrol
  1694. .collapsibleregioncaption{font-size:110%;font-weight:bold;text-align:center}.path-admin-mnet-service-enrol
  1695. .collapsibleregioninner{border:1px
  1696. solid #ddd;padding:1em}.path-admin-mnet-service-enrol
  1697. .collapsibleregion.remotecourse.summary{margin:0px
  1698. 10em}.path-admin-mnet-service-enrol
  1699. .roleassigntable{margin:1em
  1700. auto}.repository_alfresco .fp-toolbar .fp-tb-search{width:auto}.repository_alfresco .fp-toolbar .fp-tb-search .alfresco-workplace{width:140px;height:32px;padding:2px
  1701. 1px 1px 1px;background-color:#fff;border-radius:4px;border-color:#bbb}.qbehaviour_deferredcbm_slightlyunderconfident,.qbehaviour_deferredcbm_slightlyoverconfident{font-weight:bold;color:#600}.qbehaviour_deferredcbm_underconfident,.qbehaviour_deferredcbm_overconfident{font-weight:bold;color:#c00}.qbehaviour_deferredcbm_judgementok{font-weight:bold;color:#080}.qbehaviour_deferredcbm_actual_percentage{font-weight:bold}.qbehaviour_deferredcbm_summary_heading{margin:0}.que.deferredcbm .certaintychoices input[type="radio"]{margin-left:0.5em}.que.deferredcbm .certaintychoices
  1702. label{white-space:nowrap}#page-admin-tool-assignmentupgrade-listnotupgraded .tool_assignmentupgrade_upgradetable
  1703. .c0{display:none}#page-admin-tool-assignmentupgrade-listnotupgraded.jsenabled .tool_assignmentupgrade_upgradetable
  1704. .c0{display:table-cell}#page-admin-tool-assignmentupgrade-listnotupgraded .tool_assignmentupgrade_upgradetable tr.selectedrow
  1705. td{background-color:#fec}#page-admin-tool-assignmentupgrade-listnotupgraded .tool_assignmentupgrade_upgradetable tr.unselectedrow
  1706. td{background-color:white}#page-admin-tool-assignmentupgrade-listnotupgraded .tool_assignmentupgrade_paginationform
  1707. .hidden{display:none}.steps-definitions{border-style:solid;border-width:1px;border-color:#BBB;padding:5px;margin:auto;width:50%}.steps-definitions
  1708. .step{margin:10px
  1709. 0px 10px 0px}.steps-definitions
  1710. .stepdescription{color:#bf8c12}.steps-definitions
  1711. .steptype{color:#1467a6;margin-right:5px}.steps-definitions
  1712. .stepregex{color:#060}.path-admin-tool-capability
  1713. .comparisontable{margin-top:150px}.path-admin-tool-capability .comparisontable th,
  1714. .path-admin-tool-capability .comparisontable
  1715. td{vertical-align:middle;padding:0.4em 0.5em 0.3em}.path-admin-tool-capability .comparisontable thead
  1716. th{vertical-align:bottom;background:none}.path-admin-tool-capability .comparisontable thead th
  1717. div{position:relative}.path-admin-tool-capability .comparisontable thead th div>a{position:absolute;top:-1.75em;left:1em;width:150px;text-align:left;margin-bottom:1em;text-indent:-1.45em;-webkit-transform-origin:top left;-moz-transform-origin:top left;-ms-transform-origin:top left;-o-transform-origin:top left;-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-ms-transform:rotate(315deg);-o-transform:rotate(315deg)}.path-admin-tool-capability .comparisontable tbody
  1718. th{background-color:#EEE;text-align:right;border:1px
  1719. solid #DFDFDF}.path-admin-tool-capability .comparisontable tbody th
  1720. span{display:block;color:#666;font-size:80%}.path-admin-tool-capability .comparisontable tbody
  1721. td{border:1px
  1722. solid #DFDFDF}.path-admin-tool-capability .comparisontable
  1723. .inherit{color:#666}.path-admin-tool-capability .comparisontable
  1724. .allow{background-color:#060;font-weight:bold;color:white}.path-admin-tool-capability .comparisontable
  1725. .prevent{background-color:#ad6704;font-weight:bold;color:white}.path-admin-tool-capability .comparisontable
  1726. .prohibit{background-color:#800;font-weight:bold;color:white}.path-admin-tool-customlang .langselectorbox,
  1727. .path-admin-tool-customlang fieldset.buttonsbar,
  1728. .path-admin-tool-customlang
  1729. .menu{margin:5px
  1730. auto;text-align:center}.path-admin-tool-customlang .menu .singlebutton,
  1731. .path-admin-tool-customlang .menu .singlebutton form,
  1732. .path-admin-tool-customlang .menu .singlebutton form
  1733. div{display:inline}.path-admin-tool-customlang
  1734. .mform.filterform{width:70%;margin-left:auto;margin-right:auto}.path-admin-tool-customlang .mform.filterform .fitem
  1735. .fitemtitle{width:30%}.path-admin-tool-customlang .mform.filterform .fitem
  1736. .felement{width:60%;margin-left:31%}.path-admin-tool-customlang
  1737. #translator{width:100%}.path-admin-tool-customlang #translator .standard,
  1738. .path-admin-tool-customlang #translator
  1739. .local{min-width:35%}.path-admin-tool-customlang #translator
  1740. .customized{background-color:#e7f1c3}.path-admin-tool-customlang #translator
  1741. .customized.outdated{background-color:#f3f2aa}.path-admin-tool-customlang #translator
  1742. .modified{background-color:#ffd3d9}.path-admin-tool-customlang #translator
  1743. .customized.modified{background-color:#d2ebff}.path-admin-tool-customlang #translator
  1744. textarea{width:100%;min-height:4em}.path-admin-tool-customlang #translator
  1745. .placeholderinfo{text-align:center;border:1px
  1746. dotted #ddd;background-color:#f6f6f6;margin-top:0.5em}#page-admin-tool-customlang-index
  1747. .continuebutton{margin-top:1em}.path-admin-tool-customlang #translator
  1748. .standard.master.cell.c2{word-break:break-all}.path-admin-tool-filetypes .generaltable .c0,
  1749. .path-admin-tool-filetypes .generaltable .c1,
  1750. .path-admin-tool-filetypes .generaltable .c2,
  1751. .path-admin-tool-filetypes .generaltable
  1752. th{white-space:nowrap}.path-admin-tool-filetypes .generaltable .deleted .c0
  1753. img{opacity:0.2}.path-admin-tool-filetypes .generaltable .deleted .c0
  1754. span{text-decoration:line-through}.path-admin-tool-filetypes .generaltable
  1755. .nonstandard{font-weight:bold}.path-admin-tool-filetypes .form-overridden{display:inline-block;margin-bottom:1em;padding:4px
  1756. 6px}.path-admin-tool-health
  1757. div#healthnoproblemsfound{width:60%;margin:auto;padding:1em;border:1px
  1758. solid black;-moz-border-radius:6px}.path-admin-tool-health
  1759. dl.healthissues{width:60%;margin:auto}.path-admin-tool-health dl.critical dt,
  1760. .path-admin-tool-health dl.critical
  1761. dd{background-color:#a71501}.path-admin-tool-health dl.significant dt,
  1762. .path-admin-tool-health dl.significant
  1763. dd{background-color:#d36707}.path-admin-tool-health dl.annoyance dt,
  1764. .path-admin-tool-health dl.annoyance
  1765. dd{background-color:#dba707}.path-admin-tool-health dl.notice dt,
  1766. .path-admin-tool-health dl.notice
  1767. dd{background-color:#e5db36}.path-admin-tool-health dt.solution,
  1768. .path-admin-tool-health dd.solution,
  1769. .path-admin-tool-health
  1770. div#healthnoproblemsfound{background-color:#5BB83E !important}.path-admin-tool-health dl.healthissues dt,
  1771. .path-admin-tool-health dl.healthissues
  1772. dd{margin:0px;padding:1em;border:1px
  1773. solid black}.path-admin-tool-health dl.healthissues
  1774. dt{font-weight:bold;border-bottom:0;padding-bottom:0.5em}.path-admin-tool-health dl.healthissues
  1775. dd{border-top:0;padding-top:0.5em;margin-bottom:10px}.path-admin-tool-health dl.healthissues dd
  1776. form{margin-top:0.5em;text-align:right}.path-admin-tool-health
  1777. form#healthformreturn{text-align:center;margin:2em}.path-admin-tool-health dd.solution
  1778. p{padding:0px;margin:1em
  1779. 0px}.path-admin-tool-health dd.solution
  1780. li{margin-top:1em}#page-admin-tool-installaddon-index
  1781. #installfromrepobox{text-align:center;padding-top:2em;padding-bottom:2em}#page-admin-tool-installaddon-index #installfromrepobox
  1782. .singlebutton{display:inline-block}#page-admin-tool-installaddon-index #installfromrepobox .singlebutton input[type=submit]{padding:1em}#page-admin-tool-langimport-index .generalbox
  1783. table{margin:auto;width:100%}#page-admin-tool-langimport-index .generalbox,
  1784. #page-admin-tool-langimport-index .generalbox
  1785. table{text-align:center}.path-admin-tool-lp [data-region="managecompetencies"] ul li,
  1786. .path-admin-tool-lp [data-region="plans"] ul li,
  1787. .path-admin-tool-lp [data-region="competencymovetree"] ul li,
  1788. .path-admin-tool-lp [data-region="competencylinktree"] ul
  1789. li{list-style-type:none}.path-admin-tool-lp
  1790. .progresstext{display:inline-block;vertical-align:top}.path-admin-tool-lp
  1791. .progress{width:100%;display:inline-block}.path-admin-tool-lp .progress
  1792. .bar{min-width:3em}.dir-rtl.path-admin-tool-lp .progress
  1793. .bar{float:right}.path-admin-tool-lp [data-region="managecompetencies"] ul[data-enhance="tree"],
  1794. .path-admin-tool-lp [data-region="plans"] ul[data-enhance="tree"],
  1795. .path-admin-tool-lp [data-region="competencylinktree"] ul[data-enhance="linktree"],
  1796. .path-admin-tool-lp [data-region="competencymovetree"] ul[data-enhance="movetree"]{border:1px
  1797. solid #ccc;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);transition:border linear .2s,box-shadow linear .2s;border-radius:4px;padding-left:20px;padding-right:20px;margin-left:10px;margin-right:10px}.path-admin-tool-lp [data-region="managecompetencies"] ul,
  1798. .path-admin-tool-lp [data-region="plans"] ul,
  1799. .path-admin-tool-lp [data-region="competencylinktree"] ul,
  1800. .path-admin-tool-lp [data-region="competencymovetree"] ul{cursor:pointer}.path-admin-tool-lp [data-region="competencylinktree"] ul li>span,
  1801. .path-admin-tool-lp [data-region="competencymovetree"] ul li>span,
  1802. .path-admin-tool-lp [data-region="plans"] ul li>span,
  1803. .path-admin-tool-lp [data-region="managecompetencies"] ul li>span{padding-top:2px;padding-bottom:2px;padding-left:4px;padding-right:4px;border-radius:4px}.path-admin-tool-lp [data-region="competencylinktree"] ul [aria-selected="true"]>span,
  1804. .path-admin-tool-lp [data-region="competencymovetree"] ul [aria-selected="true"]>span,
  1805. .path-admin-tool-lp [data-region="plans"] ul [aria-selected="true"]>span,
  1806. .path-admin-tool-lp [data-region="managecompetencies"] ul [aria-selected="true"]>span{background-color:#dfdfdf}.path-admin-tool-lp [data-region="competencylinktree"] ul [tabindex="0"]>span,
  1807. .path-admin-tool-lp [data-region="competencymovetree"] ul [tabindex="0"]>span,
  1808. .path-admin-tool-lp [data-region="plans"] ul [tabindex="0"]>span,
  1809. .path-admin-tool-lp [data-region="managecompetencies"] ul [tabindex="0"]>span{border:2px
  1810. solid #0070a8}.path-admin-tool-lp [data-region="filtercompetencies"] input{margin-left:10px}.dir-rtl.path-admin-tool-lp [data-region="managecompetencies"] .row-fluid [class*="span"]{float:right}.path-admin-tool-lp [data-region="link-buttons"],
  1811. .path-admin-tool-lp [data-region="move-buttons"]{text-align:center}.path-admin-tool-lp [data-region="competencylinktree"]>ul{overflow-y:auto;height:400px}.dir-rtl.path-admin-tool-lp [data-region="filtercompetencies"] input{margin-right:10px}.path-admin-tool-lp
  1812. span.currentdragtarget{border:1px
  1813. dashed}.path-admin-tool-lp
  1814. .competencyactionsmenu{display:inline-block;vertical-align:text-top}.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-base"]{display:table;width:100%}.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-outcome"],
  1815. .path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-type"]{display:table-row}.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-outcome"] label,
  1816. .path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-type"] label{padding-right:10px}.dir-rtl.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-outcome"] label,
  1817. .dir-rtl.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-type"] label{padding-left:10px;padding-right:0}.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-outcome"] label,
  1818. .path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-outcome"] select,
  1819. .path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-type"] label,
  1820. .path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-type"] select{display:table-cell}.path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-outcome"] select,
  1821. .path-admin-tool-lp [data-region="competencyruleconfig"] [data-region="rule-type"] select,
  1822. .path-admin-tool-lp [data-region="competencylinktree"] select{width:100%}.path-admin-tool-lp [data-region] .generaltable.fullwidth{clear:both}.path-admin-tool-lp .competency-rule-points{margin-top:10px}.path-admin-tool-lp .competency-rule-points table
  1823. input{margin-bottom:0}.path-admin-tool-lp .competency-rule-points tr[data-competency] th{font-weight:normal}.path-admin-tool-lp .competency-rule-points input[type="number"]{width:50px}.competency-heading{margin-bottom:15px}.competency-heading
  1824. h4{margin:0}.tool-lp-menu{margin:0}.tool-lp-menu
  1825. li{float:left;display:inline;position:relative;list-style-type:none;white-space:nowrap}.tool-lp-sub-menu{position:absolute;list-style:none;margin:0;top:-10px}.tool-lp-sub-menu
  1826. li{float:none}.tool-lp-menu .tool-lp-sub-menu[aria-hidden=false]{display:block}.tool-lp-menu ul[aria-hidden=true]{display:none}.tool-lp-menu
  1827. .caret{margin:8px}.tool-lp-menu.tool-lp-menu-open-left .tool-lp-sub-menu{margin-left:-120px}.dir-rtl .tool-lp-menu.tool-lp-menu-open-left .tool-lp-sub-menu{margin-left:0px;margin-right:-120px}.tool-lp-menu .tool-lp-sub-menu .menu-focus
  1828. a{color:#fff;text-decoration:none;background-color:#00699e;background-image:linear-gradient(to bottom,#0070a8,#005f8f);background-repeat:repeat-x}input[type="radio"].tool_lp_scale_default,input[type="checkbox"].tool_lp_scale_proficient{margin-top:0px}.user-evidence-documents{margin:10px
  1829. 20px;list-style:none}.user-evidence-competencies,
  1830. .user-evidence-documents
  1831. li{margin-bottom:5px;word-break:break-all}[data-region="user-evidence-list"] .user-evidence-competencies,
  1832. [data-region="user-evidence-list"] .user-evidence-documents{margin:0;list-style:none}.user-competency-course-navigation
  1833. select{display:none}.user-competency-course-navigation{width:240px}.user-competency-course-navigation
  1834. span{max-width:100%;overflow:hidden}.competency-grader
  1835. textarea{width:100%;max-width:100%;box-sizing:border-box}.dir-rtl.path-admin-tool-lp .pull-left{float:right}.dir-rtl.path-admin-tool-lp .pull-right{float:left}.dir-rtl.path-admin-tool-lp
  1836. dd{margin-right:10px}.dir-rtl.path-admin-tool-lp
  1837. ul.inline{margin-right:0}#page-admin-tool-messageinbound-index .handler-function{display:block;padding:0
  1838. 0.5em;color:#888;font-size:0.75em}#page-admin-tool-messageinbound-index .state,
  1839. #page-admin-tool-messageinbound-index
  1840. .edit{text-align:center}.path-admin-tool-profiling .profilingruntable
  1841. .label{font-weight:bold}.path-admin-tool-profiling
  1842. .profiling_worse{color:red}.path-admin-tool-profiling
  1843. .profiling_better{color:green}.path-admin-tool-profiling
  1844. .profiling_same{color:dimgrey}.path-admin-tool-profiling .profiling_important,
  1845. .path-admin-tool-profiling .flexible
  1846. .referencerun{font-weight:bold}.path-admin-tool-profiling
  1847. .flexible{margin-left:auto;margin-right:auto}#page-admin-tool-task-scheduledtasks .task-class{display:block;padding:0
  1848. 0.5em;color:#888;font-size:0.75em}[data-region="displaytemplateexample"]{border-radius:4px;border:1px
  1849. inset #e3e3e3;padding:1em}.path-admin-tool-xmldb a[name="lastused"]{padding-top:50px}.assignfeedback_editpdf_widget .toolbar
  1850. ul{display:none}.assignfeedback_editpdf_widget .toolbar
  1851. li{list-style-type:none}.assignfeedback_editpdf_widget
  1852. .drawingcanvas{position:relative;min-width:817px;min-height:400px;cursor:crosshair;background-repeat:no-repeat;background-color:#ccc;margin-left:auto;margin-right:auto;box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 20px rgba(0,0,0,.2)}.assignfeedback_editpdf_widget .moodle-dialogue-bd
  1853. .drawingregion{position:inherit}.assignfeedback_editpdf_widget .drawingregion[data-currenttool=drag] .drawingcanvas{cursor:move}.assignfeedback_editpdf_widget .drawingregion[data-currenttool=select] .drawingcanvas{cursor:pointer}.assignfeedback_editpdf_widget
  1854. .drawingregion{border:1px
  1855. solid #ccc;left:1em;right:1em;top:52px;bottom:0px;position:absolute;overflow:auto;background-color:#ccc}.assignfeedback_editpdf_widget{user-select:none;-moz-user-select:none;-webkit-user-select:none;-o-user-select:none}.assignfeedback_editpdf_widget
  1856. .pageheader{background-color:#ebebeb;border-bottom:1px solid #ccc;padding:0px;padding-left:20px;padding-right:20px;min-height:50px;height:52px;overflow:auto}.moodle-dialogue-base .moodle-dialogue.assignfeedback_editpdf_widget .moodle-dialogue-bd{padding:0px}.assignfeedback_editpdf_widget
  1857. .assignfeedback_editpdf_unsavedchanges.haschanges{display:inline-block}.assignfeedback_editpdf_widget
  1858. .assignfeedback_editpdf_unsavedchanges{display:none;position:absolute;left:20px;top:60px}.dir-rtl .assignfeedback_editpdf_widget
  1859. .assignfeedback_editpdf_unsavedchanges{float:right}.yui3-colourpicker-hidden,.yui3-commentsearch-hidden,.yui3-commentmenu-hidden{display:none}.assignfeedback_editpdf_widget .pageheader button
  1860. img{padding-top:3px;vertical-align:top}.assignfeedback_editpdf_widget .pageheader button:active{background-color:#ccc}.assignfeedback_editpdf_widget .pageheader select,
  1861. .assignfeedback_editpdf_widget .pageheader
  1862. button{background:none;padding:4px
  1863. 7px;border:0px;border-radius:0px;margin:0px;height:30px;line-height:30px;vertical-align:top;cursor:pointer}.assignfeedback_editpdf_widget .pageheader
  1864. select{vertical-align:top;-webkit-appearance:none;-moz-appearance:menulist-text;background-color:#fff;padding:0px
  1865. 10px}.assignfeedback_editpdf_widget .pageheader select::-ms-expand{display:none}.assignfeedback_editpdf_widget .pageheader .navigation button + button,
  1866. .assignfeedback_editpdf_widget .pageheader .toolbar button + button,
  1867. .assignfeedback_editpdf_widget .pageheader .navigation select + button,
  1868. .assignfeedback_editpdf_widget .pageheader .toolbar select+button{border-left:1px solid #ccc;border-right:0px}.assignfeedback_editpdf_widget .pageheader .navigation
  1869. button{border-right:1px solid #ccc}.assignfeedback_editpdf_widget .pageheader .toolbar,
  1870. .assignfeedback_editpdf_widget .pageheader .navigation-search,
  1871. .assignfeedback_editpdf_widget .pageheader
  1872. .navigation{border:1px
  1873. solid #ccc;border-bottom-color:#b3b3b3;border-radius:4px;margin:10px
  1874. 4px;background-color:white;height:30px;line-height:30px;padding:0px}.assignfeedback_editpdf_commentsearch
  1875. ul{max-height:400px;overflow-y:auto;padding:1em}.assignfeedback_editpdf_commentsearch ul li
  1876. pre{background-color:#efefef}.assignfeedback_editpdf_commentsearch ul li pre:hover{background-color:#ddd}.assignfeedback_editpdf_commentsearch ul
  1877. li{line-height:0px;margin:2px}.assignfeedback_editpdf_commentsearch a
  1878. pre{font-family:helvetica;margin:0px;padding:4px}.assignfeedback_editpdf_widget .navigation-search,
  1879. .assignfeedback_editpdf_widget
  1880. .navigation{float:left}.dir-rtl .assignfeedback_editpdf_widget .navigation-search,
  1881. .dir-rtl .assignfeedback_editpdf_widget
  1882. .navigation{float:right}.assignfeedback_editpdf_widget .toolbar
  1883. button{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}.assignfeedback_editpdf_widget
  1884. .toolbar{float:right}.dir-rtl .assignfeedback_editpdf_widget
  1885. .toolbar{float:left}.assignfeedback_editpdf_widget .navigation,
  1886. .assignfeedback_editpdf_widget .navigation-search,
  1887. .assignfeedback_editpdf_widget
  1888. .toolbar{display:inline-block}.assignfeedback_editpdf_colourpicker
  1889. ul{margin:0px}.assignfeedback_editpdf_commentmenu
  1890. li.quicklist_comment{width:150px}.assignfeedback_editpdf_commentmenu li.quicklist_comment
  1891. a{white-space:nowrap;display:inline-block;max-width:130px;overflow:hidden;text-overflow:ellipsis}.assignfeedback_editpdf_commentmenu
  1892. a.delete_quicklist_comment{float:right}.dir-rtl .assignfeedback_editpdf_commentmenu
  1893. a.delete_quicklist_comment{float:left}.assignfeedback_editpdf_dropdown
  1894. button{border:0px;background:none;padding:6px
  1895. 7px;border-radius:0px;border-top:1px solid #ccc}.assignfeedback_editpdf_dropdown li:first-child
  1896. button{border-top:0px}.moodle-dialogue-base .moodle-dialogue.assignfeedback_editpdf_dropdown .moodle-dialogue-wrap{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;margin-left:0px;margin-right:0px;margin-top:0px;border-radius:4px}.moodle-dialogue-base .moodle-dialogue.assignfeedback_editpdf_dropdown .moodle-dialogue-bd{padding:0px}.assignfeedback_editpdf_dropdown .moodle-dialogue-hd,
  1897. .assignfeedback_editpdf_dropdown .moodle-dialogue-ft{display:none}.assignfeedback_editpdf_menu li
  1898. hr{margin:0px}.assignfeedback_editpdf_menu li
  1899. a{text-decoration:none;color:#555;margin:10px}.assignfeedback_editpdf_menu li:hover,
  1900. .assignfeedback_editpdf_menu li:hover a,
  1901. .assignfeedback_editpdf_menu li a:hover{background-color:#ebebeb;background-image:radial-gradient(ellipse at center, #fff 60%,#dfdfdf 100%)}ul.assignfeedback_editpdf_menu{margin:0px}.assignfeedback_editpdf_menu
  1902. li{list-style-type:none;margin:0px;border-radius:4px}.assignfeedback_editpdf_menu li
  1903. img{height:auto}.assignfeedback_editpdf_menu li
  1904. button{margin:0px;background:none}.assignfeedback_editpdf_widget .pageheader button:hover{background-color:#ebebeb;background-image:radial-gradient(ellipse at center, #fff 60%,#dfdfdf 100%)}.assignfeedback_editpdf_widget .pageheader button.assignfeedback_editpdf_selectedbutton:hover,
  1905. .assignfeedback_editpdf_widget .pageheader
  1906. button.assignfeedback_editpdf_selectedbutton{background-color:#dfdfdf;background-image:radial-gradient(ellipse at center, #fff 40%,#dfdfdf 100%)}.assignfeedback_editpdf_widget .commentdrawable
  1907. img{padding:1px}.assignfeedback_editpdf_widget .commentdrawable
  1908. a{float:right;position:relative;left:-17px;top:2px;height:14px;background-color:white;border-left:1px solid #ccc;border-bottom:1px solid #ccc;line-height:14px}.dir-rtl .assignfeedback_editpdf_widget .commentdrawable
  1909. a{float:left;left:none;right:-17px;border-left:0px;border-right:1px solid #ccc}.assignfeedback_editpdf_widget .commentdrawable
  1910. textarea{padding:4px;padding-right:20px;resize:none;overflow:hidden;color:black;border:2px
  1911. solid #ccc;border-radius:4px;font-size:16px;font-family:helvetica;min-height:1.2em}.assignfeedback_editpdf_widget
  1912. .commentdrawable{display:inline-block}.dir-rtl .assignfeedback_editpdf_widget .commentdrawable
  1913. textarea{padding-left:20px;padding-right:4px}.assignfeedback_editpdf_widget .drawingcanvas .loading
  1914. .progressbarlabel{text-align:center}.hideoverflow{overflow:hidden;position:relative}@media (max-width: 960px){.assignfeedback_editpdf_widget
  1915. .pageheader{height:104px}.assignfeedback_editpdf_widget
  1916. .drawingregion{top:104px}}@media (max-width: 767px){.assignfeedback_editpdf_widget
  1917. .drawingregion{position:relative;margin-bottom:1em;top:0}.assignfeedback_editpdf_widget
  1918. .pageheader{height:auto}}@media (max-width: 480px){.assignfeedback_editpdf_widget
  1919. .pageheader{padding-left:5px;padding-right:5px}}#page-mod-quiz-report
  1920. #manualgradingform{width:100%}#page-mod-quiz-report #manualgradingform.mform
  1921. br{clear:none}#page-mod-quiz-report #manualgradingform.mform .clearfix:after{clear:none}#page-mod-quiz-report #manualgradingform
  1922. .que{margin-bottom:0.7em}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper,
  1923. .path-mod-workshop .assessmentform.rubric #id_rubric-grid-wrapper{border:none}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper legend,
  1924. .path-mod-workshop .assessmentform.rubric #id_rubric-grid-wrapper
  1925. legend{display:none}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper th,
  1926. .path-mod-workshop .mform.frozen #id_rubric-grid-wrapper td,
  1927. .path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper th,
  1928. .path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper
  1929. td{border:1px
  1930. solid #ddd;padding:5px;vertical-align:top}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper,
  1931. .path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper
  1932. .criterion{text-align:center}.path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper
  1933. .fitem{text-align:center}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper .fitem .fitemtitle,
  1934. .path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper .fitem
  1935. .fitemtitle{display:none}.path-mod-workshop #id_rubric-grid-wrapper .rubric-grid{margin-left:auto;margin-right:auto}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper .fitem .felement,
  1936. .path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper .fitem
  1937. .felement{width:100%;margin-left:auto;margin-right:auto}.path-mod-workshop .mform.frozen #id_rubric-grid-wrapper .fitem
  1938. .felement{border:none}.path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper .fitem .felement
  1939. span{display:block;text-align:center}.path-mod-workshop .assessmentform.rubric.grid #id_rubric-grid-wrapper .fitem .felement span
  1940. label{display:block;text-align:center}.path-mod-workshop .mform.frozen .fitem.description.rubric + .fitem .fitemtitle,
  1941. .path-mod-workshop .assessmentform.rubric.list #id_rubric-grid-wrapper .fitem
  1942. .fitemtitle{display:none}.path-mod-workshop .mform.frozen .fitem.description.rubric + .fitem .fitemtitle + .felement,
  1943. .path-mod-workshop .assessmentform.rubric.list .fitem
  1944. .felement{width:auto;border:none}.path-mod-workshop .assessmentform.rubric.list .fitem .felement span
  1945. input{display:block;float:left}.path-mod-workshop .assessmentform.rubric.list .fitem .felement.fgroup span
  1946. label{display:block;margin-left:30px}.path-mod-workshop .manual-allocator
  1947. .allocations{margin:0px
  1948. auto;width:100%}.path-mod-workshop .manual-allocator .allocations tbody tr:nth-of-type(odd){background-color:#eee}.path-mod-workshop .manual-allocator .allocations tbody tr:nth-of-type(odd).highlightreviewerof,
  1949. .path-mod-workshop .manual-allocator .allocations tbody tr:nth-of-type(odd).highlightreviewedby{background-color:inherit}.path-mod-workshop .manual-allocator .allocations .peer
  1950. .image{margin-right:5px;vertical-align:middle}.path-mod-workshop .manual-allocator .allocations .reviewedby .image,
  1951. .path-mod-workshop .manual-allocator .allocations .reviewerof
  1952. .image{margin-right:3px;vertical-align:middle}.path-mod-workshop .manual-allocator .allocations .highlightreviewedby .reviewedby,
  1953. .path-mod-workshop .manual-allocator .allocations .highlightreviewerof
  1954. .reviewerof{background-color:#fff3d2}.path-mod-workshop .manual-allocator .allocations tr
  1955. td{vertical-align:top;padding:5px}.path-mod-workshop .manual-allocator .allocations tr td
  1956. ul{margin:0px}.path-mod-workshop .manual-allocator .allocations tr td ul
  1957. li{list-style:none}.path-mod-workshop .manual-allocator .allocations tr
  1958. td.peer{border-left:1px solid #ccc;border-right:1px solid #ccc}.path-mod-workshop .manual-allocator .allocations .reviewedby .info,
  1959. .path-mod-workshop .manual-allocator .allocations .peer .info,
  1960. .path-mod-workshop .manual-allocator .allocations .reviewerof
  1961. .info{font-size:80%;color:#888;font-style:italic}.path-mod-workshop .manual-allocator .allocations .peer
  1962. .submission{font-size:90%;margin-top:1em}.path-mod-workshop .random-allocator
  1963. .warning{width:100%;margin:0px
  1964. auto 15px auto}.accessibilitywarnings
  1965. img{max-width:32px;max-height:32px}.atto_backcolor_button .dropdown-menu{min-width:inherit}.atto_charmap_selector
  1966. button{width:2em;padding:0
  1967. 3px}@media (max-width: 768px){.toolbarbreak{display:none}}.atto_emoticon_map
  1968. ul{padding:0;margin:0;display:table;width:100%}.atto_emoticon_map
  1969. li{display:table-row;white-space:nowrap}.atto_emoticon_map li
  1970. div{display:table-cell;padding:0
  1971. 1em}.atto_equation_library .yui3-tabview-list{border:none}.atto_equation_library .yui3-tab-selected .yui3-tab-label, .yui3-skin-sam #atto_equation_library .yui3-tab-selected .yui3-tab-label:focus, .yui3-skin-sam #atto_equation_library .yui3-tab-selected .yui3-tab-label:hover{background:none;color:black;border-top-left-radius:4px;border-top-right-radius:4px}.atto_equation_library
  1972. button{margin:0.25%;min-width:12%}#page-admin-setting-atto_equation_settings .form-defaultinfo{max-height:10em;overflow:auto;padding:5px;min-width:206px}.atto_form
  1973. .atto_equation_preview{margin-bottom:0px}.atto_fontcolor_button .dropdown-menu{min-width:inherit}.atto_image_preview{width:100%;height:100%;margin-left:auto;margin-right:auto}.atto_image_preview_box{max-height:200px;margin-bottom:1em;overflow:auto}.editor_atto_content
  1974. img{cursor:pointer}.atto_image_size{display:inline-block}.atto_image_size input[type=checkbox]{margin-left:1em;margin-right:1em}.atto_image_size input[type=text]{width:3em}.atto_image_size
  1975. label{display:inline-block}.atto_image_button_text-top{vertical-align:text-top;margin:0
  1976. 0.5em}.atto_image_button_middle{vertical-align:middle;margin:0
  1977. 0.5em}.atto_image_button_text-bottom{vertical-align:text-bottom;margin:0
  1978. 0.5em}.atto_image_button_text-top.img-responsive,.atto_image_button_middle.img-responsive,.atto_image_button_text-bottom.img-responsive{max-width:calc(100% - 1em)}.atto_image_button_left{float:left;margin:0
  1979. 0.5em 0 0;max-width:calc(100% - 1em)}.atto_image_button_right{float:right;margin:0
  1980. 0 0 0.5em;max-width:calc(100% - 1em)}#atto_managefiles_manageform
  1981. #id_deletefileshdr{display:none}#atto_managefiles_manageform.has-unused-files
  1982. #id_deletefileshdr{display:block}#atto_managefiles_manageform
  1983. #id_missingfileshdr{display:none}#atto_managefiles_manageform.has-missing-files
  1984. #id_missingfileshdr{display:block}div.editor_atto_content td,
  1985. div.editor_atto_content th,
  1986. div.editor_atto_content
  1987. caption{border:1px
  1988. dashed #BBB;position:relative;min-width:30px;height:13px}div.editor_atto_content
  1989. caption{height:auto}div.availablecolors{max-width:55%;display:inline-block;vertical-align:middle}div.availablecolors label:not(.hideborder){border:1px
  1990. solid #ddd}div.availablecolors
  1991. label{border-radius:4px;display:inline-block;font-size:0.1em;padding:2px;padding-left:22px}div.availablecolors label input[type="radio"]{float:none;margin:0;margin-left:-15px}input[name="bordersize"],input[name="width"]{margin-right:0.3em}#tinymce_managefiles_manageform.hasunusedfiles
  1992. .managefilesstatus{display:none}#tinymce_managefiles_manageform.hasmissingfiles
  1993. .managefilesstatus{display:inline}#tinymce_managefiles_manageform
  1994. #id_deletefiles{display:none}#tinymce_managefiles_manageform.hasunusedfiles
  1995. #id_deletefiles{display:block}#tinymce_managefiles_manageform #id_deletefiles
  1996. .felement.fcheckbox{display:none}#tinymce_managefiles_manageform #id_deletefiles
  1997. .felement.fcheckbox.isunused{display:block}.empty-region-side-post #block-region-side-post,.empty-region-side-pre #block-region-side-pre,.jsenabled.docked-region-side-post #block-region-side-post,.jsenabled.docked-region-side-pre #block-region-side-pre,.layout-option-nocoursefooter .course-content-footer,.layout-option-nocourseheader .course-content-header,.layout-option-nofooter #page-footer,.layout-option-noheader #page-header,.layout-option-nonavbar #page-navbar{display:none}.content-only #region-main.span9,.empty-region-side-post #region-bs-main-and-post.span9 #region-main.span8,.empty-region-side-post #region-bs-main-and-pre.span9,.empty-region-side-pre #region-bs-main-and-post.span9,.jsenabled.docked-region-side-post #region-bs-main-and-post.span9 #region-main.span8,.jsenabled.docked-region-side-post #region-bs-main-and-pre.span9,.jsenabled.docked-region-side-pre #region-bs-main-and-post.span9{width:100%}.empty-region-side-pre #region-bs-main-and-pre.span9 #region-main,.jsenabled.docked-region-side-pre #region-bs-main-and-pre.span9 #region-main{float:none;width:100%}.empty-region-side-pre #region-bs-main-and-post.span9 #region-main.span8,.jsenabled.docked-region-side-pre #region-bs-main-and-post.span9 #region-main.span8{float:right}.content-only #region-main,.content-only #region-main-box,.empty-region-side-post.used-region-side-pre #region-main-box,.empty-region-side-pre.used-region-side-post #region-main,.jsenabled.docked-region-side-post.empty-region-side-post.used-region-side-pre #region-main-box,.jsenabled.docked-region-side-pre.empty-region-side-pre.used-region-side-post #region-main{width:100%}.empty-region-side-post.used-region-side-pre #region-main.span8,.jsenabled.docked-region-side-post.used-region-side-pre #region-main.span8{width:74.46808511%}.empty-region-side-post.used-region-side-pre #block-region-side-pre.span4,.jsenabled.docked-region-side-post.used-region-side-pre #block-region-side-pre.span4{width:23.40425532%}.dir-ltr,.dir-rtl .mdl-right,.mdl-left{text-align:left}.dir-rtl,.dir-rtl .mdl-left,.mdl-right{text-align:right}#add,#remove,.centerpara,.mdl-align{text-align:center}.dimmed_category,.dimmed_category a,.dimmed_text,.dimmed_text a,.dimmed_text a:link,.dimmed_text a:visited,.usersuspended,.usersuspended a,.usersuspended a:link,.usersuspended a:visited,a.dimmed,a.dimmed:link,a.dimmed:visited,a.dimmed_text,a.dimmed_text:link,a.dimmed_text:visited{color:inherit;font-style:italic}.block .list,.block .list li,.inline-list,.inline-list li,.section li.activity,.section li.movehere,.tabtree li,.unlist,.unlist
  1998. li{list-style:none;margin:0;padding:0}.inline,.inline-list
  1999. li{display:inline}.notifytiny{font-size:10.5px}.notifytiny li,.notifytiny
  2000. td{font-size:100%}.notifyproblem,.red{color:#b94a48}.green,.notifysuccess{color:#468847}.highlight{background:#d9edf7}.reportlink{text-align:right}a.autolink.glossary:hover{cursor:help}.collapsibleregioncaption{white-space:nowrap}.pagelayout-mydashboard.jsenabled
  2001. .collapsibleregioncaption{cursor:pointer}.collapsibleregioncaption
  2002. img{vertical-align:middle}.jsenabled .hiddenifjs,.visibleifjs{display:none}.jsenabled
  2003. .visibleifjs{display:inline}.jsenabled
  2004. .collapsibleregion{overflow:hidden}.jsenabled .collapsed
  2005. .collapsibleregioninner{visibility:hidden}.collapsible-actions{display:none;text-align:right}.dir-rtl .collapsible-actions{text-align:left}.jsenabled .collapsible-actions{display:block}.collapsible-actions
  2006. .collapseexpand{padding-left:20px;background:url(/theme/image.php/essential/core/1489002274/t/collapsed) 2px center no-repeat}.dir-rtl .collapsible-actions
  2007. .collapseexpand{padding-right:20px;padding-left:0;background:url(/theme/image.php/essential/core/1489002274/t/collapsed_rtl) right center no-repeat}.collapsible-actions .collapse-all,.dir-rtl .collapsible-actions .collapse-all{background-image:url(/theme/image.php/essential/core/1489002274/t/expanded)}.yui-overlay .yui-widget-bd{background-color:#FFEE69;border:1px
  2008. solid #A6982B;border-top-color:#D4C237;color:#000;left:0;padding:2px
  2009. 5px;position:relative;top:0;z-index:1}.clearer{background:0 0;border-width:0;clear:both;display:block;height:1px;margin:0;padding:0}.bold,.errorbox .title,.pagingbar .thispage,.pagingbar .title,.warning{font-weight:700}img.resize{height:1em;width:1em}.block img.resize,.breadcrumb
  2010. img.resize{height:.9em;width:.8em}img.icon{height:16px;vertical-align:text-bottom;width:16px;padding-right:6px}.dir-rtl
  2011. img.icon{padding-left:6px;padding-right:0}img.iconsmall{height:12px;vertical-align:middle;width:12px}.helplink img,img.iconhelp{height:16px;padding-left:3px;vertical-align:text-bottom;width:16px}h1 img.icon,h1 img.iconhelp,h2 img.icon,h2 img.iconhelp,h3 img.icon,h3 img.iconhelp,h4 img.icon,h4 img.iconhelp,h5 img.icon,h5 img.iconhelp,h6 img.icon,h6
  2012. img.iconhelp{vertical-align:middle;padding:4px}.dir-rtl .helplink img,.dir-rtl
  2013. img.iconhelp{padding-right:3px;padding-left:0}img.iconlarge{height:24px;width:24px;vertical-align:middle}img.iconsort{vertical-align:text-bottom;padding-left:.3em;margin-bottom:.15em}.dir-rtl
  2014. img.iconsort{padding-right:.3em;padding-left:0}img.icontoggle{height:17px;vertical-align:middle;width:50px}img.iconkbhelp{height:17px;width:49px}.dir-rtl img.icon-post,img.icon-pre{padding-right:3px;padding-left:0}.dir-rtl img.icon-pre,img.icon-post{padding-left:3px;padding-right:0}.boxaligncenter{margin-left:auto;margin-right:auto}.boxalignright{margin-left:auto;margin-right:0}.boxalignleft{margin-left:0;margin-right:auto}.boxwidthnarrow{width:30%}.boxwidthnormal{width:50%}.boxwidthwide{width:80%}.headermain{font-weight:700}#maincontent{display:block;height:1px;overflow:hidden}img.uihint{cursor:help}#addmembersform
  2015. table{margin-left:auto;margin-right:auto}table.flexible
  2016. .emptyrow{display:none}img.emoticon{vertical-align:middle;width:15px;height:15px}form.popupform,form.popupform
  2017. div{display:inline}.arrow_button
  2018. input{overflow:hidden}.action-icon
  2019. img.smallicon{vertical-align:text-bottom;margin:0
  2020. .3em}.no-overflow{overflow:auto;padding-bottom:1px}.pagelayout-report .no-overflow{overflow:visible}.no-overflow>.generaltable{margin-bottom:0}.accesshide{position:absolute;left:-10000px;font-weight:400;font-size:1em}.dir-rtl
  2021. .accesshide{top:-30000px;left:auto}div.hide,span.hide{display:none}a.skip,a.skip-block{position:absolute;top:-1000em;font-size:.85em;text-decoration:none}a.skip-block:active,a.skip-block:focus,a.skip:active,a.skip:focus{position:static;display:block}.skip-block-to{display:block;height:1px;overflow:hidden}.addbloglink{text-align:center}.blog_entry
  2022. .audience{text-align:right;padding-right:4px}.blog_entry
  2023. .tags{margin-top:15px}.blog_entry .tags .action-icon
  2024. img.smallicon{height:16px;width:16px}.blog_entry
  2025. .content{margin-left:43px}#page-group-index
  2026. #groupeditform{text-align:center}#doc-contents
  2027. h1{margin:1em
  2028. 0 0}#doc-contents
  2029. ul{margin:0;padding:0;width:90%}#doc-contents ul
  2030. li{list-style-type:none}.groupmanagementtable
  2031. td{vertical-align:top}.groupmanagementtable #existingcell,.groupmanagementtable
  2032. #potentialcell{width:42%}.groupmanagementtable
  2033. #buttonscell{width:16%}.groupmanagementtable #buttonscell p.arrow_button
  2034. input{width:auto;min-width:80%;margin:0
  2035. auto}.groupmanagementtable #addselect_wrapper,.groupmanagementtable
  2036. #removeselect_wrapper{width:100%}.groupmanagementtable #addselect_wrapper label,.groupmanagementtable #removeselect_wrapper
  2037. label{font-weight:400}.dir-rtl .groupmanagementtable
  2038. p{text-align:right}#group-usersummary{width:14em}.groupselector{margin-top:3px;margin-bottom:3px;display:inline-block}.groupselector
  2039. label{display:inline-block}.dataformatselector{margin:1em
  2040. 0}.dataformatselector
  2041. label{display:inline-block;margin:0
  2042. 5px 10px 0;line-height:30px;vertical-align:top}.loginbox{margin:15px;overflow:visible}.loginbox.twocolumns{margin:15px}.loginbox .subcontent,.loginbox
  2043. h2{margin:5px;padding:10px;text-align:center}.loginbox .loginpanel
  2044. .desc{margin:15px
  2045. 0 5px;padding:0}.loginbox .signuppanel
  2046. .subcontent{text-align:left}.dir-rtl .loginbox .signuppanel
  2047. .subcontent{text-align:right}.loginbox
  2048. .loginsub{margin-left:0;margin-right:0}.loginbox .forgotsub,.loginbox .guestsub,.loginbox
  2049. .potentialidps{margin:5px
  2050. 12%}.loginbox .potentialidps
  2051. .potentialidplist{margin-left:40%}.loginbox .potentialidps .potentialidplist
  2052. div{text-align:left}.loginbox
  2053. .loginform{margin-top:1em;text-align:left}.loginbox .loginform .form-label{float:left;text-align:right;width:49%;white-space:nowrap}.loginbox .loginform .form-input{float:right;width:50%}.loginbox .loginform .form-input
  2054. input{width:6em}.loginbox
  2055. .signupform{margin-top:1em;text-align:center}.loginbox.twocolumns .loginpanel,.loginbox.twocolumns
  2056. .signuppanel{width:48%;border:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;float:left;min-height:30px}.dir-rtl .loginbox.twocolumns .loginpanel,.dir-rtl .loginbox.twocolumns
  2057. .signuppanel{float:right}.loginbox .potentialidp
  2058. .smallicon{vertical-align:text-bottom;margin:0
  2059. .3em}.notepost{margin-bottom:1em}.notepost
  2060. .userpicture{float:left;margin-right:5px}.notepost .content,.notepost
  2061. .footer{clear:both}.notesgroup{margin-left:20px}.path-my .coursebox
  2062. .overview{margin:15px
  2063. 30px 10px}.path-my .coursebox
  2064. .info{float:none;margin:0}.mod_introbox{padding:10px}table.mod_index{width:100%}.comment-ctrl{font-size:12px;display:none;margin:0;padding:0}.comment-ctrl
  2065. h5{margin:0;padding:5px}.comment-area{max-width:400px;padding:5px}.comment-area
  2066. textarea{width:100%;overflow:auto}.comment-area
  2067. textarea.fullwidth{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.comment-area
  2068. .fd{text-align:right}.comment-meta
  2069. span{color:gray}.comment-link
  2070. img{vertical-align:text-bottom}.comment-list{font-size:11px;overflow:auto;list-style:none;padding:0;margin:0}.comment-list
  2071. li{margin:2px
  2072. 2px 5px;list-style:none;clear:both;padding:.3em;position:relative}.comment-list
  2073. li.first{display:none}.comment-paging{text-align:center}.comment-paging
  2074. .pageno{padding:2px}.comment-paging
  2075. .curpage{border:1px
  2076. solid #CCC}.comment-message
  2077. .picture{width:20px;float:left}.dir-rtl .comment-message
  2078. .picture{float:right}.comment-message
  2079. .text{margin:0;padding:0}.comment-message .text
  2080. p{padding:0;margin:0
  2081. 18px 0 0}.comment-delete{position:absolute;top:0;right:0;margin:.3em}.dir-rtl .comment-delete{position:absolute;left:0;right:auto;margin:.3em}.comment-link,.comment-report-selectall{display:none}.jsenabled .comment-link{display:block}.jsenabled
  2082. .showcommentsnonjs{display:none}.jsenabled .comment-report-selectall{display:inline}.completion-expired{background:#f2dede}.completion-expected{font-size:10.5px}.completion-identifyfield,.completion-sortchoice{font-size:10.5px;vertical-align:bottom}.completion-progresscell{text-align:right}.completion-expired .completion-expected{font-weight:700}img.user-image{height:100px;width:100px}#tag-search-box{text-align:center;margin:10px
  2083. auto}.path-tag .tag-index-items
  2084. .tagarea{border:1px
  2085. solid #E3E3E3;border-radius:4px;padding:10px;margin-top:10px}.path-tag .tag-index-items .tagarea
  2086. h3{display:block;padding:3px
  2087. 0 10px;margin:0
  2088. 0 10px;font-size:1.1em;font-weight:700;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase;word-wrap:break-word;border-bottom:solid 1px #E3E3E3}.path-tag .tagarea .controls:after,.path-tag .tagarea .controls:before,.path-tag .tagarea .taggeditems:after,.path-tag .tagarea .taggeditems:before{display:table;content:"";line-height:0}.path-tag .tagarea .controls:after,.path-tag .tagarea .taggeditems:after{clear:both}.path-tag .tag-backtoallitems,.path-tag .tagarea
  2089. .controls{text-align:center}.path-tag .tagarea .controls
  2090. .gotopage.nextpage{float:right}.path-tag .tagarea .controls
  2091. .gotopage.prevpage{float:left}.path-tag .tagarea .controls
  2092. .exclusivemode{display:inline-block}.dir-rtl.path-tag .tagarea .controls
  2093. .gotopage.nextpage{float:left}.dir-rtl.path-tag .tagarea .controls
  2094. .gotopage.prevpage{float:right}.path-tag .tagarea .controls.controls-bottom{margin-top:5px}.path-tag .tagarea .controls .gotopage.nextpage::after{padding-right:5px;padding-left:5px;content:"»"}.path-tag .tagarea .controls .gotopage.prevpage::before{padding-right:5px;padding-left:5px;content:"«"}span.flagged-tag,span.flagged-tag a,tr.flagged-tag,tr.flagged-tag
  2095. a{color:#b94a48}.tag-management-table td,.tag-management-table
  2096. th{vertical-align:middle;padding:4px}.tag-management-table .inplaceeditable.inplaceeditingon
  2097. input{width:150px}.path-admin-tag
  2098. .addstandardtags{float:right}.path-admin-tag .addstandardtags
  2099. img{margin:0
  2100. 5px}.dir-rtl.path-admin-tag
  2101. .addstandardtags{float:left}.path-tag .tag-relatedtags{padding-top:10px}.path-tag .tag-management-box{text-align:right}.path-tag .tag-index-toc{padding:10px;text-align:center}.path-tag .tag-index-toc li,.path-tag .tag-management-box
  2102. li{margin-left:5px;margin-right:5px}.path-tag .tag-management-box li
  2103. a.edittag{background-image:url(/theme/image.php/essential/core/1489002274/i/settings)}.path-tag .tag-management-box li
  2104. a.flagasinappropriate{background-image:url(/theme/image.php/essential/core/1489002274/i/flagged)}.path-tag .tag-management-box li
  2105. a.removefrommyinterests{background-image:url(/theme/image.php/essential/core/1489002274/t/delete)}.path-tag .tag-management-box li
  2106. a.addtomyinterests{background-image:url(/theme/image.php/essential/core/1489002274/t/add)}.path-tag .tag-management-box li
  2107. a{background-repeat:no-repeat;background-position:left;padding-left:17px}.tag_feed.media-list .media
  2108. .itemimage{float:left}.dir-rtl .tag_feed.media-list .media
  2109. .itemimage{float:right}.tag_feed.media-list .media .itemimage
  2110. img{height:35px;width:35px}.tag_feed.media-list .media .media-body{padding-right:10px;padding-left:10px}.tag_feed .media .muted
  2111. a{color:inherit;font-style:italic}.tag_cloud{text-align:center}.tag_cloud .inline-list
  2112. li{padding:0
  2113. .2em}.tag_cloud
  2114. .tag_overflow{margin-top:1em;font-style:italic}.tag_cloud
  2115. .s20{font-size:2.7em}.tag_cloud
  2116. .s19{font-size:2.6em}.tag_cloud
  2117. .s18{font-size:2.5em}.tag_cloud
  2118. .s17{font-size:2.4em}.tag_cloud
  2119. .s16{font-size:2.3em}.tag_cloud
  2120. .s15{font-size:2.2em}.tag_cloud
  2121. .s14{font-size:2.1em}.tag_cloud
  2122. .s13{font-size:2em}.tag_cloud
  2123. .s12{font-size:1.9em}.tag_cloud
  2124. .s11{font-size:1.8em}.tag_cloud
  2125. .s10{font-size:1.7em}.tag_cloud
  2126. .s9{font-size:1.6em}.tag_cloud
  2127. .s8{font-size:1.5em}.tag_cloud
  2128. .s7{font-size:1.4em}.tag_cloud
  2129. .s6{font-size:1.3em}.tag_cloud
  2130. .s5{font-size:1.2em}.tag_cloud
  2131. .s4{font-size:1.1em}.tag_cloud
  2132. .s3{font-size:1em}.tag_cloud
  2133. .s2{font-size:.9em}.tag_cloud
  2134. .s1{font-size:.8em}.tag_cloud
  2135. .s0{font-size:.7em}.tag_list
  2136. ul{display:inline}.tag_list .tagmorelink,.tag_list.hideoverlimit
  2137. .overlimit{display:none}.tag_list.hideoverlimit
  2138. .tagmorelink{display:inline}.tag_list.hideoverlimit
  2139. .taglesslink{display:none}#webservice-doc-generator
  2140. td{text-align:left;border:0
  2141. solid #000}.smartselect{position:absolute}.smartselect
  2142. .smartselect_mask{background-color:#fff}.smartselect
  2143. ul{padding:0;margin:0}.smartselect ul
  2144. li{list-style:none}.smartselect
  2145. .smartselect_menu{margin-right:5px}.safari .smartselect
  2146. .smartselect_menu{margin-left:2px}.smartselect .smartselect_menu,.smartselect
  2147. .smartselect_submenu{border:1px
  2148. solid #000;background-color:#FFF;display:none}.smartselect .smartselect_menu.visible,.smartselect
  2149. .smartselect_submenu.visible{display:block}.smartselect .smartselect_menu_content ul
  2150. li{position:relative;padding:2px
  2151. 5px}.smartselect .smartselect_menu_content ul li
  2152. a{color:#333;text-decoration:none}.smartselect .smartselect_menu_content ul li
  2153. a.selectable{color:inherit}.smartselect
  2154. .smartselect_submenuitem{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed);background-repeat:no-repeat;background-position:100%}.smartselect.spanningmenu
  2155. .smartselect_submenu{position:absolute;top:-1px;left:100%}.smartselect.spanningmenu .smartselect_submenu
  2156. a{white-space:nowrap;padding-right:16px}.smartselect.spanningmenu .smartselect_menu_content ul li a.selectable:hover{text-decoration:underline}.smartselect.compactmenu
  2157. .smartselect_submenu{position:relative;margin:2px
  2158. -3px 2px 10px;display:none;border-width:0;z-index:1010}.smartselect.compactmenu
  2159. .smartselect_submenu.visible{display:block}.smartselect.compactmenu
  2160. .smartselect_menu{z-index:1000;overflow:hidden}.smartselect.compactmenu .smartselect_submenu
  2161. .smartselect_submenu{z-index:1020}.smartselect.compactmenu .smartselect_submenuitem:hover>.smartselect_menuitem_label{font-weight:700}#page-admin-registration-register
  2162. .registration_textfield{width:300px}.userenrolment{width:100%;border-collapse:collapse}.userenrolment
  2163. tr{vertical-align:top}.userenrolment
  2164. td{padding:0;height:41px}.userenrolment
  2165. .subfield{margin-right:5px}.userenrolment .col_userdetails
  2166. .subfield{margin-left:40px}.userenrolment .col_userdetails
  2167. .subfield_picture{float:left;margin-left:0}.userenrolment
  2168. .col_lastseen{width:150px}.userenrolment
  2169. .col_role{width:262px}.userenrolment .col_group .groups,.userenrolment .col_role
  2170. .roles{margin-right:30px}.userenrolment .col_group .group,.userenrolment .col_role
  2171. .role{float:left;padding:3px;margin:3px;white-space:nowrap}.userenrolment .col_group .group a,.userenrolment .col_role .role
  2172. a{margin-left:3px;cursor:pointer}.userenrolment .col_group .addgroup,.userenrolment .col_role
  2173. .addrole{float:right;padding:3px;margin:3px}.userenrolment .col_group .addgroup>a:hover,.userenrolment .col_role .addrole>a:hover{border-bottom:1px solid #666}.userenrolment .col_group .addgroup img,.userenrolment .col_role .addrole
  2174. img{vertical-align:baseline}.dir-rtl .userenrolment .col_role
  2175. .role{float:right}.userenrolment .hasAllRoles .col_role
  2176. .addrole{display:none}.userenrolment .col_enrol
  2177. .enrolment{float:left;padding:3px;margin:3px}.userenrolment .col_enrol .enrolment
  2178. a{float:right;margin-left:3px}#page-enrol-users .enrol_user_buttons
  2179. .enrolusersbutton{display:inline}#page-enrol-users .enrol_user_buttons .enrolusersbutton div,#page-enrol-users .enrol_user_buttons .enrolusersbutton
  2180. form{display:inline;margin-right:0}#page-enrol-users
  2181. #filterform{min-height:20px;margin-bottom:20px;background-color:#f5f5f5;border:1px
  2182. solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3;padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;display:inline-block}#page-enrol-users #filterform
  2183. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}#page-enrol-users #filterform
  2184. .fitem{display:inline-block;line-height:40px;margin-right:.3em;white-space:nowrap}#page-enrol-users #filterform .fitem
  2185. label{display:inline;line-height:20px;padding-right:.3em}#page-enrol-users #filterform .fitem :after,#page-enrol-users #filterform .fitem :before{display:inline}#page-enrol-users #filterform div,#page-enrol-users #filterform
  2186. fieldset{display:inline;float:none;clear:none;width:auto;margin:0}#page-enrol-users #filterform .ftext input,#page-enrol-users #filterform
  2187. select{width:7em}#page-enrol-users #filterform input,#page-enrol-users #filterform
  2188. select{margin-bottom:0}#page-enrol-users .user-enroller-panel .uep-search-results .cohort .details,#page-enrol-users .user-enroller-panel .uep-search-results .user
  2189. .details{width:237px}.dir-rtl#page-enrol-users .col_userdetails
  2190. .subfield{margin-right:40px;margin-left:5px}.dir-rtl#page-enrol-users .col_userdetails
  2191. .subfield_picture{float:right;margin-right:0}.dir-rtl#page-enrol-users
  2192. .enrol_user_buttons{float:left}.dir-rtl#page-enrol-users .enrol_user_buttons
  2193. .enrolusersbutton{margin-left:0;margin-right:1em}.dir-rtl#page-enrol-users .enrol_user_buttons .enrolusersbutton
  2194. div{margin-left:0}.dir-rtl#page-enrol-users #filterform
  2195. .fitem{margin-right:0;margin-left:.3em}.dir-rtl#page-enrol-users #filterform .fitem
  2196. label{padding-right:0;padding-left:.3em}.dir-rtl#page-enrol-users .user-enroller-panel .uep-search-results .user .count,.dir-rtl#page-enrol-users .user-enroller-panel .uep-search-results .user .details,.dir-rtl#page-enrol-users .user-enroller-panel .uep-search-results .user
  2197. .picture{float:right}.dir-rtl#page-enrol-users .user-enroller-panel .uep-search-results .user .options
  2198. .enrol{float:left}#page-enrol-users .enrol-users-page-action
  2199. input{margin-left:0}.dir-rtl
  2200. .headermain{float:right}.dir-rtl
  2201. .headermenu{float:left}.dir-rtl .loginbox .loginform .form-label{float:right;text-align:left}.dir-rtl .loginbox .loginform .form-input{text-align:right;margin-right:1%}.dir-rtl .yui3-menu-hidden{left:0}#page-admin-roles-define.dir-rtl #rolesform
  2202. .felement{margin-right:180px}#page-message-edit.dir-rtl table.generaltable
  2203. th.c0{text-align:right}.corelightbox{background-color:#CCC;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center}.corelightbox
  2204. img{position:fixed;top:50%;left:50%}.mod-indent-outer{display:table}.mod-indent{display:table-cell}.label .mod-indent{float:left;padding-top:20px}.mod-indent-1{width:30px}.mod-indent-2{width:60px}.mod-indent-3{width:90px}.mod-indent-4{width:120px}.mod-indent-5{width:150px}.mod-indent-6{width:180px}.mod-indent-7{width:210px}.mod-indent-8{width:240px}.mod-indent-9{width:270px}.mod-indent-10{width:300px}.mod-indent-11{width:330px}.mod-indent-12{width:360px}.mod-indent-13{width:390px}.mod-indent-14{width:420px}.mod-indent-15{width:450px}.mod-indent-16,.mod-indent-huge{width:480px}.resourcecontent .mediaplugin_mp3
  2205. object{height:25px;width:600px}.resourcecontent
  2206. audio.mediaplugin_html5audio{width:600px}.resourceimage{max-width:100%}.mediaplugin_mp3
  2207. object{height:15px;width:300px}audio.mediaplugin_html5audio{width:300px}.core_media_preview.pagelayout-embedded
  2208. #content{padding:0}.core_media_preview.pagelayout-embedded
  2209. #maincontent{height:0}body#page-lib-editor-tinymce-plugins-moodlemedia-preview{padding:0;margin:0;min-width:0;background:0 0}.dir-rtl .ygtvcancel,.dir-rtl .ygtvcancel:hover,.dir-rtl .ygtvdepthcell,.dir-rtl .ygtvlm,.dir-rtl .ygtvlmh,.dir-rtl .ygtvlmhh,.dir-rtl .ygtvln,.dir-rtl .ygtvlp,.dir-rtl .ygtvlph,.dir-rtl .ygtvlphh,.dir-rtl .ygtvok,.dir-rtl .ygtvok:hover,.dir-rtl .ygtvtm,.dir-rtl .ygtvtmh,.dir-rtl .ygtvtmhh,.dir-rtl .ygtvtn,.dir-rtl .ygtvtp,.dir-rtl .ygtvtph,.dir-rtl
  2210. .ygtvtphh{width:18px;height:22px;background-image:url(/theme/image.php/essential/theme/1489002274/yui2-treeview-sprite-rtl);background-repeat:no-repeat;cursor:pointer}.dir-rtl
  2211. .ygtvtn{background-position:0 -5600px}.dir-rtl
  2212. .ygtvtm{background-position:0 -4000px}.dir-rtl .ygtvtmh,.dir-rtl
  2213. .ygtvtmhh{background-position:0 -4800px}.dir-rtl
  2214. .ygtvtp{background-position:0 -6400px}.dir-rtl .ygtvtph,.dir-rtl
  2215. .ygtvtphh{background-position:0 -7200px}.dir-rtl
  2216. .ygtvln{background-position:0 -1600px}.dir-rtl
  2217. .ygtvlm{background-position:0 0}.dir-rtl .ygtvlmh,.dir-rtl
  2218. .ygtvlmhh{background-position:0 -800px}.dir-rtl
  2219. .ygtvlp{background-position:0 -2400px}.dir-rtl .ygtvlph,.dir-rtl
  2220. .ygtvlphh{background-position:0 -3200px}.dir-rtl
  2221. .ygtvdepthcell{background-position:0 -8000px}.dir-rtl
  2222. .ygtvok{background-position:0 -8800px}.dir-rtl .ygtvok:hover{background-position:0 -8844px}.dir-rtl
  2223. .ygtvcancel{background-position:0 -8822px}.dir-rtl .ygtvcancel:hover{background-position:0 -8866px}.dir-rtl .yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd,.dir-rtl.yui-skin-sam .yui-panel
  2224. .hd{text-align:right}.dir-rtl .clearlooks2 .mceConfirm .mceMiddle span,.dir-rtl .clearlooks2.ie9 .mceAlert .mceMiddle
  2225. span{top:44px}.dir-rtl .o2k7Skin *,.dir-rtl .o2k7Skin .mceListBox .mceText,.dir-rtl .o2k7Skin .mceText,.dir-rtl .o2k7Skin a,.dir-rtl .o2k7Skin div,.dir-rtl .o2k7Skin iframe,.dir-rtl .o2k7Skin img,.dir-rtl .o2k7Skin span,.dir-rtl .o2k7Skin table,.dir-rtl .o2k7Skin tbody,.dir-rtl .o2k7Skin td,.dir-rtl .o2k7Skin
  2226. tr{text-align:right}.path-rating
  2227. .ratingtable{width:100%;margin-bottom:1em}.path-rating .ratingtable
  2228. th.rating{width:100%}.path-rating .ratingtable td.rating,.path-rating .ratingtable
  2229. td.time{white-space:nowrap;text-align:center}.initialbar a,.initialbar
  2230. strong{padding-left:3px;padding-right:3px}.moodle-dialogue-base .moodle-dialogue-lightbox{background-color:#AAA}.moodle-dialogue-base .hidden,.moodle-dialogue-base .moodle-dialogue-hidden{display:none}.no-scrolling{overflow:hidden}.moodle-dialogue-base .moodle-dialogue-fullscreen{left:0;top:0;right:0;bottom:-50px;position:fixed}.moodle-dialogue-base .moodle-dialogue-fullscreen
  2231. .closebutton{width:28px;height:16px;background-size:100%}.moodle-dialogue-base .moodle-dialogue{padding:0;margin:0;background:0 0;border:none;z-index:600;outline:#000 dotted 0}.moodle-dialogue-base .moodle-dialogue-wrap{margin-top:-3px;margin-left:-3px;background-color:#fff;border:1px
  2232. solid #ccc;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-box-shadow:5px 5px 20px 0 #666;-moz-box-shadow:5px 5px 20px 0 #666;box-shadow:5px 5px 20px 0 #666}.moodle-dialogue-base .moodle-dialogue-wrap .moodle-dialogue-hd,.moodle-dialogue-base .moodle-dialogue-wrap .moodle-dialogue-hd.yui3-widget-hd{margin:0;padding:5px;font-size:12px;font-weight:400;letter-spacing:1px;color:#333;text-align:center;text-shadow:1px 1px 1px #fff;-webkit-border-radius:10px 10px 0 0;-moz-border-radius:10px 10px 0 0;border-radius:10px 10px 0 0;border-bottom:1px solid #bbb;background:repeat-x #ebebeb;background-image:-moz-linear-gradient(top,#fff,#ccc);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#ccc));background-image:-webkit-linear-gradient(top,#fff,#ccc);background-image:-o-linear-gradient(top,#fff,#ccc);background-image:linear-gradient(to bottom,#fff,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffcccccc', GradientType=0);filter:0}.moodle-dialogue-base .moodle-dialogue-wrap .moodle-dialogue-hd
  2233. h1{margin:0;padding:0;display:inline;font-size:100%;font-weight:700}.moodle-dialogue-base .moodle-dialogue-wrap .moodle-dialogue-hd .yui3-widget-buttons{padding:5px}.moodle-dialogue-base
  2234. .closebutton{width:25px;height:15px;float:right;vertical-align:middle;display:inline-block;cursor:pointer;padding:0;background-image:url(/theme/image.php/essential/theme/1489002274/sprite);background-repeat:no-repeat;border-style:none}.dir-rtl .moodle-dialogue-base .moodle-dialogue-wrap .moodle-dialogue-hd .yui3-widget-buttons{left:0;right:auto}.moodle-dialogue-base .moodle-dialogue .moodle-dialogue-bd{padding:1em;line-height:2em;color:#555;font-size:12px}.moodle-dialogue-base .moodle-dialogue-wrap .moodle-dialogue-content{padding:0;background:#FFF}.moodle-dialogue-base .moodle-dialogue-fullscreen .moodle-dialogue-hd{padding:10px;font-size:16px}.moodle-dialogue-base .moodle-dialogue-fullscreen .moodle-dialogue-content{overflow:auto;position:absolute;top:0;bottom:50px;left:0;right:0;margin:0;border:0}.moodle-dialogue-base .moodle-dialogue-fullscreen .moodle-dialogue-hd,.moodle-dialogue-base .moodle-dialogue-fullscreen .moodle-dialogue-wrap{border-radius:0}.moodle-dialogue-confirm .confirmation-dialogue,.moodle-dialogue-confirm .confirmation-dialogue input,.moodle-dialogue-exception .moodle-exception-message{text-align:center}.moodle-dialogue-exception .moodle-exception-param
  2235. label{font-weight:700}.moodle-dialogue-exception .param-stacktrace
  2236. label{background-color:#EEE;border:1px
  2237. solid #ccc;border-bottom-width:0}.moodle-dialogue-exception .param-stacktrace
  2238. pre{border:1px
  2239. solid #ccc;background-color:#fff}.moodle-dialogue-exception .param-stacktrace .stacktrace-file{color:navy;font-size:11.9px}.moodle-dialogue-exception .param-stacktrace .stacktrace-line{color:#b94a48;font-size:11.9px}.moodle-dialogue-exception .param-stacktrace .stacktrace-call{color:#333;font-size:90%;border-bottom:1px solid #eee}.moodle-dialogue-base .moodle-dialogue .moodle-dialogue-content .moodle-dialogue-ft{padding:0;margin:.7em 1em;text-align:right;background-color:#FFF;font-size:12px}.moodle-dialogue-confirm .confirmation-message{margin:.5em 1em}.moodle-dialogue-confirm .confirmation-dialogue
  2240. input{min-width:80px}.moodle-dialogue-exception .moodle-exception-message{margin:1em}.moodle-dialogue-exception .moodle-exception-param{margin-bottom:.5em}.moodle-dialogue-exception .moodle-exception-param
  2241. label{width:150px}.moodle-dialogue-exception .param-stacktrace
  2242. label{display:block;margin:0;padding:4px
  2243. 1em}.moodle-dialogue-exception .param-stacktrace
  2244. pre{display:block;height:200px;overflow:auto}.moodle-dialogue-exception .param-stacktrace .stacktrace-file{display:inline-block;margin:4px
  2245. 0}.moodle-dialogue-exception .param-stacktrace .stacktrace-line{display:inline-block;width:50px;margin:4px
  2246. 1em}.moodle-dialogue-exception .param-stacktrace .stacktrace-call{padding-left:25px;margin-bottom:4px;padding-bottom:4px}.moodle-dialogue .moodle-dialogue-bd .content-lightbox{opacity:.75;filter:alpha(opacity=75);width:100%;height:100%;top:0;left:0;background-color:#fff;text-align:center;padding:10% 0}.moodle-dialogue
  2247. .tooltiptext{max-height:300px}.moodle-dialogue-base .moodle-dialogue.moodle-dialogue-tooltip{z-index:3001}.moodle-dialogue-base .moodle-dialogue.moodle-dialogue-tooltip .moodle-dialogue-bd{overflow:auto}#page-question-edit.dir-rtl a.container-close{right:auto;left:6px}.chooserdialoguebody,.choosertitle{display:none}.moodle-dialogue.chooserdialogue .moodle-dialogue-content .moodle-dialogue-ft{margin:0}.chooserdialogue .moodle-dialogue-wrap .moodle-dialogue-bd{padding:0;background:#F2F2F2;-webkit-border-bottom-right-radius:10px;-moz-border-radius-bottomright:10px;border-bottom-right-radius:10px;-webkit-border-bottom-left-radius:10px;-moz-border-radius-bottomleft:10px;border-bottom-left-radius:10px}.choosercontainer #chooseform
  2248. .submitbuttons{padding:.7em 0;text-align:center}@media (max-height:639px){.ios.safari .choosercontainer #chooseform
  2249. .submitbuttons{padding:45px
  2250. 0}}.choosercontainer #chooseform .submitbuttons
  2251. input{min-width:100px;margin:0
  2252. .5em}.choosercontainer #chooseform
  2253. .options{position:relative;border-bottom:1px solid #BBB}.jschooser .choosercontainer #chooseform
  2254. .alloptions{overflow-x:hidden;overflow-y:auto;max-width:20.3em;-webkit-box-shadow:inset 0 0 30px 0 #ccc;-moz-box-shadow:inset 0 0 30px 0 #ccc;box-shadow:inset 0 0 30px 0 #ccc}.jschooser .choosercontainer #chooseform .alloptions .option .modicon,.jschooser .choosercontainer #chooseform .alloptions .option input[type=radio]{display:inline-block}.jschooser .choosercontainer #chooseform .alloptions .option
  2255. .typename{display:inline-block;width:65%}.dir-rtl.jschooser .choosercontainer #chooseform
  2256. .alloptions{max-width:18.3em}.choosercontainer #chooseform .moduletypetitle,.choosercontainer #chooseform .nonoption,.choosercontainer #chooseform
  2257. .option{margin-bottom:0;padding:0
  2258. 1.6em}.choosercontainer #chooseform
  2259. .moduletypetitle{text-transform:uppercase;padding-top:1.2em;padding-bottom:.4em}.choosercontainer #chooseform .nonoption .typename,.choosercontainer #chooseform .nonoption span.modicon img.icon,.choosercontainer #chooseform .option .typename,.choosercontainer #chooseform .option span.modicon
  2260. img.icon{padding:0
  2261. 0 0 .5em}.dir-rtl .choosercontainer #chooseform .nonoption .typename,.dir-rtl .choosercontainer #chooseform .nonoption span.modicon img.icon,.dir-rtl .choosercontainer #chooseform .option .typename,.dir-rtl .choosercontainer #chooseform .option span.modicon
  2262. img.icon{padding:0
  2263. .5em 0 0}.chooserdialogue-course-modchooser .choosercontainer #chooseform .nonoption span.modicon img.icon,.chooserdialogue-course-modchooser .choosercontainer #chooseform .option span.modicon
  2264. img.icon{height:24px;width:24px}.choosercontainer #chooseform .option input[type=radio],.choosercontainer #chooseform .option span.modicon,.choosercontainer #chooseform .option
  2265. span.typename{vertical-align:middle}.choosercontainer #chooseform .option
  2266. label{display:block;padding:.3em 0 .1em;border-bottom:1px solid #FFF}.choosercontainer #chooseform
  2267. .nonoption{padding-left:2.7em;padding-top:.3em;padding-bottom:.1em}.dir-rtl .choosercontainer #chooseform
  2268. .nonoption{padding-right:2.7em;padding-left:0}.choosercontainer #chooseform
  2269. .subtype{margin-bottom:0;padding:0
  2270. 1.6em 0 3.2em}.dir-rtl .choosercontainer #chooseform
  2271. .subtype{padding:0
  2272. 3.2em 0 1.6em}.choosercontainer #chooseform .subtype
  2273. .typename{margin:0
  2274. 0 0 .2em}.dir-rtl .choosercontainer #chooseform .subtype
  2275. .typename{margin:0
  2276. .2em 0 0}.jschooser .choosercontainer #chooseform .instruction,.jschooser .choosercontainer #chooseform
  2277. .typesummary{display:none;position:absolute;top:0;right:0;bottom:0;left:20.3em;margin:0;padding:1.6em;background-color:#fff;overflow-x:hidden;overflow-y:auto;line-height:2em}.dir-rtl.jschooser .choosercontainer #chooseform .instruction,.dir-rtl.jschooser .choosercontainer #chooseform
  2278. .typesummary{left:0;right:18.5em;border-right:1px solid grey}.choosercontainer #chooseform .selected .typesummary,.jschooser .choosercontainer #chooseform
  2279. .instruction{display:block}.choosercontainer #chooseform
  2280. .selected{background-color:#fff;-webkit-box-shadow:0 0 10px 0 #ccc;-moz-box-shadow:0 0 10px 0 #ccc;box-shadow:0 0 10px 0 #ccc}.section-modchooser-link
  2281. img.smallicon{padding:3px}.formlistingradio{padding-bottom:25px;padding-right:10px}.formlistinginputradio{float:left}.formlistingmain{min-height:225px}.formlisting{position:relative;margin:15px
  2282. 0;padding:1px
  2283. 19px 14px;background-color:#fff;border:1px
  2284. solid #DDD;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.formlistingmore{position:absolute;cursor:pointer;bottom:-1px;right:-1px;padding:3px
  2285. 7px;font-size:12px;font-weight:700;background-color:#f5f5f5;border:1px
  2286. solid #ddd;color:#9DA0A4;-webkit-border-radius:4px 0;-moz-border-radius:4px 0;border-radius:4px 0}.formlistingall{margin:15px
  2287. 0;padding:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.formlistingrow{cursor:pointer;border-bottom:1px solid;border-color:#E1E1E8;border-left:1px solid #E1E1E8;border-right:1px solid #E1E1E8;background-color:#F7F7F9;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;padding:6px;top:50%;left:50%;min-height:34px;float:left;width:150px}body.jsenabled
  2288. .formlistingradio{display:none}body.jsenabled
  2289. .formlisting{display:block}table.collection{width:100%;margin-bottom:20px;border:1px
  2290. solid #ddd;border-collapse:separate;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}table.collection td,table.collection
  2291. th{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}table.collection
  2292. th{font-weight:700}table.collection thead
  2293. th{vertical-align:bottom}table.collection caption+thead tr:first-child td,table.collection caption+thead tr:first-child th,table.collection colgroup+thead tr:first-child td,table.collection colgroup+thead tr:first-child th,table.collection thead:first-child tr:first-child td,table.collection thead:first-child tr:first-child
  2294. th{border-top:0}table.collection tbody+tbody{border-top:2px solid #ddd}table.collection
  2295. .table{background-color:#fff}table.collection td,table.collection
  2296. th{border-left:1px solid #ddd}table.collection caption+tbody tr:first-child td,table.collection caption+tbody tr:first-child th,table.collection caption+thead tr:first-child th,table.collection colgroup+tbody tr:first-child td,table.collection colgroup+tbody tr:first-child th,table.collection colgroup+thead tr:first-child th,table.collection tbody:first-child tr:first-child td,table.collection tbody:first-child tr:first-child th,table.collection thead:first-child tr:first-child
  2297. th{border-top:0}table.collection tbody:first-child tr:first-child>td:first-child,table.collection tbody:first-child tr:first-child>th:first-child,table.collection thead:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}table.collection tbody:first-child tr:first-child>td:last-child,table.collection tbody:first-child tr:first-child>th:last-child,table.collection thead:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px}table.collection tbody:last-child tr:last-child>td:first-child,table.collection tbody:last-child tr:last-child>th:first-child,table.collection tfoot:last-child tr:last-child>td:first-child,table.collection tfoot:last-child tr:last-child>th:first-child,table.collection thead:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}table.collection tbody:last-child tr:last-child>td:last-child,table.collection tbody:last-child tr:last-child>th:last-child,table.collection tfoot:last-child tr:last-child>td:last-child,table.collection tfoot:last-child tr:last-child>th:last-child,table.collection thead:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}table.collection tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0}table.collection tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0}table.collection caption+tbody tr:first-child td:first-child,table.collection caption+thead tr:first-child th:first-child,table.collection colgroup+tbody tr:first-child td:first-child,table.collection colgroup+thead tr:first-child th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}table.collection caption+tbody tr:first-child td:last-child,table.collection caption+thead tr:first-child th:last-child,table.collection colgroup+tbody tr:first-child td:last-child,table.collection colgroup+thead tr:first-child th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px}table.collection tbody>tr:nth-child(odd)>td,table.collection tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}table.collection
  2298. td.name{text-align:left;vertical-align:middle}table.collection
  2299. td.awards{width:15%;text-align:center;vertical-align:middle}table.collection
  2300. td.criteria{width:40%;text-align:left;vertical-align:top}table.collection
  2301. td.status{width:15%;text-align:center;vertical-align:middle}table.collection
  2302. td.description{width:25%;text-align:left}table.collection
  2303. td.actions{width:11em;text-align:center;vertical-align:middle}a.criteria-action{padding:0
  2304. 3px;float:right}div.criteria-description{padding:10px
  2305. 15px;margin:5px
  2306. 0;background:#f9f9f9;border:1px
  2307. solid #EEE}ul.badges{margin:0;list-style:none}.badges
  2308. li{position:relative;display:inline-block;padding-top:1em;text-align:center;vertical-align:top;width:150px}.badges li .badge-name{display:block;padding:5px}.badges li>img{position:absolute}.badges li .badge-image{width:100px;height:100px;left:10px;top:0;z-index:1}.badges li .badge-actions{position:relative}.badges li
  2309. .expireimage{width:100px;height:100px;left:25px;top:0;position:absolute;z-index:10;opacity:.85}#badge-image{background-color:transparent;padding:0;position:relative;min-width:100px;width:20%;display:inline-block;vertical-align:top;margin-top:17px}#badge-image
  2310. .expireimage{width:100px;height:100px;left:0;top:0;opacity:.85;filter:alpha(opacity=85);position:absolute;z-index:10}#badge-image
  2311. .singlebutton{padding-top:5px}#badge-image .singlebutton
  2312. input{margin-left:0}.dir-rtl #badge-image{float:right}.dir-rtl #badge-image
  2313. .expireimage{left:41px}#badge-details{display:inline-block;width:79%}#badge-details dl,#badge-overview
  2314. dl{margin:0}#badge-details dl dd,#badge-details dl dt,#badge-overview dl dd,#badge-overview dl
  2315. dt{vertical-align:top;padding:3px
  2316. 0}#badge-details dl dt,#badge-overview dl
  2317. dt{clear:both;display:inline-block;width:20%;min-width:100px}#badge-details dl dd,#badge-overview dl
  2318. dd{display:inline-block;width:79%;margin-left:1%}.badge-profile{vertical-align:top}.connected{color:#468847}.notconnected{color:#b94a48}.connecting{color:#8a6d3b}#page-badges-award .recipienttable tr
  2319. td{vertical-align:top}#page-badges-award .recipienttable tr td.actions
  2320. .actionbutton{margin:.3em 0;padding:.5em 0;width:100%}#page-badges-award .recipienttable tr td.existing,#page-badges-award .recipienttable tr
  2321. td.potential{width:42%}#issued-badge-table
  2322. .activatebadge{display:inline-block}.statusbox.active{background-color:#dff0d8}.statusbox.inactive{background-color:#fcf8e3}.statusbox{text-align:center;margin-bottom:5px;padding:5px}.statusbox
  2323. .activatebadge{display:inline-block}.statusbox .activatebadge input[type=submit]{margin:3px}.activatebadge{margin:0;text-align:left;vertical-align:middle}.dir-rtl
  2324. .activatebadge{text-align:right}img#persona_signin{cursor:pointer}.addcourse{float:right}.invisiblefieldset{display:inline;margin:0;padding:0;border-width:0}.breadcrumb-nav{float:left}.dir-rtl .breadcrumb-nav{float:right}.breadcrumb-button .singlebutton
  2325. div{margin-right:0}.breadcrumb-nav
  2326. .breadcrumb{margin:0}.page-context-header{overflow:hidden}.page-context-header .page-header-headings,.page-context-header .page-header-image{display:block;position:relative}.page-context-header .page-header-image{margin-bottom:1em}.page-context-header .page-header-headings
  2327. h1{display:block}.page-context-header .header-button-group,.page-context-header .page-header-headings{position:relative;line-height:24px;vertical-align:middle}.page-context-header .header-button-group{display:block}.page-context-header .header-button-group
  2328. a{position:relative;top:-.4em}.dir-ltr .page-context-header .page-header-image{float:left;margin-right:1em}.dir-ltr .page-context-header .header-button-group{float:left}.dir-rtl .page-context-header .page-header-image{float:right;margin-left:1em}.dir-rtl .page-context-header .header-button-group{float:right}.moodle-actionmenu,.moodle-actionmenu>ul,.moodle-actionmenu>ul>li{display:inline-block}.moodle-actionmenu
  2329. ul{padding:0;margin:0;list-style-type:none}.section_action_menu .moodle-actionmenu
  2330. ul.menubar{margin:0}.section_action_menu .moodle-actionmenu
  2331. ul.menu{margin:0
  2332. 10px 10px 0}.moodle-actionmenu .menu-action-text,.moodle-actionmenu .toggle-display{display:none}.jsenabled .moodle-actionmenu[data-enhance]{display:block}.jsenabled .moodle-actionmenu[data-enhance] .menu{display:none}.jsenabled .moodle-actionmenu[data-enhance] .toggle-display{display:inline;opacity:.5;filter:alpha(opacity=50)}.jsenabled .moodle-actionmenu[data-enhance] .toggle-display.textmenu{display:block;margin-left:4px;padding-left:4px;padding-right:4px}.jsenabled .moodle-actionmenu[data-enhance] .toggle-display.textmenu .iconsmall,.jsenabled .moodle-actionmenu[data-enhance] .toggle-display.textmenu
  2333. .smallicon{margin:4px
  2334. 4px 4px 0;padding:8px
  2335. 4px 0 2px;vertical-align:text-bottom}.jsenabled .moodle-actionmenu[data-enhance] .toggle-display.textmenu
  2336. .caret{margin-top:8px;margin-left:2px;border-top-color:#777}.jsenabled .moodle-actionmenu[data-enhance] .toggle-display.textmenu .caret:active,.jsenabled .moodle-actionmenu[data-enhance] .toggle-display.textmenu .caret:hover{border-top-color:#555}.jsenabled .moodle-actionmenu[data-enhanced] .toggle-display{opacity:1;filter:alpha(opacity=100)}.jsenabled .moodle-actionmenu[data-enhanced] .menu-action-text{display:inline}.jsenabled.dir-rtl .moodle-actionmenu[data-enhance] .toggle-display.textmenu{margin-left:initial;margin-right:4px}.jsenabled.dir-rtl .moodle-actionmenu[data-enhance] .toggle-display.textmenu
  2337. .caret{margin-left:initial;margin-right:2px}.moodle-actionmenu[data-enhanced].show{position:relative}.moodle-actionmenu[data-enhanced].show
  2338. .menu{display:block;position:absolute;text-align:left;background-color:#fff;border:1px
  2339. solid rgba(0,0,0,.2);z-index:1000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:5px 5px 20px 0 #666;-moz-box-shadow:5px 5px 20px 0 #666}.moodle-actionmenu[data-enhanced].show .menu
  2340. a{display:block;color:#333;padding:2px
  2341. 1em 2px 28px}.moodle-actionmenu[data-enhanced].show .menu a:hover{color:#fff;background-color:#0070a8}.moodle-actionmenu[data-enhanced].show .menu a:first-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.moodle-actionmenu[data-enhanced].show .menu a:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.moodle-actionmenu[data-enhanced].show .menu
  2342. a.hidden{display:none}.moodle-actionmenu[data-enhanced].show .menu
  2343. img{vertical-align:middle}.moodle-actionmenu[data-enhanced].show .menu .iconsmall,.moodle-actionmenu[data-enhanced].show .menu
  2344. .smallicon{padding:4px}.moodle-actionmenu[data-enhanced].show .menu>li{display:block}.moodle-actionmenu[data-enhanced].show .menu.align-tl-bl{top:100%;left:0;margin-top:4px}.moodle-actionmenu[data-enhanced].show .menu.align-tr-bl{top:100%;right:100%}.moodle-actionmenu[data-enhanced].show .menu.align-bl-bl{bottom:100%;left:0}.moodle-actionmenu[data-enhanced].show .menu.align-br-bl{bottom:100%;right:100%}.moodle-actionmenu[data-enhanced].show .menu.align-tl-br{top:100%;left:100%}.moodle-actionmenu[data-enhanced].show .menu.align-tr-br{top:100%;right:0;margin-top:4px}.moodle-actionmenu[data-enhanced].show .menu.align-bl-br{bottom:100%;left:100%}.moodle-actionmenu[data-enhanced].show .menu.align-br-br{bottom:100%;right:0}.moodle-actionmenu[data-enhanced].show .menu.align-tl-tl{top:0;left:0}.moodle-actionmenu[data-enhanced].show .menu.align-tr-tl{top:0;right:100%;margin-right:4px}.moodle-actionmenu[data-enhanced].show .menu.align-bl-tl{bottom:100%;left:0;margin-bottom:4px}.moodle-actionmenu[data-enhanced].show .menu.align-br-tl{bottom:100%;right:100%}.moodle-actionmenu[data-enhanced].show .menu.align-tl-tr{top:0;left:100%;margin-left:4px}.moodle-actionmenu[data-enhanced].show .menu.align-tr-tr{top:0;right:0}.moodle-actionmenu[data-enhanced].show .menu.align-bl-tr{bottom:100%;left:100%}.moodle-actionmenu[data-enhanced].show .menu.align-br-tr{bottom:100%;right:0;margin-bottom:4px}.moodle-actionmenu[data-enhanced].show.nowrap-items .menu>li{white-space:nowrap}.block .moodle-actionmenu{text-align:right}.dir-rtl .moodle-actionmenu[data-enhanced].show
  2345. .menu{text-align:right;left:0;right:auto}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu
  2346. a{padding:2px
  2347. 28px 2px 1em}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu .iconsmall,.dir-rtl .moodle-actionmenu[data-enhanced].show .menu
  2348. .smallicon{margin-right:-24px;margin-left:4px}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tl-bl{left:auto;right:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tr-bl{right:auto;left:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-bl-bl{left:auto;right:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-br-bl{right:auto;left:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tl-br{left:auto;right:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tr-br{right:auto;left:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-bl-br{left:auto;right:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-br-br{right:auto;left:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tl-tl{left:auto;right:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tr-tl{right:auto;left:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-bl-tl{left:auto;right:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-br-tl{right:auto;left:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tl-tr{left:auto;right:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-tr-tr{right:auto;left:0}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-bl-tr{left:auto;right:100%}.dir-rtl .moodle-actionmenu[data-enhanced].show .menu.align-br-tr{right:auto;left:0}.dir-rtl .block .moodle-actionmenu{text-align:right}ul.dragdrop-keyboard-drag
  2349. li{list-style-type:none}.block-control-actions .moodle-core-dragdrop-draghandle
  2350. img{width:12px;height:12px}a.disabled,a.disabled:hover{text-decoration:none;cursor:default;font-style:italic;color:gray}body.lockscroll{height:100%;overflow:hidden}.dir-rtl
  2351. ul{margin-left:0;margin-right:25px}.progressbar_container{max-width:500px;margin:0
  2352. auto}.ie10 .yui3-calendar-header-label{display:inline-block}dd:after,dd:before{display:block;content:" "}dd:after{clear:both}.nav-tabs>.active>a[href],.nav-tabs>.active>a[href]:focus,.nav-tabs>.active>a[href]:hover{cursor:pointer}.inplaceeditable.inplaceeditingon{position:relative}.inplaceeditable.inplaceeditingon
  2353. .editinstructions{margin-top:-30px;font-weight:400;margin-right:0;margin-left:0;left:0;right:auto;white-space:nowrap}.inplaceeditable.inplaceeditingon
  2354. input{width:330px;height:16px;vertical-align:text-bottom;margin-bottom:0}.inplaceeditable.inplaceeditingon
  2355. select{margin-bottom:0}.inplaceeditable .quickediticon
  2356. img{opacity:.2}.inplaceeditable
  2357. .quickeditlink{color:inherit;text-decoration:inherit}.inplaceeditable .quickeditlink:focus .quickediticon img,.inplaceeditable:hover .quickeditlink .quickediticon
  2358. img{opacity:1}.inplaceeditable.inplaceeditable-toggle
  2359. .quickediticon{display:none}.dir-rtl .inplaceeditable.inplaceeditingon
  2360. .editinstructions{right:0;left:auto}h3.sectionname .inplaceeditable.inplaceeditingon
  2361. .editinstructions{margin-top:-20px}.formtable tbody
  2362. th{font-weight:400;text-align:right}.path-admin
  2363. #assignrole{width:60%;margin-left:auto;margin-right:auto}.path-admin .admintable
  2364. .leftalign{text-align:left}.dir-rtl.path-admin .admintable
  2365. .leftalign{text-align:right}.environmenttable
  2366. p.warn{background-color:#fcf8e3;color:#8a6d3b}.environmenttable .error,.environmenttable .ok,.environmenttable
  2367. span.warn{display:inline-block;padding:2px
  2368. 4px;font-size:11.84px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.environmenttable .error:empty,.environmenttable .ok:empty,.environmenttable span.warn:empty{display:none}.environmenttable .error-important,.environmenttable .ok-important,.environmenttable span.warn-important{background-color:#b94a48}.environmenttable .error-important[href],.environmenttable .ok-important[href],.environmenttable span.warn-important[href]{background-color:#953b39}.environmenttable .error-warning,.environmenttable .ok-warning,.environmenttable span.warn-warning{background-color:#f89406}.environmenttable .error-warning[href],.environmenttable .ok-warning[href],.environmenttable span.warn-warning[href]{background-color:#c67605}.environmenttable .error-success,.environmenttable .ok-success,.environmenttable span.warn-success{background-color:#468847}.environmenttable .error-success[href],.environmenttable .ok-success[href],.environmenttable span.warn-success[href]{background-color:#356635}.environmenttable .error-info,.environmenttable .ok-info,.environmenttable span.warn-info{background-color:#3a87ad}.environmenttable .error-info[href],.environmenttable .ok-info[href],.environmenttable span.warn-info[href]{background-color:#2d6987}.environmenttable .error-inverse,.environmenttable .ok-inverse,.environmenttable span.warn-inverse{background-color:#333}.environmenttable .error-inverse[href],.environmenttable .ok-inverse[href],.environmenttable span.warn-inverse[href]{background-color:#1a1a1a}.environmenttable
  2369. .error{background-color:#b94a48}.environmenttable
  2370. span.warn{background-color:#f89406}.environmenttable
  2371. .ok{background-color:#468847}.path-admin #assignrole .admintable .role,.path-admin #assignrole .admintable .roleholder,.path-admin #assignrole .admintable .userrole,.path-admin .admintable.environmenttable .info,.path-admin .admintable.environmenttable
  2372. .name{white-space:nowrap}.path-admin .incompatibleblockstable
  2373. td.c0{font-weight:700}#page-admin-course-category
  2374. .addcategory{padding:10px}#page-admin-course-index
  2375. .editcourse{margin:20px
  2376. auto}#page-admin-course-index .editcourse td,#page-admin-course-index .editcourse
  2377. th{padding-left:10px;padding-right:10px}.timewarninghidden{display:none}.statuscritical,.statusok,.statusserious,.statuswarning{display:inline-block;padding:2px
  2378. 4px;font-size:11.84px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.statuscritical:empty,.statusok:empty,.statusserious:empty,.statuswarning:empty{display:none}.statuscritical-important,.statusok-important,.statusserious-important,.statuswarning-important{background-color:#b94a48}.statuscritical-important[href],.statusok-important[href],.statusserious-important[href],.statuswarning-important[href]{background-color:#953b39}.statuscritical-warning,.statusok-warning,.statusserious-warning,.statuswarning-warning{background-color:#f89406}.statuscritical-warning[href],.statusok-warning[href],.statusserious-warning[href],.statuswarning-warning[href]{background-color:#c67605}.statuscritical-success,.statusok-success,.statusserious-success,.statuswarning-success{background-color:#468847}.statuscritical-success[href],.statusok-success[href],.statusserious-success[href],.statuswarning-success[href]{background-color:#356635}.statuscritical-info,.statusok-info,.statusserious-info,.statuswarning-info{background-color:#3a87ad}.statuscritical-info[href],.statusok-info[href],.statusserious-info[href],.statuswarning-info[href]{background-color:#2d6987}.statuscritical-inverse,.statusok-inverse,.statusserious-inverse,.statuswarning-inverse{background-color:#333}.statuscritical-inverse[href],.statusok-inverse[href],.statusserious-inverse[href],.statuswarning-inverse[href]{background-color:#1a1a1a}.statusok{background-color:#468847}.statuswarning{background-color:#8a6d3b}.statusserious{background-color:#f89406}.statuscritical{background-color:#b94a48}#page-admin-report-capability-index
  2379. #capabilitysearch{width:30em}#page-admin-report-backups-index .backup-error,#page-admin-report-backups-index .backup-unfinished{color:#b94a48}#page-admin-report-backups-index .backup-notyetrun,#page-admin-report-backups-index .backup-ok,#page-admin-report-backups-index .backup-skipped{color:#468847}#page-admin-report-backups-index .backup-warning{color:#8a6d3b}#page-admin-qbehaviours .disabled,#page-admin-qtypes
  2380. .disabled{color:inherit;font-style:italic}#page-admin-qbehaviours #qbehaviours div,#page-admin-qbehaviours #qbehaviours form,#page-admin-qtypes #qtypes div,#page-admin-qtypes #qtypes
  2381. form{display:inline}#page-admin-qbehaviours #qbehaviours img.spacer,#page-admin-qtypes #qtypes
  2382. img.spacer{width:16px}img.iconsmall{margin:0;padding:.3em}#page-admin-qbehaviours .cell.c3,#page-admin-qtypes
  2383. .cell.c3{font-size:10.5px}#page-admin-course-category .addcategory,#page-admin-course-category .buttons,#page-admin-course-index .addcategory,#page-admin-course-index .buttons,#page-admin-course-index .singlebutton,#page-admin-index #layout-table .singlebutton,#page-admin-index .adminerror .singlebutton,#page-admin-index .adminwarning .singlebutton,#page-admin-index .copyright,#page-admin-index .copyrightnotice,#page-admin-lang .generalbox,#page-admin-maintenance .buttons,#page-admin-stickyblocks .generalbox,#page-course-index .buttons,#page-course-index-category
  2384. .buttons{text-align:center;margin-bottom:1em}.path-admin-roles
  2385. .capabilitysearchui{text-align:left;margin-left:auto;margin-right:auto}#page-admin-roles-define
  2386. .topfields{margin:1em
  2387. 0 2em}#page-admin-roles-define
  2388. .capdefault{background-color:#f5f5f5;border:1px
  2389. solid #ddd}#page-filter-manage .backlink,.path-admin-roles
  2390. .backlink{margin-top:1em}#page-admin-roles-explain #chooseuser h3,#page-admin-roles-usersroles
  2391. .contextname{margin-top:0}#page-admin-roles-explain
  2392. #chooseusersubmit{margin-top:0;text-align:center}#page-admin-roles-usersroles
  2393. p{margin:0}#page-admin-roles-assign .cell.c1,#page-admin-roles-assign .cell.c3,#page-admin-roles-override
  2394. .cell.c1{padding-top:.75em}#page-admin-roles-define .definenotice,#page-admin-roles-override
  2395. .overridenotice{margin:1em
  2396. 10% 2em;text-align:left}#notice{width:60%;min-width:220px;margin:auto}#page-admin-index .adminerror,#page-admin-index .adminwarning,#page-admin-index
  2397. .releasenoteslink{margin:auto auto 20px;padding:8px
  2398. 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5);background-color:#fcf8e3;border:1px
  2399. solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#8a6d3b;width:60%;min-width:220px}#page-admin-index
  2400. .adminerror{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}#page-admin-index
  2401. .releasenoteslink{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad}#page-admin-index .adminwarning.availableupdatesinfo .moodleupdateinfo
  2402. span{display:block}#page-admin-index .updateplugin
  2403. div{margin-bottom:.5em}#page-admin-index .updateplugin
  2404. .updatepluginconfirmexternal{padding:1em;background-color:#f2dede;border:1px
  2405. solid #eed3d7}#page-admin-user-user_bulk #users
  2406. .fgroup{white-space:nowrap}#page-admin-report-courseoverview-index .graph,#page-admin-report-stats-index
  2407. .graph{text-align:center;margin-bottom:1em}#page-admin-lang
  2408. .translator{border-width:1px;border-style:solid}.path-admin
  2409. .roleassigntable{width:100%}.path-admin .roleassigntable
  2410. td{vertical-align:top;padding:.2em .3em}.path-admin .roleassigntable
  2411. p{text-align:left;margin:.2em 0}.path-admin .roleassigntable #existingcell,.path-admin .roleassigntable
  2412. #potentialcell{width:42%}.path-admin .roleassigntable #existingcell p>label:first-child,.path-admin .roleassigntable #potentialcell p>label:first-child{font-weight:700}.path-admin .roleassigntable
  2413. #buttonscell{width:16%}.path-admin .roleassigntable #buttonscell
  2414. #assignoptions{font-size:10.5px}.path-admin .roleassigntable #addselect_wrapper,.path-admin .roleassigntable
  2415. #removeselect_wrapper{width:100%}.path-admin table.rolecap tr.rolecap
  2416. th{text-align:left;font-weight:400}.path-admin.dir-rtl table.rolecap tr.rolecap
  2417. th{text-align:right}.path-admin .rolecap
  2418. .hiddenrow{display:none}.path-admin #defineroletable .rolecap .allow,.path-admin #defineroletable .rolecap .inherit,.path-admin #defineroletable .rolecap .prevent,.path-admin #defineroletable .rolecap
  2419. .prohibit{text-align:center;padding:0;min-width:3.5em}.path-admin .rolecap .cap-name,.path-admin .rolecap
  2420. .note{display:block;font-size:10.5px;white-space:nowrap;font-weight:400}.path-admin .rolecap
  2421. label{display:block;text-align:center;padding:.5em;margin:0}.plugincheckwrapper{width:100%}.environmentbox{margin-top:1em}#mnetconfig
  2422. table{margin-left:auto;margin-right:auto}.environmenttable
  2423. .cell{padding:.15em .5em}.environmenttable
  2424. img.iconhelp{padding-right:.3em}.dir-rtl .environmenttable
  2425. img.iconhelp{padding-right:0}#trustedhosts
  2426. .generaltable{margin-left:auto;margin-right:auto;width:500px}#trustedhosts
  2427. .standard{width:auto}#adminsettings
  2428. legend{display:none}#adminsettings
  2429. fieldset.error{margin:.2em 0 .5em}#adminsettings fieldset.error
  2430. legend{display:block}#page-admin-setting-editorsettingstinymce.dir-rtl .form-textarea textarea,.dir-rtl #admin-spelllanguagelist
  2431. textarea{text-align:left;direction:ltr}.adminsettingsflags{float:right}.dir-rtl
  2432. .adminsettingsflags{float:left}.adminsettingsflags
  2433. label{margin-right:7px}.dir-rtl .adminsettingsflags
  2434. label{margin-left:7px}.form-description{clear:right}.dir-rtl .form-description{clear:left}.form-item .form-setting .form-htmlarea{width:640px;display:inline}.form-item .form-setting .form-htmlarea
  2435. .htmlarea{width:640px;display:block}.form-item .form-setting .form-multicheckbox
  2436. ul{list-style:none;padding:0;margin:7px
  2437. 0 0}.form-item .form-setting
  2438. .defaultsnext{margin-right:.5em;display:inline}.dir-rtl .form-item .form-setting
  2439. .defaultsnext{margin-left:.5em;margin-right:0}.form-item .form-setting .locked-checkbox{margin-right:.2em;margin-left:.5em;display:inline}.dir-rtl .form-item .form-setting .locked-checkbox{margin-right:.5em;margin-left:.2em;display:inline}.form-item .patherror,.form-item
  2440. .pathok{margin-left:.5em}#admin-emoticons td.c0
  2441. input{width:4em}#adminthemeselector .selectedtheme
  2442. td.c0{border:1px
  2443. solid #000;border-right-width:0}#adminthemeselector .selectedtheme
  2444. td.c1{border:1px
  2445. solid #000;border-left-width:0}.admin_colourpicker,.admin_colourpicker_preview{display:none}.jsenabled
  2446. .admin_colourpicker_preview{display:inline}.jsenabled
  2447. .admin_colourpicker{display:block;height:102px;width:410px;margin-bottom:10px}.admin_colourpicker
  2448. .loadingicon{vertical-align:middle;margin-left:auto}.admin_colourpicker
  2449. .colourdialogue{float:left;border:1px
  2450. solid #000}.admin_colourpicker
  2451. .previewcolour{border:1px
  2452. solid #000;margin-left:301px}.admin_colourpicker
  2453. .currentcolour{border:1px
  2454. solid #000;margin-left:301px;border-top-width:0}.dir-rtl .form-item .form-description,.dir-rtl .form-item .form-label,.dir-rtl .form-item .form-setting,.dir-rtl.path-admin .roleassigntable
  2455. p{text-align:right}#page-admin-index #notice
  2456. .checkforupdates{text-align:center}#page-admin-index .adminwarning.availableupdatesinfo .moodleupdateinfo.maturity200
  2457. .info.release{background-color:#d9edf7}#page-admin-index .adminwarning.availableupdatesinfo .moodleupdateinfo.maturity100 .info.release,#page-admin-index .adminwarning.availableupdatesinfo .moodleupdateinfo.maturity150
  2458. .info.release{background-color:#fcf8e3}#page-admin-index .adminwarning.availableupdatesinfo .moodleupdateinfo.maturity50
  2459. .info.release{background-color:#f2dede}#page-admin-plugins #plugins-overview-panel
  2460. .info{display:inline-block;margin-right:1em}#page-admin-plugins
  2461. .checkforupdates{margin:10px
  2462. 0}#page-admin-plugins .checkforupdates
  2463. .singlebutton{margin:5px
  2464. 0;padding:0}#page-admin-plugins .checkforupdates .singlebutton div,#page-admin-plugins .checkforupdates .singlebutton
  2465. input{margin:0
  2466. 3px 0 0}#page-admin-plugins
  2467. .updateavailableinstallall{margin:5px
  2468. 0;padding:0}#page-admin-plugins .updateavailableinstallall div,#page-admin-plugins .updateavailableinstallall
  2469. input{margin:0
  2470. 3px 5px 0}#page-admin-plugins #plugins-control-panel .status-missing
  2471. td{background-color:#f2dede}#page-admin-plugins #plugins-control-panel .pluginname .displayname
  2472. img.icon{padding-top:0;padding-bottom:0}#page-admin-plugins #plugins-control-panel .pluginname
  2473. .componentname{font-size:11.9px;color:inherit;font-style:italic;margin-left:22px}#page-admin-plugins #plugins-control-panel .version
  2474. .versionnumber{font-size:11.9px;color:inherit;font-style:italic}#page-admin-plugins #plugins-control-panel .uninstall
  2475. a{color:#b94a48}#page-admin-plugins #plugins-control-panel .notes
  2476. .label{margin-right:3px}#page-admin-plugins #plugins-control-panel .notes
  2477. .requiredby{font-size:11.9px;color:inherit;font-style:italic}#plugins-check-page .page-description{color:inherit;font-style:italic}#plugins-check-page .checkforupdates
  2478. .singlebutton{margin:5px
  2479. 0;padding:0}#plugins-check-page .checkforupdates .singlebutton div,#plugins-check-page .checkforupdates .singlebutton
  2480. input{margin:0
  2481. 3px 0 0}#plugins-check-page #plugins-check-info .actions>div{display:inline-block;margin-right:1em}#plugins-check-page #plugins-check-info .actions
  2482. .singlebutton{margin:5px
  2483. 0;padding:0}#plugins-check-page #plugins-check-info .actions .singlebutton div,#plugins-check-page #plugins-check-info .actions .singlebutton
  2484. input{margin:0
  2485. 3px 0 0}#plugins-check-page #plugins-check .requires-ok{color:inherit;font-style:italic}#plugins-check-page #plugins-check .status-downgrade td,#plugins-check-page #plugins-check .status-missing
  2486. td{background-color:#f2dede}#plugins-check-page #plugins-check .displayname
  2487. .pluginicon{margin-right:5px;width:16px}#plugins-check-page #plugins-check .displayname
  2488. .plugindir{color:inherit;font-style:italic;font-size:11.9px}#plugins-check-page #plugins-check .requires
  2489. ul{margin-left:13px}#plugins-check-page #plugins-check .status
  2490. .actionbutton{margin:5px
  2491. 0;padding:0}#plugins-check-page #plugins-check .status .actionbutton
  2492. input{margin:0}#plugins-check-page .plugins-check-dependencies-actions>div{display:inline-block;margin-right:1em}#plugins-check-page .plugins-check-dependencies-actions
  2493. .singlebutton{margin:5px
  2494. 0;padding:0}#plugins-check-page .plugins-check-dependencies-actions .singlebutton div,#plugins-check-page .plugins-check-dependencies-actions .singlebutton
  2495. input{margin:0
  2496. 3px 0 0}#plugins-check-page #plugins-check-available-dependencies .displayname
  2497. .component{font-size:11.9px;color:inherit;font-style:italic}#plugins-check-page #plugins-check-available-dependencies .info .actions>div{display:inline-block;margin-right:1em}#plugins-check-page #plugins-check-available-dependencies .info .actions
  2498. .dependencyinstall{display:block;margin:5px
  2499. 0;padding:0}#plugins-check-page #plugins-check-available-dependencies .info .actions .dependencyinstall
  2500. input{margin:0}#plugins-check-page .pluginupdateinfo,#plugins-control-panel
  2501. .pluginupdateinfo{background-color:#d9edf7;padding:5px;margin:10px
  2502. 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}#plugins-check-page .pluginupdateinfo.maturity50,#plugins-control-panel
  2503. .pluginupdateinfo.maturity50{background-color:#f2dede}#plugins-check-page .pluginupdateinfo.maturity100,#plugins-check-page .pluginupdateinfo.maturity150,#plugins-control-panel .pluginupdateinfo.maturity100,#plugins-control-panel
  2504. .pluginupdateinfo.maturity150{background-color:#fcf8e3}#plugins-check-page .pluginupdateinfo .info,#plugins-control-panel .pluginupdateinfo
  2505. .info{display:inline-block}#plugins-check-page .pluginupdateinfo .separator:after,#plugins-control-panel .pluginupdateinfo .separator:after{content:" | "}#plugins-check-page .pluginupdateinfo .singlebutton,#plugins-control-panel .pluginupdateinfo
  2506. .singlebutton{margin:5px
  2507. 0;padding:0}#plugins-check-page .pluginupdateinfo .singlebutton div,#plugins-check-page .pluginupdateinfo .singlebutton input,#plugins-control-panel .pluginupdateinfo .singlebutton div,#plugins-control-panel .pluginupdateinfo .singlebutton
  2508. input{margin:0
  2509. 3px 0 0}.plugins-management-confirm-buttons>div{display:inline-block;margin:1em
  2510. 1em 1em 0}.plugins-management-confirm-buttons
  2511. .continue{padding:0}.plugins-management-confirm-buttons .continue div,.plugins-management-confirm-buttons .continue
  2512. input{margin:0}.uninstalldeleteconfirmexternal{background-color:#fcf8e3;padding:.5em 1em;margin:5px
  2513. 0 10px}#page-admin-index
  2514. .upgradepluginsinfo{text-align:center}#page-admin-index .adminwarning.availableupdatesinfo .moodleupdateinfo .separator:after{content:" | "}.dir-rtl #plugins-check
  2515. .pluginupdateinfo{text-align:center;direction:ltr}.dir-rtl #plugins-check .requires-ok{text-align:left;direction:ltr}#page-admin-mnet-peers
  2516. .box.deletedhosts{margin-bottom:1em;font-size:11.9px}#page-admin-mnet-peers .mform
  2517. .deletedhostinfo{background-color:#f2dede;border:2px
  2518. solid #eed3d7;padding:4px;margin-bottom:5px}#core-cache-plugin-summaries table,#core-cache-store-summaries
  2519. table{width:100%}#core-cache-definition-summaries table,#core-cache-lock-summary table,#core-cache-mode-mappings
  2520. table{margin:0
  2521. auto}#core-cache-store-summaries .default-store
  2522. td{font-style:italic}#core-cache-lock-summary .new-instance,#core-cache-mode-mappings .edit-link,#core-cache-rescan-definitions{margin-top:.5em;text-align:center}.tinymcesubplugins
  2523. img.icon{padding-top:0;padding-bottom:0}.maintenancewarning{padding:3px
  2524. 1em;text-align:center;position:fixed;bottom:0;right:0;overflow:hidden;z-index:1}.maintenancewarning.error{color:#b94a48;background-color:#f2dede;border:2px
  2525. solid #eed3d7;font-weight:700}.maintenancewarning.warning{color:#8a6d3b;background-color:#fcf8e3;border:2px
  2526. solid #fbeed5}#adminsettings .form-overridden{color:#3a87ad;background-color:#d9edf7}.calendar_event_course{background-color:#ffd3bd}.calendar_event_global{background-color:#d6f8cd}.calendar_event_group{background-color:#fee7ae}.calendar_event_user{background-color:#dce7ec}.path-calendar
  2527. .calendartable{width:100%}.path-calendar .calendartable td,.path-calendar .calendartable
  2528. th{width:14%;vertical-align:top;text-align:center;border:0}.path-calendar .calendar-controls .current,.path-calendar .calendar-controls .next,.path-calendar .calendar-controls
  2529. .previous{display:block;float:left;width:12%}.path-calendar .calendar-controls
  2530. .previous{text-align:left}.path-calendar .calendar-controls
  2531. .current{text-align:center;width:76%}.path-calendar .calendar-controls
  2532. .next{text-align:right}.path-calendar .filters
  2533. table{border-collapse:separate;border-spacing:2px;width:100%}.path-calendar
  2534. .cal_courses_flt{float:left}.path-calendar .cal_courses_flt
  2535. label{margin-right:.45em}.path-calendar
  2536. .maincalendar{vertical-align:top;padding:0}.path-calendar .maincalendar
  2537. .bottom{text-align:center;padding:5px
  2538. 0 0}.path-calendar .maincalendar
  2539. .heightcontainer{height:100%;position:relative}.path-calendar .maincalendar
  2540. .calendarmonth{width:98%;margin:10px
  2541. auto}.path-calendar .maincalendar .calendarmonth
  2542. ul{margin:0}.path-calendar .maincalendar .calendarmonth ul
  2543. li{list-style-type:none;margin-top:4px}.path-calendar .maincalendar .calendarmonth
  2544. td{height:5em}.path-calendar .maincalendar .calendar-controls .next,.path-calendar .maincalendar .calendar-controls
  2545. .previous{width:30%}.path-calendar .maincalendar .calendar-controls
  2546. .current{width:39.95%}.path-calendar .maincalendar
  2547. .controls{width:98%;margin:10px
  2548. auto}.path-calendar .maincalendar .calendar_event_course,.path-calendar .maincalendar .calendar_event_global,.path-calendar .maincalendar .calendar_event_group,.path-calendar .maincalendar
  2549. .calendar_event_user{border-width:1px 1px 1px 12px;border-style:solid}.path-calendar .maincalendar
  2550. .calendar_event_course{border-color:#ffd3bd}.path-calendar .maincalendar
  2551. .calendar_event_global{border-color:#d6f8cd}.path-calendar .maincalendar
  2552. .calendar_event_group{border-color:#fee7ae}.path-calendar .maincalendar
  2553. .calendar_event_user{border-color:#dce7ec}.path-calendar .maincalendar .calendar-event-panel{background-color:#eee;border:2px
  2554. solid #eee}.path-calendar .maincalendar .calendar-event-panel .yui3-overlay-content{padding:19px;background-color:#fdfdfd;border:1px
  2555. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.path-calendar .maincalendar .calendar-controls
  2556. .current{font-family:inherit;font-weight:700;color:inherit;font-size:25px;line-height:1.2}.path-calendar .maincalendar .calendartable li,.path-calendar .maincalendar .calendartable
  2557. td{padding:5px}.path-calendar .maincalendar .calendartable
  2558. li{padding-left:10px;text-align:left}.path-calendar .maincalendar
  2559. .header{overflow:hidden}.path-calendar .maincalendar .header
  2560. .buttons{float:right}.path-calendar .maincalendar
  2561. .eventlist{margin:0}.path-calendar .maincalendar .eventlist
  2562. .event{width:92%;border-spacing:0;border-collapse:separate;position:relative;padding:20px
  2563. 4%;margin-bottom:20px;background-color:#fdfdfd;border:1px
  2564. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);list-style-type:none}.path-calendar .maincalendar .eventlist .event>img{padding-top:3px;float:left}.path-calendar .maincalendar .eventlist .event
  2565. .name{font-size:17.5px;font-weight:200;line-height:24px;float:left;margin:0}.path-calendar .maincalendar .eventlist .event .course,.path-calendar .maincalendar .eventlist .event
  2566. .name{margin-bottom:5px}.path-calendar .maincalendar .eventlist .event
  2567. .date{float:right}.path-calendar .maincalendar .eventlist .event .course,.path-calendar .maincalendar .eventlist .event
  2568. .subscription{float:left;clear:left}.path-calendar .maincalendar .eventlist .event
  2569. .side{width:22px}.path-calendar .maincalendar .eventlist .event
  2570. .description{background-color:#fff;padding:5px;clear:both}.path-calendar .maincalendar .eventlist .event .description
  2571. .commands{position:absolute;right:0;top:0;margin:3px}.path-calendar .maincalendar .eventlist .event
  2572. .commands{position:absolute;top:2px;right:2px}.path-calendar .maincalendar .eventlist .event .commands
  2573. a{margin:0
  2574. 3px}.dir-rtl.path-calendar
  2575. .cal_courses_flt{float:right}.dir-rtl.path-calendar .cal_courses_flt
  2576. label{margin-left:.45em;margin-right:0}.dir-rtl.path-calendar .maincalendar .calendar_event_course,.dir-rtl.path-calendar .maincalendar .calendar_event_global,.dir-rtl.path-calendar .maincalendar .calendar_event_group,.dir-rtl.path-calendar .maincalendar
  2577. .calendar_event_user{border-left-width:1px;border-right-width:12px}.dir-rtl.path-calendar .maincalendar .calendar-controls
  2578. .next{text-align:left}.dir-rtl.path-calendar .maincalendar .calendar-controls .previous,.dir-rtl.path-calendar .maincalendar .calendartable li,.dir-rtl.path-calendar .maincalendar .calendartable
  2579. td{text-align:right}.dir-rtl.path-calendar .maincalendar .calendartable
  2580. li{padding-right:10px;padding-left:5px}.dir-rtl.path-calendar .maincalendar .header
  2581. .buttons{float:left}.dir-rtl.path-calendar .maincalendar .eventlist .event .name,.dir-rtl.path-calendar .maincalendar .eventlist .event>img{float:right}.dir-rtl.path-calendar .maincalendar .eventlist .event
  2582. .date{float:left}.dir-rtl.path-calendar .maincalendar .eventlist .event .description
  2583. .commands{right:inherit;left:0}.dir-rtl.path-calendar .maincalendar .eventlist .event .course,.dir-rtl.path-calendar .maincalendar .eventlist .event
  2584. .subscription{float:right;clear:right}.dir-rtl.path-calendar .maincalendar .eventlist .event
  2585. .commands{left:2px;right:inherit}#page-calendar-export
  2586. .indent{padding-left:20px}.block
  2587. .minicalendar{max-width:280px;margin:0
  2588. auto;width:100%}.block .minicalendar td,.block .minicalendar
  2589. th{padding:2px;font-size:.8em;text-align:center}.block .minicalendar
  2590. td.weekend{color:inherit;font-style:italic}.block .minicalendar td
  2591. a{width:100%;height:100%;display:block}.block .minicalendar
  2592. td.duration_global{border-top:1px solid #d6f8cd;border-bottom:1px solid #d6f8cd}.block .minicalendar
  2593. td.duration_global.duration_finish{background-color:#d6f8cd}.block .minicalendar
  2594. td.duration_course{border-top:1px solid #ffd3bd;border-bottom:1px solid #ffd3bd}.block .minicalendar
  2595. td.duration_course.duration_finish{background-color:#ffd3bd}.block .minicalendar
  2596. td.duration_group{border-top:1px solid #fee7ae;border-bottom:1px solid #fee7ae}.block .minicalendar
  2597. td.duration_group.duration_finish{background-color:#fee7ae}.block .minicalendar
  2598. td.duration_user{border-top:1px solid #dce7ec;border-bottom:1px solid #dce7ec}.block .minicalendar
  2599. td.duration_user.duration_finish{background-color:#dce7ec}.block .minicalendar
  2600. caption{font-size:inherit;font-weight:inherit;line-height:inherit;text-align:center}.block .calendar-event-panel{background-color:#eee;border:1px
  2601. solid #eee}.block .calendar-event-panel .yui3-overlay-content{padding:19px;background-color:#fdfdfd;border:1px
  2602. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.block .calendar-event-panel .yui3-overlay-content
  2603. h2.eventtitle{line-height:1.2;font-size:18px}.block .calendar-event-panel .yui3-overlay-content .eventcontent
  2604. img{padding-right:5px}.block .calendar-controls .current,.block .calendar-controls .next,.block .calendar-controls
  2605. .previous{display:block;float:left}.block .calendar-controls
  2606. .previous{text-align:left;width:12%}.block .calendar-controls
  2607. .current{text-align:center;width:76%}.block .calendar-controls
  2608. .next{text-align:right;width:12%}.block .calendar_filters
  2609. ul{list-style:none;margin:0}.block .calendar_filters
  2610. li{margin-bottom:.2em}.block .calendar_filters li span
  2611. img{padding:0
  2612. .2em}.block .calendar_filters
  2613. .eventname{padding-left:.2em}.block .content
  2614. h3.eventskey{margin-top:.5em}.dir-rtl .block .calendar_filters
  2615. .eventname{padding-right:.2em;padding-left:0}.dir-rtl .block .calendar-event-panel .yui3-overlay-content .eventcontent
  2616. img{padding-right:0;padding-left:5px}.ical-link{font-size:10px;font-weight:700;background-color:#f60;padding:0
  2617. 5px;color:#fff;border-top:1px solid #f93;border-left:1px solid #f93;border-bottom:1px solid #013;border-right:1px solid #013}.ical-link:active,.ical-link:focus,.ical-link:hover,.ical-link:visited{color:#fff;text-decoration:none}@media (min-width:768px){#page-calender-view .container-fluid{min-width:1024px}}.section_add_menus{text-align:right;clear:both}.section-modchooser{clear:both}.dir-rtl
  2618. .section_add_menus{text-align:left;clear:both}.section_add_menus .horizontal div,.section_add_menus .horizontal
  2619. form{display:inline}.section_add_menus
  2620. optgroup{font-weight:400;font-style:italic}.section_add_menus
  2621. .urlselect{margin-left:.4em}.dir-rtl .section_add_menus
  2622. .urlselect{margin-right:.4em;margin-left:0}.section_add_menus .urlselect
  2623. select{margin-left:.2em}.dir-rtl .section_add_menus .urlselect
  2624. select{margin-right:.2em;margin-left:0}.section_add_menus .urlselect
  2625. img.iconhelp{padding:0;margin:0;vertical-align:text-bottom}.sitetopic
  2626. ul.section{margin:0}.course-content
  2627. ul.section{margin:1em}.section
  2628. .side.left{float:left}.section
  2629. .side.right{float:right}.section
  2630. .spinner{height:16px;width:16px}.section .activity
  2631. .spinner{left:100%;position:absolute;vertical-align:text-bottom}.section .activity
  2632. .actions{position:absolute;right:0;top:0}.section .activity .activityinstance,.section .activity
  2633. .contentwithoutlink{min-width:40%;display:table-cell;padding-right:4px;min-height:2em}.section .activity .activityinstance .dimmed img.activityicon,.section .activity .contentwithoutlink .dimmed
  2634. img.activityicon{opacity:.5;filter:alpha(opacity=50)}.section .label .activityinstance,.section .label
  2635. .contentwithoutlink{padding-right:32px;display:block;height:inherit}.section .label .mod-indent-outer{padding-left:24px;display:block}.section
  2636. .filler{width:16px;height:16px;padding:.3em;display:inline-block}.section .activity.editor_displayed .moodle-actionmenu,.section .activity.editor_displayed
  2637. a.editing_title{display:none}.section .activity.editor_displayed
  2638. div.activityinstance{padding-right:initial}.section .activity.editor_displayed div.activityinstance
  2639. input{margin-bottom:initial;padding-top:initial;padding-bottom:initial;vertical-align:text-bottom}.dir-rtl .section
  2640. .side.left{float:right}.dir-rtl .section
  2641. .side.right{float:left}.dir-rtl .section .activity
  2642. .spinner{left:auto;right:100%}.dir-rtl .section .activity
  2643. .actions{left:0;right:auto}.dir-rtl .section .activity .activityinstance,.dir-rtl .section .activity
  2644. .contentwithoutlink{padding-left:4px;padding-right:initial}.dir-rtl .section .activity.editor_displayed
  2645. div.activityinstance{padding-left:initial}.activity
  2646. img.activityicon{margin-right:6px;vertical-align:text-bottom}.dir-rtl .section .activity
  2647. img.activityicon{margin-left:6px;margin-right:0}.section .activity .activityinstance,.section .activity .activityinstance
  2648. div{display:inline-block}.editing .section .activity
  2649. .editing_move{position:absolute;left:0;top:0}.editing .section .activity .mod-indent-outer{padding-left:32px}.editing .section .activity .activityinstance,.editing .section .activity
  2650. .contentwithoutlink{padding-right:200px}.dir-rtl.editing .section .activity .activityinstance,.dir-rtl.editing .section .activity
  2651. .contentwithoutlink{padding-right:0}.dir-rtl.editing .section .activity
  2652. .editing_move{left:auto;right:0}.dir-rtl.editing .section .activity .mod-indent-outer{padding-left:0;padding-right:32px}.editing_hide+.editing_assign,.editing_show+.editing_assign{margin-left:20px}.section .activity
  2653. .commands{white-space:nowrap;display:inline}.section
  2654. .activity.modtype_label.label{font-weight:400;padding:.2em}.section
  2655. li.activity{padding:.2em;clear:both}.section .activity .activityinstance
  2656. .groupinglabel{padding-left:30px}.dir-rtl .section .activity .activityinstance
  2657. .groupinglabel{padding-right:30px}.section .activity .availabilityinfo,.section .activity
  2658. .contentafterlink{margin-top:.5em;margin-left:30px}.dir-rtl .section .activity .availabilityinfo,.dir-rtl .section .activity
  2659. .contentafterlink{margin-left:0;margin-right:30px}.section .activity .contentafterlink
  2660. p{margin:.5em 0}.editing .section .activity.action-menu-shown,.editing .section .activity:hover{background-color:#eee}.course-content
  2661. .current{background-color:#d9edf7}.course-content .section-summary{border:1px
  2662. solid #ddd;margin-top:5px;list-style:none}.course-content .section-summary .section-title{margin:2px
  2663. 5px 10px}.course-content .section-summary
  2664. .summarytext{margin:2px
  2665. 5px}.course-content .section-summary .section-summary-activities .activity-count{color:inherit;font-style:italic;font-size:11.9px;margin:3px;white-space:nowrap;display:inline-block}.course-content .section-summary
  2666. .summary{margin-top:5px}.course-content .single-section{margin-top:1em}.course-content .single-section .section-navigation{display:block;padding:.5em;margin-bottom:-.5em}.course-content .single-section .section-navigation
  2667. .title{font-weight:700;font-size:108%;clear:both}.course-content .single-section .section-navigation .mdl-left{font-weight:400;float:left;margin-right:1em}.dir-rtl .course-content .single-section .section-navigation .mdl-left{float:right}.course-content .single-section .section-navigation .mdl-left
  2668. .larrow{margin-right:.1em}.course-content .single-section .section-navigation .mdl-right{font-weight:400;float:right;margin-left:1em}.dir-rtl .course-content .single-section .section-navigation .mdl-right{float:left}.course-content .single-section .section-navigation .mdl-right
  2669. .rarrow{margin-left:.1em}.course-content .single-section .section-navigation .mdl-bottom,.course-content ul
  2670. li.section.main{margin-top:0}.course-content ul li.section.hidden .activity .activityinstance,.course-content ul li.section.hidden .sectionname>span{margin-left:10px;margin-right:10px}.course-content ul.topics li.section .content,.course-content ul.weeks li.section
  2671. .content{margin-right:20px;margin-left:20px;padding:0}.course-content{margin-top:0}.course-content ul.topics
  2672. li.section{padding-bottom:20px}.course-content ul.topics li.section
  2673. .summary{margin-left:25px}.course-content li.section
  2674. ul{list-style:disc}.course-content li.section ul
  2675. ul{list-style:circle}.course-content li.section ul ul
  2676. ul{list-style:square}.course-content li.section li.activity
  2677. ul{list-style:disc}.course-content li.section li.activity ul
  2678. ul{list-style:circle}.course-content li.section li.activity ul ul
  2679. ul{list-style:square}.path-course-view
  2680. .completionprogress{margin-left:25px;display:block;float:right;height:20px;position:relative}#page-site-index
  2681. .subscribelink{text-align:right}#frontpage-category-combo h2,#frontpage-category-names h2,#frontpage-course-list h2,#site-news-forum
  2682. h2{margin-bottom:9px}.path-course-view a.reduce-sections{padding-left:.2em}.path-course-view
  2683. .subscribelink{text-align:right}.path-course-view
  2684. .unread{margin-left:30px}.dir-rtl.path-course-view
  2685. .unread{margin-right:30px}.path-course-view .block.drag
  2686. .header{cursor:move}.path-course-view
  2687. .completionprogress{text-align:right}.dir-rtl.path-course-view
  2688. .completionprogress{text-align:left}.path-course-view .single-section
  2689. .completionprogress{margin-right:5px}.path-course-view .section
  2690. .summary{line-height:normal}.path-course-view li.activity>div,.path-site li.activity>div{position:relative;padding:0
  2691. 16px 0 0}.dir-rtl.path-course-view li.activity>div,.dir-rtl.path-site li.activity>div{position:relative;padding:0
  2692. 0 0 16px}.path-course-view li.activity span.autocompletion
  2693. img{vertical-align:text-bottom}.path-course-view li.activity form.togglecompletion
  2694. img{max-width:none}.path-course-view li.activity form.togglecompletion
  2695. .ajaxworking{width:16px;height:16px;position:absolute;right:22px;top:3px;background:url(/theme/image.php/essential/core/1489002274/i/ajaxloader) no-repeat}.dir-rtl.path-course-view
  2696. .completionprogress{float:none}.dir-rtl.path-course-view li.activity form.togglecompletion
  2697. .ajaxworking{right:-22px}li.section.hidden span.commands a.editing_hide,li.section.hidden span.commands
  2698. a.editing_show{cursor:default}ul.weeks
  2699. h3.sectionname{white-space:nowrap}.editing ul.weeks
  2700. h3.sectionname{white-space:normal}.single-section
  2701. h3.sectionname{text-align:center;clear:both}.section
  2702. img.movetarget{height:16px;width:80px}input.titleeditor{width:330px;vertical-align:text-bottom}span.editinstructions{position:absolute;top:0;margin-top:-22px;margin-left:30px;line-height:16px;font-size:11.9px;padding:.1em .4em;background-color:#d9edf7;color:#3a87ad;text-decoration:none;z-index:9999;-webkit-box-shadow:2px 2px 5px 1px #ccc;-moz-box-shadow:2px 2px 5px 1px #ccc;box-shadow:2px 2px 5px 1px #ccc;border:1px
  2703. solid #bce8f1}#dndupload-status{position:fixed;left:0;width:40%;margin:0
  2704. 30%;padding:6px;border:1px
  2705. solid #bce8f1;text-align:center;background:#d9edf7;color:#3a87ad;z-index:1;-webkit-box-shadow:2px 2px 5px 1px #ccc;-moz-box-shadow:2px 2px 5px 1px #ccc;box-shadow:2px 2px 5px 1px #ccc;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px}.dndupload-preview{color:#909090;border:1px
  2706. dashed #909090;list-style:none;margin-top:.2em;padding:.3em}.dndupload-preview
  2707. img.icon{vertical-align:text-bottom;padding:0}.dndupload-progress-outer{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.dndupload-progress-inner{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.dndupload-hidden{display:none}#page-course-editsection .singlebutton,#page-course-index .singlebutton,#page-course-index-category .singlebutton,#page-course-pending
  2708. .singlebutton{text-align:center}#page-admin-course-manage #movecourses td
  2709. img{margin:0
  2710. .22em;vertical-align:text-bottom}#page-admin-course-manage #movecourses td
  2711. img.icon{padding:0}#coursesearch{margin-top:1em;text-align:center}#page-course-pending
  2712. .pendingcourserequests{margin-bottom:1em}#page-course-pending .pendingcourserequests
  2713. .singlebutton{display:inline}#page-course-pending .pendingcourserequests
  2714. .cell{padding:0
  2715. 5px}#page-course-pending .pendingcourserequests
  2716. .cell.c6{white-space:nowrap}.coursebox{margin-bottom:15px;border:1px
  2717. dotted #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:5px}.coursebox>.info>.coursename
  2718. a{display:block;background-repeat:no-repeat;padding-left:21px;background-position:left .2em}.dir-rtl .coursebox>.info>.coursename
  2719. a{padding-left:0}.coursebox .content .coursefile,.coursebox .content .courseimage,.coursebox .content .teachers,.coursebox>.info>.coursename{float:left;clear:left}.coursebox .content .coursefile,.coursebox .content .courseimage,.coursebox .content
  2720. .teachers{width:40%}.dir-rtl .coursebox .content .coursefile,.dir-rtl .coursebox .content .courseimage,.dir-rtl .coursebox .teachers,.dir-rtl .coursebox>.info>.coursename{float:right;clear:right}.coursebox>.info>h3.coursename{margin:5px;line-height:1}.coursebox>.info>.coursename{margin:5px;padding:0}.coursebox .content .teachers
  2721. li{list-style-type:none;padding:0;margin:0}.coursebox .enrolmenticons,.coursebox
  2722. .moreinfo{padding:3px
  2723. 0;float:right}.coursebox .enrolmenticons img,.coursebox .moreinfo
  2724. img{margin:0
  2725. .2em}.coursebox
  2726. .content{clear:both}.coursebox .content .coursecat,.coursebox .content
  2727. .summary{float:right;width:55%}.coursebox .content
  2728. .coursecat{text-align:right;clear:right}.coursebox.remotecoursebox
  2729. .remotecourseinfo{float:left;width:40%}.coursebox .content .coursecat,.coursebox .content .coursefile,.coursebox .content .courseimage,.coursebox .content .summary,.coursebox .content .teachers,.coursebox.remotecoursebox
  2730. .remotecourseinfo{margin:3px
  2731. 5px;padding:0}.coursebox.remotehost>.info>.categoryname
  2732. a{background-image:url(/theme/image.php/essential/core/1489002274/i/mnethost)}.dir-rtl .coursebox>.info>.categoryname
  2733. a{padding-left:0;padding-right:21px;background-position:center right}.dir-rtl .coursebox .content .coursefile,.dir-rtl .coursebox .content .courseimage,.dir-rtl .coursebox .teachers,.dir-rtl .coursebox>.info>.categoryname{float:right;clear:right}.dir-rtl .coursebox .coursecat,.dir-rtl .coursebox .enrolmenticons,.dir-rtl .coursebox .moreinfo,.dir-rtl .coursebox
  2734. .summary{float:left}.dir-rtl .coursebox
  2735. .coursecat{text-align:left;clear:left}.coursebox.collapsed{margin-bottom:0}.coursebox.collapsed>.content{display:none}.courses
  2736. .coursebox.collapsed{border:1px
  2737. solid #ddd;padding:5px}.courses
  2738. .coursebox.even{background-color:#f9f9f9}.course_category_tree .courses>.paging.paging-morelink:hover,.courses .coursebox:hover{background-color:#f5f5f5}.course_category_tree .category
  2739. .numberofcourse{font-size:11.9px}.course_category_tree
  2740. .controls{visibility:hidden}.course_category_tree .controls
  2741. div{display:inline;cursor:pointer}.jsenabled .course_category_tree
  2742. .controls{visibility:visible}.course_category_tree
  2743. .controls{margin-bottom:5px;text-align:right;float:right}.course_category_tree .controls
  2744. div{padding-right:2em;font-size:75%}.course_category_tree .category>.info>.categoryname{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed_empty);background-repeat:no-repeat;padding:2px
  2745. 18px;margin:3px;background-position:center left}.dir-rtl .course_category_tree .category>.info>.categoryname{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed_empty_rtl);background-position:center right}.course_category_tree .category.with_children>.info>.categoryname{background-image:url(/theme/image.php/essential/core/1489002274/t/expanded);cursor:pointer}.course_category_tree .category.with_children.collapsed>.info>.categoryname{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed)}.dir-rtl .course_category_tree .category.with_children.collapsed>.info>.categoryname{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed_rtl)}.course_category_tree .category.collapsed>.content{display:none}.course_category_tree .category>.info{background-color:#f5f5f5;border:1px
  2746. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3;min-height:0;padding:0;margin:3px
  2747. 0;clear:both}.course_category_tree .category>.info
  2748. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.course_category_tree.frontpage-category-names .category>.info{background:0 0;border:none;margin:0}.course_category_tree .category>.content{padding-left:16px}.dir-rtl .course_category_tree .category>.content{padding-left:0;padding-right:16px}.course_category_tree .subcategories>.paging,.courses>.paging{margin:0;padding:5px;text-align:center}.course_category_tree .subcategories>.paging.paging-morelink,.courses>.paging.paging-morelink{text-align:left}.course_category_tree .paging.paging-morelink
  2749. a{font-size:11.9px}.dir-rtl .course_category_tree .paging.paging-morelink,.dir-rtl .courses>.paging.paging-morelink{text-align:right}#page-course-index-category
  2750. .generalbox.info{margin-bottom:15px;border:1px
  2751. dotted #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:5px}#page-course-index-category
  2752. .categorypicker{text-align:center;margin:10px
  2753. 0 20px}.section .activity .iconsmall,.section .summary
  2754. .iconsmall{width:16px;height:16px}.section .editing_title
  2755. .iconsmall{width:12px;height:12px;margin:8px
  2756. 8px 0 0;padding:4px
  2757. 8px 0 0;vertical-align:text-bottom}.section .moodle-actionmenu
  2758. .iconsmall{max-width:none!important;width:16px;height:16px;padding:4px;vertical-align:text-bottom}.section .moodle-actionmenu[data-enhanced] .menu
  2759. img{width:12px;height:12px}.dir-rtl .section .editing_title
  2760. .iconsmall{margin:8px
  2761. 0 0 8px;padding:4px
  2762. 0 0 8px}#course-category-listings{background-color:transparent;margin-bottom:200px}#course-category-listings.columns-2>#course-listing>div{position:relative;left:-1px}#course-category-listings.columns-3>#course-listing>div{height:100%}#course-category-listings>div>div{min-height:300px}#course-category-listings>div>div>ul.ml>li:first-child>div{border-top:0}#course-category-listings
  2763. h3{margin:0;padding:.4rem .6rem .3rem}#course-category-listings
  2764. h4{margin:1rem 0 0;padding:.6rem 1rem .5rem}#course-category-listings .moodle-actionmenu{white-space:nowrap}#course-category-listings .moodle-actionmenu[data-enhance] .toggle-display
  2765. img{width:auto}#course-category-listings .moodle-actionmenu[data-enhance] .toggle-display.textmenu{padding-right:4px}#course-category-listings .moodle-actionmenu[data-enhance] .toggle-display.textmenu
  2766. .caret{margin-top:12px}#course-category-listings .listing-actions{text-align:center;padding:.4rem .3rem .3rem;line-height:2.2em}#course-category-listings .listing-actions>.moodle-actionmenu,#course-category-listings .listing-actions>a{display:inline-block}#course-category-listings .listing-actions>.moodle-actionmenu .menu
  2767. a{padding-left:1rem}#course-category-listings .listing-actions .moodle-actionmenu:not([data-enhanced]) li{line-height:normal}#course-category-listings .listing-actions .moodle-actionmenu:not([data-enhanced])>.menubar
  2768. a{color:inherit;display:inline-block}#course-category-listings .listing-actions .moodle-actionmenu:not([data-enhanced])>.menubar a .caret,#course-category-listings .listing-actions .moodle-actionmenu:not([data-enhanced])>.menubar a>img{display:none}#course-category-listings .listing-actions .moodle-actionmenu:not([data-enhanced])>.menu .menu-action-text{display:inline-block}#course-category-listings
  2769. ul.ml{list-style:none;margin:1rem 0}#course-category-listings ul.ml
  2770. ul.ml{margin:0}#course-category-listings
  2771. li{line-height:2.2em}#course-category-listings li>div:hover{background-color:#f5f5f5}#course-category-listings li .tree-icon{margin:2px
  2772. 6px 0 0;width:12px;vertical-align:inherit}#course-category-listings li[data-selected='1']>div{background-color:#f9f9f9}#course-category-listings li[data-selected='1']>div:hover{background-color:#f5f5f5}#course-category-listings li .tree-icon{margin-left:0}#course-category-listings li li .tree-icon{margin-left:1em}#course-category-listings li li li .tree-icon{margin-left:2em}#course-category-listings li li li li .tree-icon{margin-left:3em}#course-category-listings li li li li li .tree-icon{margin-left:4em}#course-category-listings li li li li li li .tree-icon{margin-left:4.5em}#course-category-listings li li li li li li li .tree-icon{margin-left:5em}#course-category-listings li li li li li li li li .tree-icon{margin-left:5.5em}#course-category-listings .item-actions{margin-right:1em;display:inline-block;display:initial}#course-category-listings .item-actions .menubar img,#course-category-listings .item-actions>a
  2773. img{margin:0
  2774. 4px;height:12px;padding:0;vertical-align:inherit}#course-category-listings .item-actions.show .menu
  2775. li{line-height:20px}#course-category-listings .item-actions.show .menu
  2776. img{width:12px;max-width:none}#course-category-listings .item-actions .menu-action-text{vertical-align:inherit}#course-category-listings .listitem>div>.float-left{float:left}#course-category-listings .listitem>div>.float-right{float:right;text-align:right}#course-category-listings .listitem>div .item-actions .action-show{display:none}#course-category-listings .listitem>div .item-actions .action-hide{display:inline}#course-category-listings .listitem>div .without-actions{color:#333}#course-category-listings .listitem>div
  2777. .idnumber{color:#a1a1a8;margin-right:2em}#course-category-listings .listitem[data-visible="0"],#course-category-listings .listitem[data-visible="0"]>div>a{color:inherit;font-style:italic}#course-category-listings .listitem[data-visible="0"]>div .item-actions .action-show{display:inline}#course-category-listings .listitem[data-visible="0"]>div .item-actions .action-hide{display:none}#course-category-listings
  2778. .listitem.highlight{background-color:transparent}#course-category-listings .listitem.highlight>div,#course-category-listings .listitem.highlight>div:hover,#course-category-listings .listitem.highlight[data-selected='1']>div{background-color:#f5f5f5}#course-category-listings #course-listing .listitem
  2779. .categoryname{display:inline-block;margin-left:1em;color:#a1a1a8}#course-category-listings #course-listing .listitem
  2780. .coursename{display:inline-block}#course-category-listings #course-listing .listitem>div{padding-left:1rem}#course-category-listings #course-listing>.firstpage .listitem:first-child>div .item-actions .action-moveup,#course-category-listings #course-listing>.lastpage .listitem:last-child>div .item-actions .action-movedown{display:none}#course-category-listings #course-listing .bulk-action-checkbox{margin:-2px 6px 0 0}#course-category-listings #category-listing .listitem.collapsed>ul.ml{display:none}#course-category-listings #category-listing .listitem>div>.ba-checkbox{width:2.2em;text-align:center;margin:-1px .5em 0 0;padding-top:2px}#course-category-listings #category-listing .listitem.highlight>div>.ba-checkbox{background-color:#f5f5f5}#course-category-listings #category-listing .listitem[data-selected='1']>div>.ba-checkbox{margin:0
  2781. .5em 0 0;padding:0;background-color:inherit}#course-category-listings #category-listing .listitem:first-child>div .item-actions .action-moveup,#course-category-listings #category-listing .listitem:last-child>div .item-actions .action-movedown{display:none}#course-category-listings #category-listing .course-count{color:#a1a1a8;margin-right:2rem;min-width:3.5em;display:inline-block}#course-category-listings #category-listing .course-count
  2782. .smallicon{width:12px;margin-left:4px;vertical-align:inherit}#course-category-listings #category-listing .bulk-action-checkbox{margin-right:-3px}#course-category-listings #category-listing .category-listing>ul>.listitem:first-child{position:relative}#course-category-listings #category-listing .category-bulk-actions{margin:0
  2783. .5em .5em;position:relative}#course-category-listings .detail-pair{border-bottom:1px solid #ddd;margin:0
  2784. 1rem}#course-category-listings .detail-pair>*{display:inline-block;line-height:2.2rem}#course-category-listings .detail-pair .pair-key{font-weight:700;vertical-align:top}#course-category-listings .detail-pair .pair-key
  2785. span{margin-right:1rem;display:block}#course-category-listings .detail-pair .pair-value
  2786. select{max-width:100%}#course-category-listings .bulk-actions .detail-pair>*{display:block;width:100%}#course-category-listings .listing-pagination{text-align:center}#course-category-listings .listing-pagination .yui3-button{background-color:#fff;border:0;margin:.4rem .2rem .45rem;font-size:10.4px}#course-category-listings .listing-pagination .yui3-button.active-page{background-color:#e6e6e6}#course-category-listings .listing-pagination-totals{text-align:center}#course-category-listings .listing-pagination-totals.dimmed{color:inherit;font-style:italic;margin:.4rem 1rem .45rem}#course-category-listings .select-a-category .alert,#course-category-listings .select-a-category
  2787. .notifymessage{margin:1em}#course-category-listings #course-listing .listitem .drag-handle{display:none}.jsenabled #course-category-listings #course-listing .listitem .drag-handle{display:inline-block;margin:0
  2788. 6px 0 0;cursor:pointer}.dir-rtl #course-category-listings #category-listing,.dir-rtl #course-category-listings #course-listing{float:right;margin-left:0}.dir-rtl #course-category-listings .listitem>div>.float-left{float:right}.dir-rtl #course-category-listings .listitem>div>.float-right{float:left;text-align:left}.dir-rtl #course-category-listings li .tree-icon{margin:2px
  2789. 0 0 6px}.dir-rtl #course-category-listings li li .tree-icon{margin-right:1em}.dir-rtl #course-category-listings li li li .tree-icon{margin-right:2em}.dir-rtl #course-category-listings li li li li .tree-icon{margin-right:3em}.dir-rtl #course-category-listings li li li li li .tree-icon{margin-right:4em}.dir-rtl #course-category-listings li li li li li li .tree-icon{margin-right:4.5em}.dir-rtl #course-category-listings li li li li li li li .tree-icon{margin-right:5em}.dir-rtl #course-category-listings li li li li li li li li .tree-icon{margin-right:5.5em}.dir-rtl #course-category-listings #category-listing .listitem>div{margin-right:.5em;margin-left:0}.dir-rtl #course-category-listings #category-listing .listitem>div>.ba-checkbox{margin:-1px 0 0 .5em}.dir-rtl #course-category-listings #category-listing .listitem[data-selected='1']>div>.ba-checkbox{margin:0
  2790. 0 0 .5em}.dir-rtl #course-category-listings #category-listing .course-count{margin-left:2rem}.dir-rtl #course-category-listings #category-listing .course-count
  2791. .smallicon{margin-left:0;margin-right:4px}.dir-rtl #course-category-listings #category-listing .bulk-action-checkbox{margin-left:-3px;margin-right:0}.dir-rtl #course-category-listings #course-listing{padding-right:24px}.dir-rtl #course-category-listings #course-listing .listitem
  2792. .idnumber{color:#a1a1a8;padding-right:2em}.dir-rtl #course-category-listings #course-listing .listitem
  2793. .categoryname{display:inline-block;margin-right:1em;margin-left:0}.dir-rtl #course-category-listings #course-listing .listitem .drag-handle{margin:0
  2794. 6px}.dir-rtl #course-category-listings #course-listing .listitem>div{padding-left:1rem}.dir-rtl #course-category-listings #course-listing .bulk-action-checkbox{vertical-align:middle;margin:-2px 0 0 6px}.dir-rtl #course-category-listings .detail-pair>*{float:right;margin-right:0}.dir-rtl #course-category-listings .detail-pair .pair-key
  2795. span{margin-right:0;margin-left:0}.dir-rtl #course-category-listings .detail-pair .pair-value{margin-right:.5em}.coursecat-management-header{vertical-align:middle}.coursecat-management-header
  2796. h2{display:inline-block;text-align:left}.coursecat-management-header>div{display:inline-block;float:right;line-height:40px}.coursecat-management-header>div>div{margin:10px
  2797. 0;display:inline-block}.coursecat-management-header
  2798. select{max-width:300px;cursor:pointer;padding:.4em .5em .45em 1em;vertical-align:baseline;white-space:nowrap}.coursecat-management-header .view-mode-selector .moodle-actionmenu{white-space:nowrap;display:inline-block}.coursecat-management-header .view-mode-selector .moodle-actionmenu[data-enhanced].show .menu
  2799. a{padding-left:1em}.dir-rtl .coursecat-management-header
  2800. h2{text-align:right}.dir-rtl .coursecat-management-header>div{float:left;margin-right:1em;margin-left:0}.course-being-dragged-proxy{border:0;color:#0070a8;vertical-align:middle;padding:0
  2801. 0 0 4em}.course-being-dragged{opacity:.5;filter:alpha(opacity=50)}@media (min-width:1200px) and (max-width:1600px){#course-category-listings.columns-3{background-color:transparent;border:0}#course-category-listings.columns-3 #category-listing,#course-category-listings.columns-3 #course-listing{width:50%}#course-category-listings.columns-3 #category-listing>div,#course-category-listings.columns-3 #course-detail>div,#course-category-listings.columns-3 #course-listing>div{background-color:transparent}#course-category-listings.columns-3 #course-detail{width:100%;margin-top:1em}}@media (max-width:1199px){#course-category-listings.columns-2,#course-category-listings.columns-3{background-color:transparent;border:0}#course-category-listings.columns-2 #category-listing,#course-category-listings.columns-2 #course-detail,#course-category-listings.columns-2 #course-listing,#course-category-listings.columns-3 #category-listing,#course-category-listings.columns-3 #course-detail,#course-category-listings.columns-3 #course-listing{width:100%;margin:0
  2802. 0 1em}#course-category-listings.columns-2 #category-listing>div,#course-category-listings.columns-2 #course-detail>div,#course-category-listings.columns-2 #course-listing>div,#course-category-listings.columns-3 #category-listing>div,#course-category-listings.columns-3 #course-detail>div,#course-category-listings.columns-3 #course-listing>div{background-color:transparent}}.file-picker,.filemanager,.filepicker{font-size:11px}.file-picker a,.file-picker a:hover,.filemanager a,.filemanager a:hover{color:#555;text-decoration:none}.file-picker input[type=text],.filemanager input[type=text]{width:265px}.file-picker .fp-setlicense td,.filemanager .fp-license
  2803. td{max-width:265px}.file-picker .fp-setlicense select,.filemanager .fp-license
  2804. select{max-width:100%}.fp-content-center{height:100%;width:100%;display:table-cell;vertical-align:middle}.fp-content-hidden{visibility:hidden}.yui3-panel-focused{outline:0}#filesskin .yui3-panel-content{padding-bottom:20px;background:#F2F2F2;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;border:1px
  2805. solid #fff;display:inline-block;-webkit-box-shadow:5px 5px 20px 0 #666;-moz-box-shadow:5px 5px 20px 0 #666;box-shadow:5px 5px 20px 0 #666}#filesskin .yui3-widget-hd{-webkit-border-radius:10px 10px 0 0;-moz-border-radius:10px 10px 0 0;border-radius:10px 10px 0 0;border-bottom:1px solid #BBB;padding:5px;text-align:center;font-size:12px;color:#333;letter-spacing:1px;text-shadow:1px 1px 1px #fff;background-color:#ebebeb;background-image:-moz-linear-gradient(top,#fff,#ccc);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#ccc));background-image:-webkit-linear-gradient(top,#fff,#ccc);background-image:-o-linear-gradient(top,#fff,#ccc);background-image:linear-gradient(to bottom,#fff,#ccc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffcccccc',GradientType=0)}.fp-panel-button{background:#fff;padding:3px
  2806. 20px 2px;text-align:center;margin:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;display:inline-block;-webkit-box-shadow:2px 2px 3px .1px #999;-moz-box-shadow:2px 2px 3px .1px #999;box-shadow:2px 2px 3px .1px #999}.moodle-dialogue
  2807. h3{font-size:14px;margin:0;line-height:20px}.moodle-dialogue-base .filepicker .moodle-dialogue-wrap .moodle-dialogue-bd{padding:0}#filesskin .file-picker.fp-generallayout{width:859px;background:#FFF;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;border:1px
  2808. solid #CCC;position:relative}.file-picker .fp-repo-area{width:180px;overflow:auto;display:inline-block;float:left;height:525px;border-right:1px solid #BBB}.dir-rtl .file-picker .fp-repo-area{border-left:1px solid #BBB;border-right:none;float:right}.file-picker .fp-repo-items{float:none;width:auto;margin-left:181px}.moodle-dialogue-fullscreen .file-picker .fp-repo-items{margin-left:0;margin-right:0;float:left}.dir-rtl .file-picker .fp-repo-items{margin-left:0;margin-right:181px}.dir-rtl .moodle-dialogue-fullscreen .file-picker .fp-repo-items{margin-left:0;margin-right:0;float:right}.file-picker .fp-navbar{background:#F2F2F2;border-bottom:1px solid #BBB;min-height:40px;overflow:hidden}.file-picker .fp-navbar .fp-viewbar{margin:4px}.file-picker .fp-content{background:#FFF;clear:none;overflow:auto;height:452px}.filepicker.moodle-dialogue-fullscreen .file-picker .fp-content{width:100%}.file-picker .fp-content-loading{height:100%;width:100%;display:table;text-align:center}.file-picker .fp-content .fp-object-container{width:98%;height:98%}.dir-rtl .file-picker .fp-toolbar{padding:4px}.dir-rtl .file-picker .fp-repo-name{display:inline}.dir-rtl .file-picker .fp-pathbar{display:block;border-top:none}.dir-rtl .filemanager-toolbar
  2809. a{padding:0}.file-picker .fp-list{list-style-type:none;padding:0;float:left;width:100%;margin:0}.dir-rtl .file-picker .fp-list{float:left}.file-picker .fp-list .fp-repo
  2810. a{display:block;padding:.5em .7em}.file-picker .fp-list .fp-repo.active{background:#F2F2F2}.file-picker .fp-list .fp-repo-icon{padding:0
  2811. 7px 0 5px;width:16px;height:16px}.fp-toolbar{float:left}.dir-rtl .fp-toolbar{float:right}.dir-rtl .fp-toolbar div.disabled,.fp-toolbar .disabled,.fp-toolbar.empty{display:none}.fp-toolbar
  2812. div{display:block;float:left;margin-right:4px}.dir-rtl .fp-toolbar
  2813. div{display:block;float:right;margin-left:4px;margin-right:0}.fp-toolbar
  2814. img{vertical-align:-15%;margin-right:5px}.fp-toolbar .fp-tb-search{width:235px;height:27px}.fp-toolbar .fp-tb-search
  2815. input{background:url(/theme/image.php/essential/core/1489002274/a/search) 7px 7px no-repeat #fff;padding:2px
  2816. 6px 1px 27px;width:200px;height:27px;border:1px
  2817. solid #BBB}.fp-viewbar{float:right;height:30px;border:1px
  2818. solid #CCC;border-bottom:1px solid #B3B3B3;border-radius:4px;background:#fff}.fp-repo-items fp-viewbar{margin:4px}.dir-rtl .fp-toolbar
  2819. img{vertical-align:-35%}.dir-rtl .fp-viewbar{float:left}.fp-viewbar
  2820. a{width:30px;height:30px;border-right:1px solid #CCC;display:block;float:left}.fp-viewbar a.checked:hover,.fp-viewbar a:hover{background-image:radial-gradient(ellipse at center,#fff 60%,#dfdfdf 100%);background-color:#ebebeb}.fp-viewbar a.checked,.fp-viewbar a:active{background-image:radial-gradient(ellipse at center,#fff 40%,#dfdfdf 100%);background-color:#dfdfdf}.fp-viewbar a.fp-vb-icons{border-radius:4px 0 0 4px}.fp-viewbar a.fp-vb-tree{border-right:0;border-radius:0 4px 4px 0}.fp-viewbar a
  2821. img{margin:7px}.fp-viewbar.disabled
  2822. a{opacity:.45;background:0 0;cursor:default}.file-picker .fp-clear-left{clear:left}.dir-rtl .fp-vb-details a:hover{background:0 0;border:20px
  2823. solid #000}.dir-rtl .fp-vb-details.checked a:hover{background:0 0;border:40px
  2824. solid #000}.dir-rtl .fp-vb-tree a:hover{background:0 0;border:30px
  2825. solid #000}.dir-rtl .fp-vb-tree.checked a:hover{background:0 0;border:50px
  2826. solid #000}.file-picker .fp-pathbar{display:table-row}.fp-pathbar.empty{display:none}.fp-pathbar .fp-path-folder{background:url(/theme/image.php/essential/theme/1489002274/fp/path_folder) no-repeat;width:27px;height:12px;margin-left:4px}.dir-rtl .fp-pathbar .fp-path-folder{background:url(/theme/image.php/essential/theme/1489002274/fp/path_folder_rtl) right top no-repeat;width:auto;height:12px;margin-left:4px}.dir-rtl .fp-pathbar
  2827. span{display:inline-block;float:right;margin-left:32px}.fp-pathbar .fp-path-folder-name{margin-left:32px;line-height:20px}.dir-rtl .fp-pathbar .fp-path-folder-name{margin-right:32px;line-height:20px}.fp-iconview .fp-file{float:left;text-align:center;position:relative;margin:10px
  2828. 10px 35px}.fp-iconview .fp-thumbnail{min-width:110px;min-height:110px;line-height:110px;text-align:center;border:1px
  2829. solid #FFF;display:block}.fp-iconview .fp-thumbnail
  2830. img{border:1px
  2831. solid #ddd;padding:3px;vertical-align:middle;-webkit-box-shadow:1px 1px 2px 0 #ccc;-moz-box-shadow:1px 1px 2px 0 #ccc;box-shadow:1px 1px 2px 0 #ccc}.fp-iconview .fp-thumbnail:hover{background:#fff;border:1px
  2832. solid #ddd;-webkit-box-shadow:inset 0 0 10px 0 #ccc;-moz-box-shadow:inset 0 0 10px 0 #ccc;box-shadow:inset 0 0 10px 0 #ccc}.fp-iconview .fp-filename-field{height:33px;word-wrap:break-word;overflow:hidden;position:absolute}.fp-iconview .fp-filename-field:hover{overflow:visible;z-index:1000}.fp-iconview .fp-filename-field .fp-filename{background:#FFF;padding-top:5px;padding-bottom:12px;min-width:112px}.dir-rtl .fp-iconview .fp-file{float:right}.file-picker .yui3-datatable
  2833. table{border:0
  2834. solid #BBB;width:100%}#filesskin .file-picker .yui3-datatable-header{background:#FFF;border-bottom:1px solid #CCC;border-left:0 solid #FFF;color:#555}#filesskin .file-picker .yui3-datatable-odd .yui3-datatable-cell{background-color:#F6F6F6;border-left:0 solid #F6F6F6}#filesskin .file-picker .yui3-datatable-even .yui3-datatable-cell{background-color:#FFF;border-left:0 solid #FFF}.dir-rtl .file-picker .yui3-datatable-header{text-align:right}.file-picker .ygtvtn,.filemanager
  2835. .ygtvtn{background:url(/theme/image.php/essential/core/1489002274/y/tn) no-repeat;width:17px;height:22px}.dir-rtl .file-picker .ygtvtn,.dir-rtl .filemanager
  2836. .ygtvtn{background:url(/theme/image.php/essential/core/1489002274/y/tn_rtl) no-repeat;width:17px;height:22px}.file-picker .ygtvtm,.file-picker .ygtvtmh,.filemanager .ygtvtm,.filemanager
  2837. .ygtvtmh{background:url(/theme/image.php/essential/core/1489002274/y/tm) 0 10px no-repeat;width:13px;height:12px;cursor:pointer}.file-picker .ygtvtp,.filemanager
  2838. .ygtvtp{background:url(/theme/image.php/essential/core/1489002274/y/tp) 0 10px no-repeat;width:13px;height:12px;cursor:pointer}.dir-rtl .file-picker .ygtvtp,.dir-rtl .filemanager
  2839. .ygtvtp{background:url(/theme/image.php/essential/core/1489002274/y/tp_rtl) 0 10px no-repeat}.file-picker .ygtvtph,.filemanager
  2840. .ygtvtph{background:url(/theme/image.php/essential/core/1489002274/y/tp) 0 10px no-repeat;width:13px;height:22px;cursor:pointer}.dir-rtl .file-picker .ygtvtph,.dir-rtl .filemanager
  2841. .ygtvtph{background:url(/theme/image.php/essential/core/1489002274/y/tp_rtl) 0 10px no-repeat}.file-picker .ygtvln,.filemanager
  2842. .ygtvln{background:url(/theme/image.php/essential/core/1489002274/y/ln) no-repeat;width:17px;height:22px}.dir-rtl .file-picker .ygtvln,.dir-rtl .filemanager
  2843. .ygtvln{background:url(/theme/image.php/essential/core/1489002274/y/ln_rtl) no-repeat}.file-picker .ygtvlm,.file-picker .ygtvlmh,.filemanager .ygtvlm,.filemanager
  2844. .ygtvlmh{background:url(/theme/image.php/essential/core/1489002274/y/lm) 0 10px no-repeat;width:13px;height:12px;cursor:pointer}.file-picker .ygtvlp,.filemanager
  2845. .ygtvlp{background:url(/theme/image.php/essential/core/1489002274/y/lp) 0 10px no-repeat;width:13px;height:12px;cursor:pointer}.dir-rtl .file-picker .ygtvlp,.dir-rtl .filemanager
  2846. .ygtvlp{background:url(/theme/image.php/essential/core/1489002274/y/lp_rtl) 0 10px no-repeat}.file-picker .ygtvlph,.filemanager
  2847. .ygtvlph{background:url(/theme/image.php/essential/core/1489002274/y/lp) 0 10px no-repeat;width:13px;height:12px;cursor:pointer}.dir-rtl .file-picker .ygtvlph,.dir-rtl .filemanager
  2848. .ygtvlph{background:url(/theme/image.php/essential/core/1489002274/y/lp_rtl) 0 10px no-repeat}.file-picker .ygtvloading,.filemanager
  2849. .ygtvloading{background:url(/theme/image.php/essential/core/1489002274/y/loading) no-repeat;width:16px;height:22px}.file-picker .ygtvdepthcell,.filemanager
  2850. .ygtvdepthcell{background:url(/theme/image.php/essential/core/1489002274/y/vline) no-repeat;width:17px;height:32px}.file-picker .ygtvblankdepthcell,.filemanager
  2851. .ygtvblankdepthcell{width:17px;height:22px}a.ygtvspacer:hover{color:transparent;text-decoration:none}.ygtvlabel,.ygtvlabel:hover,.ygtvlabel:link,.ygtvlabel:visited{background-color:transparent;cursor:pointer;margin-left:2px;text-decoration:none}.file-picker .ygtvfocus,.filemanager
  2852. .ygtvfocus{background-color:#EEE}.fp-filename-icon{margin-top:10px;display:block;position:relative}.fp-icon{float:left;margin-top:-7px;width:24px;height:24px;margin-right:10px;text-align:center;line-height:24px}.dir-rtl .fp-icon{float:right;margin-left:10px;margin-right:0}.fp-icon
  2853. img{max-height:24px;max-width:24px;vertical-align:middle}.fp-filename{padding-right:10px}.dir-rtl .fp-filename{padding-left:10px;padding-right:0}.file-picker .fp-login-form{height:100%;width:100%;display:table}.file-picker .fp-login-form
  2854. table{margin:0
  2855. auto}.file-picker .fp-login-form
  2856. p{text-align:center;margin-top:3em}.file-picker .fp-login-form .fp-login-input
  2857. label{text-align:right;display:block}.file-picker .fp-login-form .fp-login-input
  2858. .input{text-align:left}.file-picker .fp-login-form input[type=checkbox]{width:15px;height:15px}.file-picker .fp-upload-form{height:100%;width:100%;display:table}.file-picker .fp-upload-form
  2859. table{margin:0
  2860. auto}.file-picker.fp-dlg{text-align:center}.file-picker.fp-dlg .fp-dlg-text{padding:30px
  2861. 20px 10px;font-size:12px}.file-picker.fp-dlg .fp-dlg-buttons{margin:0
  2862. 20px}.file-picker.fp-msg{text-align:center}.file-picker.fp-msg .fp-msg-text{padding:40px
  2863. 20px 10px;min-width:200px;max-width:500px;max-height:300px;overflow:auto;font-size:12px}.file-picker.fp-msg.fp-msg-error .fp-msg-text{padding:40px
  2864. 20px 10px;font-size:12px}.file-picker .fp-content-error{height:100%;width:100%;display:table;text-align:center}.file-picker .fp-content-error .fp-error{height:100%;width:100%;display:table-cell;vertical-align:middle;padding:40px
  2865. 20px 10px;font-size:12px}.file-picker .fp-nextpage{clear:both}.file-picker .fp-nextpage .fp-nextpage-loading,.file-picker .fp-nextpage.loading .fp-nextpage-link{display:none}.file-picker .fp-nextpage.loading .fp-nextpage-loading{display:block;text-align:center;height:100px;padding-top:50px}.fp-select
  2866. form{padding:20px
  2867. 20px 0}.fp-select .fp-select-loading{text-align:center;margin-top:20px}.fp-select .fp-hr{clear:both;height:1px;background-color:#FFF;border-bottom:1px solid #BBB;width:auto;margin:10px
  2868. 0}.fp-select
  2869. table{padding:0
  2870. 0 10px}.fp-select table .mdl-right{min-width:84px}.fp-select .fp-reflist .mdl-right{vertical-align:top}.fp-select .fp-select-buttons{float:right}.fp-select .fp-info{display:block;clear:both;padding:1px
  2871. 20px 0}.fp-select .fp-thumbnail{float:left;min-width:110px;min-height:110px;line-height:110px;text-align:center;margin:10px
  2872. 20px 0 0;background:#fff;border:1px
  2873. solid #ddd;-webkit-box-shadow:inset 0 0 10px 0 #ccc;-moz-box-shadow:inset 0 0 10px 0 #ccc;box-shadow:inset 0 0 10px 0 #ccc}.fp-select .fp-thumbnail
  2874. img{border:1px
  2875. solid #DDD;padding:3px;vertical-align:middle;margin:10px}.fp-select .fp-fileinfo{display:inline-block;margin-top:10px}.file-picker.fp-select .fp-fileinfo{max-width:240px}.fp-select .fp-fileinfo
  2876. div{padding-bottom:5px}.file-picker.fp-select .fp-select-loading,.file-picker.fp-select
  2877. .uneditable{display:none}.file-picker.fp-select.loading .fp-select-loading{display:block}.file-picker.fp-select.loading form,.filemanager-loading,.fp-select .fp-dimensions.fp-unknown,.fp-select .fp-size.fp-unknown{display:none}.jsenabled .filemanager-loading{display:block;margin-top:100px}.filemanager .fm-empty-container,.filemanager.fm-loaded .filemanager-loading,.filemanager.fm-loading .filemanager-container,.filemanager.fm-loading .filemanager-toolbar,.filemanager.fm-loading .fp-pathbar,.filemanager.fm-maxfiles .dndupload-message,.filemanager.fm-maxfiles .fp-btn-add,.filemanager.fm-noitems .filemanager-container .fp-content,.filemanager.fm-noitems .fp-btn-download{display:none}.filemanager .fp-img-downloading{display:none;padding-top:7px}.filemanager .filemanager-updating{display:none;text-align:center}.filemanager.fm-updating .filemanager-updating{display:block;margin-top:37px}.filemanager.fm-nomkdir .fp-btn-mkdir,.filemanager.fm-updating .fm-content-wrapper,.fitem.disabled .filemanager .filemanager-toolbar,.fitem.disabled .filemanager .fm-content-wrapper,.fitem.disabled .filemanager .fp-pathbar,.fitem.disabled .filemanager .fp-restrictions{display:none}.filemanager .fp-restrictions{text-align:right}.filemanager .fp-navbar{background:#F2F2F2;border:1px
  2878. solid #BBB;border-bottom:none}.filemanager-toolbar{padding:4px;overflow:hidden}.fp-pathbar{border-top:1px solid #BBB;padding:5px
  2879. 8px 1px;min-height:20px}.file-picker .fp-toolbar{padding:4px}.fp-toolbar .fp-btn-add,.fp-toolbar .fp-btn-download,.fp-toolbar .fp-btn-mkdir,.fp-toolbar .fp-tb-help,.fp-toolbar .fp-tb-logout,.fp-toolbar .fp-tb-manage,.fp-toolbar .fp-tb-refresh{border:1px
  2880. solid #CCC;border-bottom:1px solid #B3B3B3;border-radius:4px;background:#fff;width:30px;height:30px}.fp-toolbar a:hover{background-image:radial-gradient(ellipse at center,#fff 60%,#dfdfdf 100%);background-color:#ebebeb}.fp-toolbar a:active{background-image:radial-gradient(ellipse at center,#fff 40%,#dfdfdf 100%);background-color:#dfdfdf}.fp-btn-add a,.fp-btn-download a,.fp-btn-mkdir a,.fp-tb-help a,.fp-tb-logout a,.fp-tb-manage a,.fp-tb-refresh
  2881. a{display:block;width:30px;height:30px;border-radius:4px}.fp-btn-add img,.fp-btn-download img,.fp-btn-mkdir img,.fp-tb-help img,.fp-tb-logout img,.fp-tb-manage img,.fp-tb-refresh
  2882. img{margin:7px}.filemanager .fp-pathbar.empty{display:none}.filemanager-container,.filepicker-filelist{background:#FFF;clear:both;border:1px
  2883. solid #BBB;min-height:140px;position:relative}.filemanager .fp-content{overflow:auto;max-height:472px;min-height:157px}.filemanager-container,.filepicker-filelist{overflow:hidden}.fitem.disabled .filemanager-container,.fitem.disabled .filepicker-filelist{background-color:#EBEBE4}.fitem.disabled .fp-btn-choose{color:inherit;font-style:italic}.fitem.disabled .filepicker-filelist .filepicker-filename{display:none}.fp-iconview .fp-reficons1,.fp-iconview .fp-reficons2{position:absolute;height:100%;width:100%;top:0;left:0}.fp-iconview .fp-file.fp-hasreferences .fp-reficons1{background:url(/theme/image.php/essential/theme/1489002274/fp/link) bottom right no-repeat}.fp-iconview .fp-file.fp-isreference .fp-reficons2{background:url(/theme/image.php/essential/theme/1489002274/fp/alias) bottom left no-repeat}.dir-rtl .fp-iconview .fp-file.fp-hasreferences .fp-reficons1,.dir-rtl .fp-iconview .fp-file.fp-isreference .fp-reficons2{transform:scaleX(-1)}.filemanager .fp-iconview .fp-file.fp-originalmissing .fp-thumbnail
  2884. img{display:none}.filemanager .fp-iconview .fp-file.fp-originalmissing .fp-thumbnail{background:url(/theme/image.php/essential/core/1489002274/s/dead) center center no-repeat}.filemanager .yui3-datatable
  2885. table{border:0
  2886. solid #BBB;width:100%}.filemanager .yui3-datatable-header{background:#FFF!important;border-bottom:1px solid #CCC!important;border-left:0 solid #FFF!important;color:#555!important}.filemanager .yui3-datatable-odd .yui3-datatable-cell{background-color:#F6F6F6!important;border-left:0 solid #F6F6F6}.filemanager .yui3-datatable-even .yui3-datatable-cell{background-color:#FFF!important;border-left:0 solid #FFF}.filemanager .fp-filename-icon.fp-hasreferences .fp-reficons1{background:url(/theme/image.php/essential/theme/1489002274/fp/link_sm) no-repeat;height:100%;width:100%;position:absolute;top:8px;left:17px;z-index:1000}.filemanager .fp-filename-icon.fp-isreference .fp-reficons2{background:url(/theme/image.php/essential/theme/1489002274/fp/alias_sm) no-repeat;height:100%;width:100%;position:absolute;top:9px;left:-6px;z-index:1001}.dir-rtl .filemanager .fp-filename-icon.fp-hasreferences .fp-reficons1{transform:scaleX(-1);left:-17px}.dir-rtl .filemanager .fp-filename-icon.fp-isreference .fp-reficons2{transform:scaleX(-1);left:6px}.filemanager .fp-contextmenu{display:none}.filemanager .fp-iconview .fp-folder.fp-hascontextmenu .fp-contextmenu{display:block;position:absolute;right:7px;bottom:5px}.filemanager .fp-tableview .fp-folder.fp-hascontextmenu .fp-contextmenu,.filemanager .fp-treeview .fp-folder.fp-hascontextmenu .fp-contextmenu{display:inline;position:absolute;left:14px;margin-right:-20px;top:6px}.dir-rtl .filemanager .fp-iconview .fp-folder.fp-hascontextmenu .fp-contextmenu{left:7px;right:inherit}.dir-rtl .filemanager .fp-tableview .fp-folder.fp-hascontextmenu .fp-contextmenu,.dir-rtl .filemanager .fp-treeview .fp-folder.fp-hascontextmenu .fp-contextmenu{left:inherit;right:16px;margin-right:0}.filemanager.fm-noitems .fm-empty-container,.filepicker-filelist .filepicker-container{display:block;position:absolute;top:10px;bottom:10px;left:10px;right:10px;border:2px
  2887. dashed #BBB;padding-top:85px;text-align:center}.filemanager-container .dndupload-target,.filepicker-filelist .dndupload-target{background:#FFF;position:absolute;top:10px;bottom:10px;left:10px;right:10px;border:2px
  2888. dashed #fb7979;padding-top:85px;text-align:center;-webkit-box-shadow:0 0 0 10px #fff;-moz-box-shadow:0 0 0 10px #fff;box-shadow:0 0 0 10px #fff}.filemanager-container.dndupload-over .dndupload-target,.filepicker-filelist.dndupload-over .dndupload-target{background:#FFF;position:absolute;top:10px;bottom:10px;left:10px;right:10px;border:2px
  2889. dashed #6c8cd3;padding-top:85px;text-align:center}.dndupload-message{display:none}.dndsupported .dndupload-message{display:inline}.dnduploadnotsupported-message{display:none}.dndnotsupported .dnduploadnotsupported-message{display:inline}.dndupload-target{display:none}.dndsupported .dndupload-ready .dndupload-target{display:block}.dndupload-uploadinprogress{display:none;text-align:center}.dndupload-uploading .dndupload-uploadinprogress{display:block}.dndupload-arrow{background:url(/theme/image.php/essential/theme/1489002274/fp/dnd_arrow) center no-repeat;width:100%;height:80px;position:absolute;top:5px}.fitem.disabled .filepicker-container,.fitem.disabled .fm-empty-container{display:none}.dndupload-progressbars{padding:10px;display:none}.dndupload-inprogress .dndupload-progressbars{display:block}.dndupload-inprogress .fp-content,.filemanager.fm-noitems .dndupload-inprogress .fm-empty-container,.filemanager.fp-select .fp-select-loading,.filepicker-filelist.dndupload-inprogress .filepicker-container,.filepicker-filelist.dndupload-inprogress
  2890. a{display:none}.filemanager.fp-select.loading .fp-select-loading{display:block}.filemanager.fp-select .fp-file-setmain,.filemanager.fp-select .fp-file-setmain-help,.filemanager.fp-select.fp-file .fp-file-unzip,.filemanager.fp-select.fp-file .fp-file-zip,.filemanager.fp-select.fp-folder .fp-author,.filemanager.fp-select.fp-folder .fp-file-unzip,.filemanager.fp-select.fp-folder .fp-license,.filemanager.fp-select.fp-zip .fp-file-zip,.filemanager.fp-select.loading
  2891. form{display:none}.filemanager.fp-select.fp-cansetmain .fp-file-setmain,.filemanager.fp-select.fp-cansetmain .fp-file-setmain-help{display:inline-block}.filemanager .fp-mainfile .fp-filename{font-weight:700}.filemanager.fp-select.fp-folder .fp-file-download{display:none}.fm-operation{font-weight:700}.filemanager.fp-select .fp-original .fp-originloading,.filemanager.fp-select .fp-original.fp-unknown{display:none}.filemanager.fp-select .fp-original.fp-loading .fp-originloading{display:inline}.filemanager.fp-select .fp-reflist .fp-reflistloading,.filemanager.fp-select .fp-reflist.fp-unknown{display:none}.filemanager.fp-select .fp-refcount{max-width:265px}.filemanager.fp-select .fp-reflist.fp-loading .fp-reflistloading{display:inline}.filemanager.fp-select .fp-reflist .fp-value{background:#F9F9F9;border:1px
  2892. solid #BBB;padding:8px
  2893. 7px;margin:0;max-width:265px;max-height:75px;overflow:auto}.filemanager.fp-select .fp-reflist .fp-value
  2894. li{padding-bottom:7px}.filemanager.fp-mkdir-dlg{text-align:center}.filemanager.fp-mkdir-dlg .fp-mkdir-dlg-text{text-align:left;margin:20px}.dir-rtl .filemanager .fp-mkdir-dlg
  2895. p{text-align:right}.filemanager.fp-dlg{text-align:center}.filemanager.fp-dlg .fp-dlg-text{padding:0
  2896. 10px;min-width:200px;max-width:340px;max-height:300px;overflow:auto;line-height:22px;margin:40px
  2897. 20px 20px;font-size:12px}.dir-rtl .filemanager .fp-restrictions,.file-picker
  2898. div.bd{text-align:left}.dir-rtl #filemenu .yuimenuitemlabel,.dir-rtl .file-picker .fp-list,.dir-rtl .file-picker .fp-pathbar,.dir-rtl .file-picker div.bd,.dir-rtl .filemanager-container .yui3-skin-sam .yui3-datatable-header{text-align:right}.dir-rtl .filepicker .yui-layout-unit-left{left:500px}.dir-rtl .filepicker .yui-layout-unit-center{left:0}.dir-rtl .file-picker .fp-toolbar .fp-tb-search
  2899. input{background-position:208px 7px;padding:2px
  2900. 30px 1px 3px}.dir-rtl .file-picker .fp-toolbar
  2901. div{float:right;margin-left:4px}.fp-formset{max-width:500px;padding:10px}.fp-formset input[type=file]{line-height:inherit}.fp-forminset{max-width:400px;padding:0
  2902. 10px}.fp-forminset .control-group.control-radio{margin-bottom:0}.fp-forminset .control-group label.control-label{width:105px}.fp-forminset .control-group label.control-radio{float:right;text-align:left;width:215px}.fp-forminset .control-group
  2903. .controls{margin-left:125px}.fp-forminset .control-group .controls
  2904. select{width:100%}.fp-forminset .control-group .controls.control-radio
  2905. input{margin-top:3px}.fp-forminset .fp-select-buttons{float:none}.fp-forminset input[type=text]{width:228px}.fp-fileinfo .fp-value{display:inline-block;padding-left:5px}.dir-rtl .fp-forminset{max-width:400px}.dir-rtl .fp-forminset .control-group label.control-label{float:right;text-align:left}.dir-rtl .fp-forminset .control-group label.control-radio{float:left;text-align:right;width:215px}.dir-rtl .fp-forminset .control-group
  2906. .controls{margin-left:0;margin-right:125px}.dir-rtl .fp-forminset .fp-select-buttons{float:left}.dir-rtl .fp-forminset input[type=text]{width:228px}.dir-rtl .fp-fileinfo .fp-value{display:inline-block;padding-right:5px}.dir-rtl .fp-select .fp-thumbnail{margin:10px
  2907. 0 0}.dir-rtl .filepicker .fp-formset
  2908. label{float:right;text-align:left}.dir-rtl .filepicker .fp-formset
  2909. .controls{margin-left:0;text-align:right}.message-discussion-noframes
  2910. h1{font-size:1em}.message .link,.message .noframesjslink,.message-discussion-noframes #userinfo
  2911. .commands{font-size:11.9px}.message
  2912. .heading{font-size:1em;font-weight:700;clear:both;word-wrap:break-word}.message
  2913. .author{font-weight:700}#page-message-user .commands
  2914. span{font-size:.7em}#page-message-user
  2915. .name{font-weight:700;font-size:1.1em}.message
  2916. .time{color:inherit;font-style:italic}#page-message-messages{padding:10px}#page-message-send
  2917. .notifysuccess{padding:1px}#page-message-send
  2918. td.fixeditor{text-align:center}.message{overflow:hidden}.message
  2919. .note{padding:10px}table.message .searchresults
  2920. td{padding:5px}.message
  2921. .contactselector{max-width:380px;margin:0
  2922. auto;width:auto}@media screen and (min-width:1000px){.message
  2923. .contactselector{float:left;padding:0
  2924. 8px 0 0}}.message .contactselector
  2925. .paging{z-index:1;position:relative}.message .contactselector
  2926. #message_participants{max-width:240px}.message .contactselector .message-contacts{list-style-type:none;margin:0}.message .contactselector .message-contacts
  2927. li{clear:both;position:relative;min-height:23px;padding:2px}.message .contactselector .message-contacts li:nth-child(odd){background:rgba(120,120,255,.1)}.message .contactselector .message-contacts li>div{display:block;height:100%}.message .contactselector .message-contacts li>div>*{vertical-align:middle;display:inline-block}.message .contactselector .message-contacts li>div.pix{position:relative;float:left}.message .contactselector .message-contacts li>div.link{white-space:nowrap;width:60px;position:relative;float:right;text-align:right}.message .contactselector .message-contacts li>div.contact{position:relative;word-break:break-all}.message .contactselector .message-contacts li>div.contact
  2928. a{line-height:22px}.dir-ltr .message .message-contacts
  2929. li{text-align:left}.dir-ltr .message .message-contacts li>div.link{float:right;text-align:right}.dir-ltr .message .message-contacts li>div.contact{margin:0
  2930. 60px 0 24px}.dir-ltr .message .message-contacts li>div.contact.nolinks{margin:0
  2931. 0 0 24px}.dir-rtl .message .message-contacts
  2932. li{text-align:right}.dir-rtl .message .message-contacts li>div.link{float:left;text-align:left}.dir-rtl .message .message-contacts li>div.contact{margin:0
  2933. 24px 0 60px}.dir-rtl .message .message-contacts li>div.contact.nolinks{margin:0
  2934. 24px 0 0}@media screen and (min-width:1000px){.dir-rtl .message
  2935. .contactselector{float:right}}.message
  2936. .messagearea{float:none;overflow:hidden;min-height:200px;min-width:300px}@media screen and (min-width:1000px){.message
  2937. .messagearea{border-left:1px solid #ddd;padding:0
  2938. 8px}}@media screen and (max-width:1000px){.message
  2939. .messagearea{width:100%}}#message_user_pictures{text-align:center}.dir-rtl
  2940. #message_user_pictures{direction:rtl}.message .messagearea
  2941. .messagehistorytype{clear:both;padding-bottom:20px}.message .messagearea .messagehistory
  2942. .user{vertical-align:top;width:45%;min-width:100px;display:inline-block}.message .messagearea .messagehistory .user>div{text-align:center}.message .messagearea .messagehistory
  2943. .between{display:inline-block;width:16px;margin:0
  2944. 1%;padding-top:40px}@media screen and (max-width:320px){.message
  2945. .messagearea{min-width:0}.message .messagearea .messagehistory
  2946. .user{max-width:70px;min-width:0}.message .messagearea .messagehistory .user
  2947. .userpicture{width:50px;height:auto}}@media screen and (min-width:800px){.message .messagearea .messagehistory
  2948. .between{margin:0
  2949. 3%}.message .messagearea .messagehistory
  2950. .user{width:32%}}@media screen and (min-width:1200px){.message .messagearea .messagehistory
  2951. .user{width:25%}}.message .messagearea .messagehistory
  2952. .heading{width:100%;clear:both}.message .messagearea .messagehistory
  2953. .left{margin-bottom:10px;width:50%;float:left;position:relative;clear:both}.dir-rtl .message .messagearea .messagehistory
  2954. .left{float:right}.message .messagearea .messagehistory
  2955. .right{margin-bottom:10px;width:50%;float:right;position:relative;clear:both}.dir-rtl .message .messagearea .messagehistory
  2956. .right{float:left}.message .messagearea .messagehistory
  2957. .notification{min-height:20px;background-color:#f5f5f5;border:1px
  2958. solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3;padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin-bottom:0;margin-top:5px}.message .messagearea .messagehistory .notification
  2959. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.dir-ltr .message .messagearea .messagehistory
  2960. .message{margin-right:20px}.dir-ltr .message .messagearea .messagehistory .right .message,.dir-rtl .message .messagearea .messagehistory
  2961. .message{margin-left:20px}.dir-rtl .message .messagearea .messagehistory .right
  2962. .message{margin-right:20px}.message .messagearea .messagehistory
  2963. .messageactive{background-color:#f5f5f5}.message .messagearea .messagehistory .messagecontent
  2964. .deleteicon{width:20px;position:absolute;top:-2px}.dir-ltr .message .messagearea .messagehistory .messagecontent
  2965. .deleteicon{right:0}.dir-rtl .message .messagearea .messagehistory .messagecontent
  2966. .deleteicon{left:0}.message .messagearea
  2967. .messagesend{padding-top:20px;clear:both}.message .messagearea .messagesend
  2968. .messagesendbox{width:100%;box-sizing:border-box}.message .messagearea .messagesend
  2969. fieldset{padding:0;margin:0}.message .messagearea
  2970. .messagerecent{text-align:left;width:100%}.message .messagearea .messagerecent
  2971. .singlemessage{border-bottom:1px solid #ddd;padding:10px}.message .messagearea .messagerecent .singlemessage .otheruser
  2972. span{padding:5px}.message .messagearea .messagerecent .singlemessage
  2973. .messagedate{float:right}.message
  2974. .hiddenelement{display:none}.message
  2975. .visible{display:inline}.message #usergroupselector.fieldset,.message
  2976. #viewing{width:100%}.messagesearchresults{margin-bottom:40px}.messagesearchresults
  2977. td{padding:0
  2978. 10px 0 20px}.messagesearchresults td
  2979. span{white-space:nowrap}.messagesearchresults td
  2980. img.userpicture{padding-right:.45em;vertical-align:text-bottom}.dir-rtl .messagesearchresults td
  2981. img.userpicture{padding-left:.45em;padding-right:0}.messagesearchresults td span
  2982. img{padding:0
  2983. 0 0 .45em;vertical-align:text-bottom}.dir-rtl .messagesearchresults td span
  2984. img{padding:0
  2985. .45em 0 0}#newmessageoverlay{min-height:20px;padding:19px;background-color:#f5f5f5;border:1px
  2986. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3;margin:0
  2987. 1em;position:fixed;bottom:0;right:0}#newmessageoverlay
  2988. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}#newmessageoverlay
  2989. #usermessage{padding:10px}#page-user-action_redir #edit-messagebody{width:auto}.core_message-messenger-sendmessage-hidden{display:none}.core_message-messenger-sendmessage .message-actions{position:relative}.core_message-messenger-sendmessage .message-area{height:240px;max-height:100%;position:relative;margin-bottom:10px}.core_message-messenger-sendmessage .message-input{width:100%;height:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.core_message-messenger-sendmessage .message-send{margin:0;float:right}.core_message-messenger-sendmessage .message-notice-area{display:table;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.core_message-messenger-sendmessage .message-notice{display:table-cell;vertical-align:middle;text-align:center}.core_message-messenger-sendmessage .message-notice>div{background:#eee;padding:5px;font-size:12px}.core_message-messenger-sendmessage .message-footer{margin-top:3px;line-height:20px}.core_message-messenger-sendmessage .message-history{position:absolute;bottom:0}.dir-rtl .core_message-messenger-sendmessage .message-send{float:left}.questionbank h2,.questioncategories
  2990. h3{margin-top:0}#chooseqtypebox{margin-top:1em}#chooseqtype
  2991. h3{margin:0
  2992. 0 .3em}#chooseqtype
  2993. .fakeqtypes{border-top:1px solid silver}#chooseqtype
  2994. label{display:block}#chooseqtype .qtypename
  2995. img{padding:0
  2996. .3em}#chooseqtype
  2997. .qtypename{display:inline-table;width:16em}#chooseqtype
  2998. .submitbuttons{margin:.7em 0;text-align:center}#qtypechoicecontainer{display:none}#qtypechoicecontainer_c.yui-panel-container.shadow
  2999. .underlay{background:0 0}#qtypechoicecontainer.yui-panel
  3000. .hd{color:#333;letter-spacing:1px;text-shadow:1px 1px 1px #fff;-webkit-border-top-right-radius:10px;-moz-border-radius-topright:10px;border-top-right-radius:10px;-webkit-border-top-left-radius:10px;-moz-border-radius-topleft:10px;border-top-left-radius:10px;border:1px
  3001. solid #ccc;border-bottom:1px solid #bbb;background-color:#ebebeb;background-image:-moz-linear-gradient(top,#fff,#ccc);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#ccc));background-image:-webkit-linear-gradient(top,#fff,#ccc);background-image:-o-linear-gradient(top,#fff,#ccc);background-image:linear-gradient(to bottom,#fff,#ccc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffcccccc',GradientType=0)}#qtypechoicecontainer{font-size:12px;color:#333;background:#F2F2F2;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;border:1px
  3002. solid #ccc;border-top:0 none;-webkit-box-shadow:5px 5px 20px 0 #666;-moz-box-shadow:5px 5px 20px 0 #666;box-shadow:5px 5px 20px 0 #666}#qtypechoicecontainer
  3003. #chooseqtype{width:40em}#chooseqtypehead
  3004. h3{margin:0;font-weight:400}#chooseqtype
  3005. .qtypes{position:relative;border-bottom:1px solid #bbb;padding:.24em 0}#chooseqtype
  3006. .alloptions{overflow-x:hidden;overflow-y:auto;max-height:400px;max-height:calc(85vh);max-height:60vh;width:60%}#chooseqtype
  3007. .qtypeoption{margin-bottom:0;padding:.3em .3em .3em 1.6em}#chooseqtype .qtypeoption
  3008. img{vertical-align:text-bottom;padding-left:1em;padding-right:.5em}#chooseqtype
  3009. .selected{background-color:#fff;-webkit-box-shadow:0 0 10px 0 #ccc;-moz-box-shadow:0 0 10px 0 #ccc;box-shadow:0 0 10px 0 #ccc}#chooseqtype .instruction,#chooseqtype
  3010. .qtypesummary{display:none;position:absolute;top:0;right:0;bottom:0;left:60%;margin:0;overflow-x:hidden;padding:1.5em 1.6em;background-color:#fff;overflow-y:auto}#chooseqtype .instruction,#chooseqtype .selected
  3011. .qtypesummary{display:block}#categoryquestions{margin:0}#categoryquestions td,#categoryquestions
  3012. th{padding:0
  3013. .2em}#categoryquestions
  3014. th{text-align:left;font-weight:400}#categoryquestions
  3015. .checkbox{padding-left:5px}#categoryquestions .checkbox input[type=checkbox]{margin-left:0;float:none}#categoryquestions
  3016. img.iconsmall{padding:0}#categoryquestions
  3017. .iconcol{padding:3px}#categoryquestions label,#page-mod-quiz-edit div.questionbankwindow
  3018. div.header{margin:0}#page-mod-quiz-edit
  3019. div.questionbankwindow.block{padding:0}.dir-rtl #categoryquestions
  3020. th{text-align:right}.questionbank
  3021. .singleselect{margin:0}#combinedfeedbackhdr
  3022. div.fhtmleditor{padding:0}#combinedfeedbackhdr
  3023. div.fcheckbox{margin-bottom:1em}#multitriesheader
  3024. div.fitem_feditor{margin-top:1em}#multitriesheader
  3025. div.fitem_fgroup{margin-bottom:1em}#multitriesheader div.fitem_fgroup fieldset.felement
  3026. label{margin-left:.3em;margin-right:.3em}body.path-question-type .fitem_fgroup
  3027. .accesshide{font:inherit;left:0;position:static;padding-right:.3em}.que{clear:left;text-align:left;margin:0
  3028. auto 1.8em}.dir-rtl
  3029. .que{text-align:right}.que
  3030. .info{float:left;width:7em;padding:.5em;margin-bottom:1.8em;background-color:#eee;border:1px
  3031. solid #dcdcdc;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.que
  3032. h3.no{margin:0;font-size:.8em;line-height:1}.que
  3033. span.qno{font-size:1.5em;font-weight:700}.que .info>div{font-size:.8em;margin-top:.7em}.que .info
  3034. .questionflag.editable{cursor:pointer}.que .info .editquestion img,.que .info .questionflag img,.que .info .questionflag
  3035. input{vertical-align:bottom}.que
  3036. .content{margin:0
  3037. 0 0 8.5em}.que .comment,.que .formulation,.que
  3038. .outcome{padding:8px
  3039. 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,.5);background-color:#fcf8e3;border:1px
  3040. solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#8a6d3b}.que
  3041. .formulation{background-color:#d9edf7;border-color:#bce8f1;color:#333}.formulation input[type=text],.formulation
  3042. select{width:auto;vertical-align:baseline}.path-mod-quiz input[size]{width:auto}.que
  3043. .comment{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}.que
  3044. .history{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px
  3045. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3}.que .history
  3046. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.que
  3047. .ablock{margin:.7em 0 .3em}.que .im-controls{margin-top:.5em;text-align:left}.dir-rtl .que .im-controls{text-align:right}.que .feedback,.que .generalfeedback,.que .im-feedback,.que .rightanswer,.que .specificfeedback,.que
  3048. p{margin:0
  3049. 0 .5em}.que
  3050. .qtext{margin-bottom:1.5em}.que
  3051. .correctness{display:inline-block;padding:2px
  3052. 4px;font-size:11.84px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#595959;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.que .correctness:empty{display:none}.que .correctness-important{background-color:#b94a48}.que .correctness-important[href]{background-color:#953b39}.que .correctness-warning{background-color:#f89406}.que .correctness-warning[href]{background-color:#c67605}.que .correctness-success{background-color:#468847}.que .correctness-success[href]{background-color:#356635}.que .correctness-info{background-color:#3a87ad}.que .correctness-info[href]{background-color:#2d6987}.que .correctness-inverse{background-color:#333}.que .correctness-inverse[href]{background-color:#1a1a1a}.que
  3053. .correctness.correct{background-color:#468847}.que
  3054. .correctness.partiallycorrect{background-color:#f89406}.que .correctness.incorrect,.que
  3055. .correctness.notanswered{background-color:#b94a48}.que
  3056. .validationerror{color:#b94a48}.formulation
  3057. .correct{background-color:#dff0d8}.formulation
  3058. .partiallycorrect{background-color:#fcf8e3}.formulation
  3059. .incorrect{background-color:#f2dede}.formulation input.correct,.formulation
  3060. select.correct{color:#468847;background-color:#dff0d8;border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.formulation input.correct:focus,.formulation select.correct:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b}.formulation input.partiallycorrect,.formulation
  3061. select.partiallycorrect{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.formulation input.partiallycorrect:focus,.formulation select.partiallycorrect:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.formulation input.incorrect,.formulation
  3062. select.incorrect{color:#b94a48;background-color:#f2dede;border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.formulation input.incorrect:focus,.formulation select.incorrect:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392}.que .comment,.que .commentlink,.que .grading,.que
  3063. .history{margin-top:.5em}.que .history
  3064. h3{margin:0
  3065. 0 .2em;font-size:1em}.que .history
  3066. table{width:100%;margin:0}.que .history
  3067. .current{font-weight:700}.que
  3068. .questioncorrectnessicon{vertical-align:text-bottom}.que
  3069. input.questionflagimage{padding-right:3px}.dir-rtl .que
  3070. input.questionflagimage{padding-left:3px;padding-right:0}.importerror{margin-top:10px;border-bottom:1px solid #555}.mform .que.comment
  3071. .fitemtitle{width:20%}#page-question-preview
  3072. #techinfo{margin:1em
  3073. 0}.dir-rtl #chooseqtype .instruction,.dir-rtl #chooseqtype
  3074. .qtypesummary{right:60%;left:0;border-left:0;border-right:1px solid grey}#page-mod-quiz-edit
  3075. .box.generalbox.questionbank{padding:.5em}#page-mod-quiz-edit .questionbank .categorypagingbarcontainer,#page-mod-quiz-edit .questionbank .categoryquestionscontainer,#page-mod-quiz-edit .questionbank
  3076. .choosecategory{padding:0}#page-mod-quiz-edit .questionbank .choosecategory
  3077. select{width:100%}#page-mod-quiz-edit div.questionbank
  3078. .categoryquestionscontainer{background:0 0}#page-mod-quiz-edit #categoryquestions>thead{background:#FFF}#page-mod-quiz-edit #categoryquestions>tbody>tr:nth-of-type(even){background:#e4e4e4}#page-mod-quiz-edit .questionbankwindow
  3079. div.header{color:#444;text-shadow:none;-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;margin:0
  3080. -10px;padding:2px
  3081. 10px;background:0 0}#page-mod-quiz-edit .questionbankwindow div.header a:link,#page-mod-quiz-edit .questionbankwindow div.header a:visited{color:#0070a8}#page-mod-quiz-edit .questionbankwindow div.header a:hover{color:#003d5c}#page-mod-quiz-edit
  3082. .createnewquestion{padding:.3em 0}#page-mod-quiz-edit .createnewquestion div,#page-mod-quiz-edit .createnewquestion
  3083. input{margin:0}#page-mod-quiz-edit .questionbankwindow div.header
  3084. .title{color:#333}#page-mod-quiz-edit div.container
  3085. div.generalbox{background-color:transparent;padding:1.5em}#page-mod-quiz-edit
  3086. .categoryinfo{background-color:transparent;border-bottom:none}#page-mod-quiz-edit .createnewquestion .singlebutton
  3087. input{margin-bottom:0}#page-mod-quiz-edit div.questionbank .categoryselectallcontainer,#page-mod-quiz-edit div.questionbank
  3088. .categorysortopotionscontainer{padding:0
  3089. 0 1.5em}#page-mod-quiz-edit div.questionbank
  3090. .categorypagingbarcontainer{background-color:transparent;margin:0;border-top:0;border-bottom:0}#page-mod-quiz-edit div.questionbank .categorypagingbarcontainer
  3091. .paging{padding:0
  3092. .3em}#page-mod-quiz-edit div.question div.content
  3093. div.points{padding-bottom:0;border:none;background-color:#fff;position:static;width:12.1em;float:right;margin-right:60px}#page-mod-quiz-edit.dir-rtl div.question div.content
  3094. div.points{float:left;margin-left:60px;margin-right:0}#page-mod-quiz-edit div.question div.content div.points
  3095. br{display:none}#page-mod-quiz-edit div.question div.content div.points
  3096. label{display:inline-block}#page-mod-quiz-edit div.quizpage .pagecontent
  3097. .pagestatus{background-color:#fff}#page-mod-quiz-edit .quizpagedelete,#page-mod-quiz-edit .quizpagedelete
  3098. img{background-color:transparent}#page-mod-quiz-edit div.quizpage
  3099. .pagecontent{border:1px
  3100. solid #ddd;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;overflow:hidden}#page-mod-quiz-edit div.questionbank
  3101. .categoryinfo{padding:.3em 0}#page-mod-quiz-edit div.questionbank
  3102. .modulespecificbuttonscontainer{padding:0}#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer
  3103. strong{display:block}#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer br,#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer
  3104. hr{display:none}#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer
  3105. strong{margin-left:-.3em}#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer strong
  3106. label{margin-left:.3em}#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer
  3107. input{margin-left:0}#page-mod-quiz-edit div.questionbank .modulespecificbuttonscontainer input+input{margin-left:5px}.questionbankwindow
  3108. .module{width:auto}#page-mod-quiz-edit div.editq div.question
  3109. div.content{background-color:#fff;border:1px
  3110. solid #ddd;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;overflow:hidden}.path-mod-quiz
  3111. .statedetails{display:block;font-size:.9em}a#hidebankcmd{color:#0070a8}.que.shortanswer
  3112. .answer{padding:0}.que
  3113. label{display:inline}body.path-question-type .mform
  3114. fieldset.hidden{padding:0;margin:.7em 0 0}.userprofile
  3115. .fullprofilelink{text-align:center;margin:10px}.userprofile .page-context-header{margin-bottom:10px}.userprofile
  3116. .description{margin-top:10px;margin-bottom:30px}.userprofile
  3117. .profile_tree{-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:20px;-moz-column-gap:20px;column-gap:20px}.userprofile .profile_tree
  3118. section{display:inline-block;width:100%;border:1px
  3119. solid #ddd;border-radius:4px;padding:0
  3120. 15px;margin-bottom:20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.userprofile .profile_tree section
  3121. h3{font-size:18px;line-height:20px}.userprofile dl.list:after,.userprofile dl.list:before{display:table;content:"";line-height:0}.userprofile dl.list:after{clear:both}.userprofile dl.list
  3122. dt{float:left;width:180px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.userprofile dl.list
  3123. dd{margin-left:200px}.user-box{margin:8px;width:115px;height:160px;text-align:center;float:left;clear:none}#page-user-profile .node_category ul,.path-user .node_category
  3124. ul{margin-left:0;margin-right:0;list-style:none}#page-user-profile .node_category li,.path-user .node_category
  3125. li{margin-top:5px}#page-user-profile .node_category .editprofile,#page-user-profile .node_category .viewmore,.path-user .node_category .editprofile,.path-user .node_category
  3126. .viewmore{text-align:right}.dir-rtl .user-box{float:right}.dir-rtl .userprofile .node_category .editprofile,.dir-rtl .userprofile .node_category
  3127. .viewmore{text-align:left}.dir-rtl .userprofile dl
  3128. dd{margin-left:0;margin-right:10px}@media (max-width:480px){.userprofile
  3129. .profile_tree{-webkit-column-count:1;-moz-column-count:1;column-count:1;-webkit-column-gap:20px;-moz-column-gap:20px;column-gap:20px}}.userlist .action-icon
  3130. img{vertical-align:middle}.userlist
  3131. #showall{margin:10px
  3132. 0}.userlist
  3133. .buttons{text-align:center}.userlist .buttons
  3134. label{padding:0
  3135. 3px}.userlist
  3136. table#participants{text-align:center}.userlist table#participants td,.userlist table#participants
  3137. th{vertical-align:middle;text-align:left;padding:4px}.userlist
  3138. table.controls{width:100%}.userlist table.controls
  3139. tr{vertical-align:top}.userlist table.controls
  3140. .right{text-align:right}.userlist table.controls
  3141. .groupselector{margin-bottom:0;margin-top:0}.userlist table.controls .groupselector
  3142. label{display:block}.userinfobox{width:100%;border:1px
  3143. solid;border-collapse:separate;padding:10px}.userinfobox .left,.userinfobox
  3144. .side{width:100px;vertical-align:top}.userinfobox
  3145. .userpicture{width:100px;height:100px}.userinfobox
  3146. .content{vertical-align:top}.userinfobox
  3147. .links{width:100px;padding:5px;vertical-align:bottom}.userinfobox .links
  3148. a{display:block}.userinfobox .list
  3149. td{padding:3px}.userinfobox
  3150. .username{padding-bottom:20px;font-weight:700}.userinfobox
  3151. td.label{text-align:right;white-space:nowrap;vertical-align:top;font-weight:700}.groupinfobox{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px
  3152. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3}.groupinfobox
  3153. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.groupinfobox
  3154. .left{padding:10px;width:100px;vertical-align:top}.course-participation
  3155. #showall{text-align:center;margin:10px
  3156. 0}#user-policy
  3157. .noticebox{text-align:center;margin-left:auto;margin-right:auto;margin-bottom:10px;width:80%;height:250px}#user-policy
  3158. #policyframe{width:100%;height:100%}.iplookup
  3159. #map{margin:auto}.userselector
  3160. select{width:100%}.userselector
  3161. div{margin-top:.2em}.userselector div
  3162. label{margin-right:.3em}.userselector .userselector-infobelow{font-size:.8em}#userselector_options{padding:.3em 0}#userselector_options
  3163. .collapsibleregioncaption{font-weight:700}#userselector_options
  3164. p{margin:.2em 0;text-align:left}.dir-rtl #userselector_options
  3165. p{text-align:right}#page-course-view-weeks .messagebox,#page-user-profile
  3166. .messagebox{text-align:center;margin-left:auto;margin-right:auto}.dir-rtl .userlist table#participants td,.dir-rtl .userlist table#participants
  3167. th{text-align:right}.dir-rtl .userlist
  3168. table#participants{margin:0
  3169. auto}#page-my-index.dir-rtl .block
  3170. h3{text-align:right}.profileeditor>.singleselect{margin:0
  3171. .5em 0 0}.profileeditor>.singlebutton{display:inline-block;margin:0
  3172. 0 0 .5em}.profileeditor>.singlebutton div,.profileeditor>.singlebutton
  3173. input{margin:0}.dir-rtl .profileeditor>.singleselect{margin:0
  3174. 0 0 .5em}.dir-rtl .profileeditor>.singlebutton{margin:0
  3175. .5em 0 0}#groupeditform .groups,#groupeditform
  3176. .members{min-width:175px;width:49%;float:left;text-align:left}#groupeditform .groups select,#groupeditform .members
  3177. select{min-width:175px;max-width:90%}.dir-rtl #groupeditform .groups,.dir-rtl #groupeditform
  3178. .members{float:right;text-align:right}.preferences-group
  3179. ul{list-style:none;margin-left:0;margin-right:0}.dir-rtl .preferences-group{float:right}.search-results
  3180. .result{margin-left:0;margin-right:0}.dir-rtl .search-results
  3181. .result{margin-right:15px;margin-left:0}.search-results .result .result-content{margin:7px
  3182. 0}.search-results .result
  3183. .filename{font-style:italic}.search-input-wrapper{margin:0
  3184. 5px 0 2px;overflow:hidden;float:right;height:100%;width:16px;transition:width .5s ease,left .5s ease}.search-input-wrapper>div{float:left;margin:10px
  3185. 0 9px}.dir-rtl .search-input-wrapper{margin:0
  3186. 2px 0 5px;float:left}.dir-rtl .search-input-wrapper>div{float:right}.dir-rtl .search-input-wrapper>form{margin:5px
  3187. 25px 5px 0}.search-input-wrapper>form{opacity:0;margin:5px
  3188. 0 5px 25px;transition:opacity .5s ease-in-out}.search-input-wrapper>form>input{margin:0}.search-input-wrapper
  3189. form.expanded{opacity:1}.search-input-wrapper.expanded{width:160px}.clearfix:after,.clearfix:before{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}a:active,a:hover{outline:0}sub,sup{position:relative;font-size:75%;line-height:0}sup{top:-.5em}sub{bottom:-.25em}.img-responsive{max-width:100%;height:auto;-ms-interpolation-mode:bicubic}img{vertical-align:middle;border:0}#map_canvas img,.google-maps
  3190. img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button,input[type=button],input[type=checkbox],input[type=radio],input[type=reset],input[type=submit],label,select{cursor:pointer}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto}@media
  3191. print{*{text-shadow:none!important;color:#000!important;background:0 0!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px
  3192. solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#333}a{color:#0070a8}a:focus,a:hover{color:#003d5c}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px
  3193. solid #ccc;border:1px
  3194. solid rgba(0,0,0,.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px}.row:after,.row:before{display:table;content:"";line-height:0}.row:after{clear:both}[class*=span]{float:left;min-height:1px;margin-left:20px}.container,.navbar-fixed-bottom .container,.navbar-fixed-top .container,.navbar-static-top .container,.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%}.row-fluid:after,.row-fluid:before{display:table;content:"";line-height:0}.row-fluid:after{clear:both}.row-fluid [class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.12765957%}.row-fluid [class*=span]:first-child{margin-left:0}.row-fluid .controls-row [class*=span]+[class*=span]{margin-left:2.12765957%}.row-fluid
  3195. .span12{width:100%}.row-fluid
  3196. .span11{width:91.4893617%}.row-fluid
  3197. .span10{width:82.9787234%}.row-fluid
  3198. .span9{width:74.46808511%}.row-fluid
  3199. .span8{width:65.95744681%}.row-fluid
  3200. .span7{width:57.44680851%}.row-fluid
  3201. .span6{width:48.93617021%}.row-fluid
  3202. .span5{width:40.42553191%}.row-fluid
  3203. .span4{width:31.91489362%}.row-fluid
  3204. .span3{width:23.40425532%}.row-fluid
  3205. .span2{width:14.89361702%}.row-fluid
  3206. .span1{width:6.38297872%}.row-fluid
  3207. .offset12{margin-left:104.25531915%}.row-fluid .offset12:first-child{margin-left:102.12765957%}.row-fluid
  3208. .offset11{margin-left:95.74468085%}.row-fluid .offset11:first-child{margin-left:93.61702128%}.row-fluid
  3209. .offset10{margin-left:87.23404255%}.row-fluid .offset10:first-child{margin-left:85.10638298%}.row-fluid
  3210. .offset9{margin-left:78.72340426%}.row-fluid .offset9:first-child{margin-left:76.59574468%}.row-fluid
  3211. .offset8{margin-left:70.21276596%}.row-fluid .offset8:first-child{margin-left:68.08510638%}.row-fluid
  3212. .offset7{margin-left:61.70212766%}.row-fluid .offset7:first-child{margin-left:59.57446809%}.row-fluid
  3213. .offset6{margin-left:53.19148936%}.row-fluid .offset6:first-child{margin-left:51.06382979%}.row-fluid
  3214. .offset5{margin-left:44.68085106%}.row-fluid .offset5:first-child{margin-left:42.55319149%}.row-fluid
  3215. .offset4{margin-left:36.17021277%}.row-fluid .offset4:first-child{margin-left:34.04255319%}.row-fluid
  3216. .offset3{margin-left:27.65957447%}.row-fluid .offset3:first-child{margin-left:25.53191489%}.row-fluid
  3217. .offset2{margin-left:19.14893617%}.row-fluid .offset2:first-child{margin-left:17.0212766%}.row-fluid
  3218. .offset1{margin-left:10.63829787%}.row-fluid .offset1:first-child{margin-left:8.5106383%}.row-fluid [class*=span].hide,[class*=span].hide{display:none}.row-fluid [class*=span].pull-right,[class*=span].pull-right{float:right}.container{margin-right:auto;margin-left:auto}.container:after,.container:before{display:table;content:"";line-height:0}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px}.container-fluid:after,.container-fluid:before{display:table;content:"";line-height:0}.container-fluid:after{clear:both}p{margin:0
  3219. 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:700}em{font-style:italic}cite{font-style:normal}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-error{color:#b94a48}a.text-error:focus,a.text-error:hover{color:#953b39}.text-info{color:#3a87ad}a.text-info:focus,a.text-info:hover{color:#2d6987}.text-success{color:#468847}a.text-success:focus,a.text-success:hover{color:#356635}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6{margin:10px
  3220. 0;font-family:inherit;font-weight:700;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6
  3221. small{font-weight:400;line-height:1;color:#595959}h1,h2,h3{line-height:40px}.page-header{padding-bottom:9px;margin:20px
  3222. 0 30px;border-bottom:1px solid #eee}ol,ul{padding:0;margin:0
  3223. 0 10px 25px}ol ol,ol ul,ul ol,ul
  3224. ul{margin-bottom:0}li{line-height:20px}ol.inline,ol.unstyled,ul.inline,ul.unstyled{margin-left:0;list-style:none}ol.inline>li,ul.inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:20px}dd,dt{line-height:20px}dt{font-weight:700}dd{margin-left:10px}.dl-horizontal:after,.dl-horizontal:before{display:table;content:"";line-height:0}.dl-horizontal:after{clear:both}.dl-horizontal
  3225. dt{float:left;width:180px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal
  3226. dd{margin-left:200px}hr{margin:20px
  3227. 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #595959}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0
  3228. 0 0 15px;margin:0
  3229. 0 20px;border-left:5px solid #eee}blockquote
  3230. p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25}blockquote
  3231. small{display:block;line-height:20px;color:#595959}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right
  3232. small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}blockquote:after,blockquote:before,q:after,q:before{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0
  3233. 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px
  3234. 4px;color:#d14;background-color:#f7f7f9;border:1px
  3235. solid #e1e1e8;white-space:nowrap}pre{display:block;padding:9.5px;margin:0
  3236. 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px
  3237. solid #ccc;border:1px
  3238. solid rgba(0,0,0,.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre
  3239. code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;border:0;border-bottom:1px solid #e5e5e5}legend
  3240. small{font-size:15px;color:#595959}button,input,label,select,textarea{font-size:14px;font-weight:400;line-height:20px}label{display:block;margin-bottom:5px}.uneditable-input,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{display:inline-block;height:20px;padding:4px
  3241. 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle}.uneditable-input,input,textarea{width:206px}textarea{height:auto}.uneditable-input,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{background-color:#fff;border:1px
  3242. solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}.uneditable-input:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{border-color:rgba(82,168,236,.8);outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6)}input[type=checkbox],input[type=radio]{margin:4px
  3243. 0 0;line-height:normal}input[type=button],input[type=checkbox],input[type=file],input[type=image],input[type=radio],input[type=reset],input[type=submit]{width:auto}input[type=file],select{height:30px;line-height:30px}select{border:1px
  3244. solid #ccc;background-color:#fff}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus,select:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#595959;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);box-shadow:inset 0 1px 2px rgba(0,0,0,.025);cursor:not-allowed}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#595959}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#595959}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#595959}.checkbox,.radio{min-height:20px;padding-left:20px}.checkbox input[type=checkbox],.radio input[type=radio]{float:left;margin-left:-20px}.controls>.checkbox:first-child,.controls>.radio:first-child{padding-top:5px}.checkbox.inline,.radio.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.checkbox.inline+.checkbox.inline,.radio.inline+.radio.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}.row-fluid .uneditable-input[class*=span],.row-fluid input[class*=span],.row-fluid select[class*=span],.row-fluid textarea[class*=span],.uneditable-input[class*=span],input[class*=span],select[class*=span],textarea[class*=span]{float:none;margin-left:0}.input-append .uneditable-input[class*=span],.input-append input[class*=span],.input-prepend .uneditable-input[class*=span],.input-prepend input[class*=span],.row-fluid .input-append [class*=span],.row-fluid .input-prepend [class*=span],.row-fluid .uneditable-input[class*=span],.row-fluid input[class*=span],.row-fluid select[class*=span],.row-fluid textarea[class*=span]{display:inline-block}.uneditable-input,input,textarea{margin-left:0}.controls-row [class*=span]+[class*=span]{margin-left:20px}.uneditable-input.span12,input.span12,textarea.span12{width:926px}.uneditable-input.span11,input.span11,textarea.span11{width:846px}.uneditable-input.span10,input.span10,textarea.span10{width:766px}.uneditable-input.span9,input.span9,textarea.span9{width:686px}.uneditable-input.span8,input.span8,textarea.span8{width:606px}.uneditable-input.span7,input.span7,textarea.span7{width:526px}.uneditable-input.span6,input.span6,textarea.span6{width:446px}.uneditable-input.span5,input.span5,textarea.span5{width:366px}.uneditable-input.span4,input.span4,textarea.span4{width:286px}.uneditable-input.span3,input.span3,textarea.span3{width:206px}.uneditable-input.span2,input.span2,textarea.span2{width:126px}.uneditable-input.span1,input.span1,textarea.span1{width:46px}.controls-row:after,.controls-row:before{display:table;content:"";line-height:0}.controls-row:after{clear:both}.controls-row [class*=span],.row-fluid .controls-row [class*=span]{float:left}.controls-row .checkbox[class*=span],.controls-row .radio[class*=span]{padding-top:5px}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type=checkbox][disabled],input[type=checkbox][readonly],input[type=radio][disabled],input[type=radio][readonly]{background-color:transparent}.control-group.warning .checkbox,.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning
  3245. textarea{color:#8a6d3b}.control-group.warning input,.control-group.warning select,.control-group.warning
  3246. textarea{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.control-group.warning .input-append .add-on,.control-group.warning .input-prepend .add-on{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.control-group.error .checkbox,.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error
  3247. textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error
  3248. textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392}.control-group.error .input-append .add-on,.control-group.error .input-prepend .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .checkbox,.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success
  3249. textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success
  3250. textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b}.control-group.success .input-append .add-on,.control-group.success .input-prepend .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .checkbox,.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info
  3251. textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info
  3252. textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7ab5d3}.control-group.info .input-append .add-on,.control-group.info .input-prepend .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px
  3253. 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5}.form-actions:after,.form-actions:before{display:table;content:"";line-height:0}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;vertical-align:middle;padding-left:5px}.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap}.input-append .dropdown-menu,.input-append .popover,.input-append .uneditable-input,.input-append input,.input-append select,.input-prepend .dropdown-menu,.input-prepend .popover,.input-prepend .uneditable-input,.input-prepend input,.input-prepend
  3254. select{font-size:14px}.input-append .uneditable-input,.input-append input,.input-append select,.input-prepend .uneditable-input,.input-prepend input,.input-prepend
  3255. select{position:relative;margin-bottom:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .uneditable-input:focus,.input-append input:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-prepend input:focus,.input-prepend select:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px
  3256. 5px;font-size:14px;font-weight:400;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px
  3257. solid #ccc}.input-append .add-on,.input-append .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .add-on,.input-prepend .btn,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend
  3258. .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend
  3259. .btn{margin-right:-1px}.input-append .uneditable-input,.input-append input,.input-append select,.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append .uneditable-input+.btn-group .btn:last-child,.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn-group:last-child>.dropdown-toggle,.input-append .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .uneditable-input,.input-prepend.input-append input,.input-prepend.input-append
  3260. select{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append .uneditable-input+.btn-group .btn,.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group
  3261. .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-left:14px;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn,.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend
  3262. .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-horizontal .help-inline,.form-horizontal .input-append,.form-horizontal .input-prepend,.form-horizontal .uneditable-input,.form-horizontal input,.form-horizontal select,.form-horizontal textarea,.form-inline .help-inline,.form-inline .input-append,.form-inline .input-prepend,.form-inline .uneditable-input,.form-inline input,.form-inline select,.form-inline textarea,.form-search .help-inline,.form-search .input-append,.form-search .input-prepend,.form-search .uneditable-input,.form-search input,.form-search select,.form-search
  3263. textarea{display:inline-block;margin-bottom:0;vertical-align:middle}.form-horizontal .hide,.form-inline .hide,.form-search
  3264. .hide{display:none}.form-inline .btn-group,.form-inline label,.form-search .btn-group,.form-search
  3265. label{display:inline-block}.form-inline .input-append,.form-inline .input-prepend,.form-search .input-append,.form-search .input-prepend{margin-bottom:0}.form-inline .checkbox,.form-inline .radio,.form-search .checkbox,.form-search
  3266. .radio{padding-left:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio],.form-search .checkbox input[type=checkbox],.form-search .radio input[type=radio]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px}.form-horizontal .control-group:after,.form-horizontal .control-group:before{display:table;content:"";line-height:0}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:180px;padding-top:5px;text-align:right}.form-horizontal
  3267. .controls{margin-left:200px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal .input-append+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:200px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table td,.table
  3268. th{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table
  3269. th{font-weight:700}.table thead
  3270. th{vertical-align:bottom}.table caption+thead tr:first-child td,.table caption+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table thead:first-child tr:first-child td,.table thead:first-child tr:first-child
  3271. th{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table
  3272. .table{background-color:#fff}.table-condensed td,.table-condensed
  3273. th{padding:4px
  3274. 5px}.table-bordered{border:1px
  3275. solid #ddd;border-collapse:separate;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered td,.table-bordered
  3276. th{border-left:1px solid #ddd}.table-bordered caption+tbody tr:first-child td,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+thead tr:first-child th,.table-bordered tbody:first-child tr:first-child td,.table-bordered tbody:first-child tr:first-child th,.table-bordered thead:first-child tr:first-child
  3277. th{border-top:0}.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child,.table-bordered thead:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child,.table-bordered thead:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px}.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child,.table-bordered thead:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child,.table-bordered thead:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0}.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered caption+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered caption+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5}.row-fluid table td[class*=span],.row-fluid table th[class*=span],table td[class*=span],table th[class*=span]{display:table-cell;float:none;margin-left:0}.table td.span1,.table
  3278. th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table
  3279. th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table
  3280. th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table
  3281. th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table
  3282. th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table
  3283. th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table
  3284. th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table
  3285. th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table
  3286. th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table
  3287. th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table
  3288. th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table
  3289. th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success>td{background-color:#dff0d8}.table tbody tr.error>td{background-color:#f2dede}.table tbody tr.warning>td{background-color:#fcf8e3}.table tbody tr.info>td{background-color:#d9edf7}.table-hover tbody tr.success:hover>td{background-color:#d0e9c6}.table-hover tbody tr.error:hover>td{background-color:#ebcccc}.table-hover tbody tr.warning:hover>td{background-color:#faf2cc}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3}[class*=" icon-"],[class^=icon-]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px}.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-menu>.active>a>[class^=icon-],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>li>a:focus>[class^=icon-],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^=icon-],.dropdown-submenu:focus>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class^=icon-],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^=icon-],.icon-white,.nav-list>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^=icon-],.nav-pills>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^=icon-],.navbar-inverse .nav>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^=icon-]{background-image:url("")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{background-position:-216px -120px;width:16px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{background-position:-384px -120px;width:16px}.icon-folder-open{background-position:-408px -120px;width:16px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropdown,.dropup{position:relative}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown
  3290. .caret{margin-top:8px;margin-left:2px}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px
  3291. 0;margin:2px
  3292. 0 0;list-style:none;background-color:#fff;border:1px
  3293. solid #ccc;border:1px
  3294. solid rgba(0,0,0,.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu
  3295. .divider{margin:9px
  3296. 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu>li>a{display:block;clear:both;font-weight:400;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover,.dropdown-submenu:focus>a,.dropdown-submenu:hover>a{text-decoration:none;color:#fff;background-color:#00699e;background-image:-moz-linear-gradient(top,#0070a8,#005f8f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0070a8),to(#005f8f));background-image:-webkit-linear-gradient(top,#0070a8,#005f8f);background-image:-o-linear-gradient(top,#0070a8,#005f8f);background-image:linear-gradient(to bottom,#0070a8,#005f8f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0070a8',endColorstr='#ff005f8f',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#00699e;background-image:-moz-linear-gradient(top,#0070a8,#005f8f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0070a8),to(#005f8f));background-image:-webkit-linear-gradient(top,#0070a8,#005f8f);background-image:-o-linear-gradient(top,#0070a8,#005f8f);background-image:linear-gradient(to bottom,#0070a8,#005f8f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0070a8',endColorstr='#ff005f8f',GradientType=0)}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#595959}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:default}.open>.dropdown-menu{display:block}.dropdown-backdrop{left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown
  3297. .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px;-moz-border-radius:0 6px 6px;border-radius:0 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px
  3298. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well
  3299. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:700;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.btn{display:inline-block;padding:4px
  3300. 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px
  3301. solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.btn.active,.btn.disabled,.btn:active,.btn:focus,.btn:hover,.btn[disabled]{color:#333;background-color:#e6e6e6}.btn:focus,.btn:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px
  3302. 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class*=" icon-"],.btn-large [class^=icon-]{margin-top:4px}.btn-small{padding:2px
  3303. 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class*=" icon-"],.btn-small [class^=icon-]{margin-top:0}.btn-mini [class*=" icon-"],.btn-mini [class^=icon-]{margin-top:-1px}.btn-mini{padding:0
  3304. 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002b80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary.active,.btn-primary.disabled,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.btn-primary[disabled]{color:#fff;background-color:#04c}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning.active,.btn-warning.disabled,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.btn-warning[disabled]{color:#fff;background-color:#f89406}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#da4f49;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger.active,.btn-danger.disabled,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.btn-danger[disabled]{color:#fff;background-color:#bd362f}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success.active,.btn-success.disabled,.btn-success:active,.btn-success:focus,.btn-success:hover,.btn-success[disabled]{color:#fff;background-color:#51a351}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#49afcd;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info.active,.btn-info.disabled,.btn-info:active,.btn-info:focus,.btn-info:hover,.btn-info[disabled]{color:#fff;background-color:#2f96b4}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#363636;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse.active,.btn-inverse.disabled,.btn-inverse:active,.btn-inverse:focus,.btn-inverse:hover,.btn-inverse[disabled]{color:#fff;background-color:#222}button.btn::-moz-focus-inner,input[type=submit].btn::-moz-focus-inner{padding:0;border:0}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{border-color:transparent;cursor:pointer;color:#0070a8;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:focus,.btn-link:hover{color:#003d5c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;font-size:0;vertical-align:middle;white-space:nowrap}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px}.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px}.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn
  3305. .caret{margin-top:8px;margin-left:0}.btn-large
  3306. .caret{margin-top:6px;border-left-width:5px;border-right-width:5px;border-top-width:5px}.btn-mini .caret,.btn-small
  3307. .caret{margin-top:8px}.dropup .btn-large
  3308. .caret{border-bottom-width:5px}.btn-danger .caret,.btn-info .caret,.btn-inverse .caret,.btn-primary .caret,.btn-success .caret,.btn-warning
  3309. .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px
  3310. 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,.5);background-color:#fcf8e3;border:1px
  3311. solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert
  3312. h4{color:#8a6d3b}.alert
  3313. h4{margin:0}.alert
  3314. .close{position:relative;right:-21px}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}.alert-success
  3315. h4{color:#468847}.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}.alert-danger h4,.alert-error
  3316. h4{color:#b94a48}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad}.alert-info
  3317. h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-left:0;margin-bottom:20px;list-style:none}.nav>li>a{display:block}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px
  3318. 15px;font-size:11px;font-weight:700;line-height:20px;color:#595959;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0}.nav-list .nav-header,.nav-list>li>a{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.nav-list>li>a{padding:3px
  3319. 15px}.nav-list>.active>a,.nav-list>.active>a:focus,.nav-list>.active>a:hover{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.2);background-color:#0070a8}.nav-list [class*=" icon-"],.nav-list [class^=icon-]{margin-right:2px}.nav-list
  3320. .divider{height:1px;margin:9px
  3321. 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-pills:after,.nav-pills:before,.nav-tabs:after,.nav-tabs:before{display:table;content:"";line-height:0}.nav-pills:after,.nav-tabs:after{clear:both}.nav-pills>li,.nav-tabs>li{float:left}.nav-pills>li>a,.nav-tabs>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:focus,.nav-tabs>.active>a:hover{color:#555;background-color:#fff;border:1px
  3322. solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:focus,.nav-pills>.active>a:hover{color:#fff;background-color:#0070a8}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px
  3323. solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.nav-tabs.nav-stacked>li>a:focus,.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle
  3324. .caret{border-top-color:#0070a8;border-bottom-color:#0070a8;margin-top:6px}.nav .dropdown-toggle:focus .caret,.nav .dropdown-toggle:hover
  3325. .caret{border-top-color:#003d5c;border-bottom-color:#003d5c}.nav-tabs .dropdown-toggle
  3326. .caret{margin-top:8px}.nav .active .dropdown-toggle
  3327. .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle
  3328. .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:focus,.nav>.dropdown.active>a:hover{cursor:pointer}.nav-pills .open .dropdown-toggle,.nav-tabs .open .dropdown-toggle,.nav>li.dropdown.open.active>a:focus,.nav>li.dropdown.open.active>a:hover{color:#fff;background-color:#595959;border-color:#595959}.nav li.dropdown.open .caret,.nav li.dropdown.open a:focus .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open.active
  3329. .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:focus,.tabs-stacked .open>a:hover{border-color:#595959}.tabbable:after,.tabbable:before{display:table;content:"";line-height:0}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-left>.nav-tabs,.tabs-right>.nav-tabs{border-bottom:0}.pill-content>.pill-pane,.tab-content>.tab-pane{display:none}.pill-content>.active,.tab-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:focus,.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:focus,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:focus,.tabs-left>.nav-tabs>li>a:hover{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:focus,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:focus,.tabs-right>.nav-tabs>li>a:hover{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:focus,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent}.nav>.disabled>a:focus,.nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default}.navbar{overflow:visible}.navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px
  3330. solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,.065);box-shadow:0 1px 4px rgba(0,0,0,.065)}.navbar-inner:after,.navbar-inner:before{display:table;content:"";line-height:0}.navbar-inner:after{clear:both}.navbar
  3331. .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar
  3332. .brand{float:left;display:block;padding:10px
  3333. 20px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:focus,.navbar .brand:hover{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:focus,.navbar-link:hover{color:#333}.navbar .divider-vertical{height:40px;margin:0
  3334. 9px;border-left:1px solid #f2f2f2;border-right:1px solid #fff}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-append .btn,.navbar .input-append .btn-group,.navbar .input-prepend .btn,.navbar .input-prepend .btn-group{margin-top:0}.navbar-form{margin-bottom:0}.navbar-form:after,.navbar-form:before{display:table;content:"";line-height:0}.navbar-form:after{clear:both}.navbar-form .checkbox,.navbar-form .radio,.navbar-form input,.navbar-form
  3335. select{margin-top:5px}.navbar-form .btn,.navbar-form input,.navbar-form
  3336. select{display:inline-block;margin-bottom:0}.navbar-form input[type=checkbox],.navbar-form input[type=image],.navbar-form input[type=radio]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend
  3337. input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{margin-bottom:0;padding:4px
  3338. 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:400;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-bottom .navbar-inner,.navbar-fixed-top .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-bottom .container,.navbar-fixed-top .container,.navbar-static-top
  3339. .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1)}.navbar
  3340. .nav{position:relative;left:0;display:block;float:left;margin:0
  3341. 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px
  3342. 15px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle
  3343. .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333;text-decoration:none}.navbar .nav>.active>a,.navbar .nav>.active>a:focus,.navbar .nav>.active>a:hover{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,.125);box-shadow:inset 0 3px 8px rgba(0,0,0,.125)}.navbar .btn-navbar{display:none;float:right;padding:7px
  3344. 10px;margin-left:5px;margin-right:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#ededed;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.075)}.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar:active,.navbar .btn-navbar:focus,.navbar .btn-navbar:hover,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(0,0,0,.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:9px}.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:10px}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);border-bottom:0;bottom:-7px;top:auto}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #fff;border-bottom:0;bottom:-6px;top:auto}.navbar .nav li.dropdown>a:focus .caret,.navbar .nav li.dropdown>a:hover
  3345. .caret{border-top-color:#333;border-bottom-color:#333}.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle,.navbar .nav li.dropdown.open>.dropdown-toggle{background-color:#e5e5e5;color:#555}.navbar .nav li.dropdown>.dropdown-toggle
  3346. .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open>.dropdown-toggle
  3347. .caret{border-top-color:#555;border-bottom-color:#555}.navbar .nav>li>.dropdown-menu.pull-right,.navbar .pull-right>li>.dropdown-menu{left:auto;right:0}.navbar .nav>li>.dropdown-menu.pull-right:before,.navbar .pull-right>li>.dropdown-menu:before{left:auto;right:12px}.navbar .nav>li>.dropdown-menu.pull-right:after,.navbar .pull-right>li>.dropdown-menu:after{left:auto;right:13px}.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu,.navbar .pull-right>li>.dropdown-menu .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#595959;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-inverse .brand:focus,.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff}.navbar-inverse .brand,.navbar-inverse .navbar-text{color:#595959}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#fff}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:focus,.navbar-inverse .nav .active>a:hover{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#595959}.navbar-inverse .navbar-link:focus,.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .divider-vertical{border-left-color:#111;border-right-color:#222}.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open>.dropdown-toggle{background-color:#111;color:#fff}.navbar-inverse .nav li.dropdown>a:focus .caret,.navbar-inverse .nav li.dropdown>a:hover
  3348. .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle
  3349. .caret{border-top-color:#595959;border-bottom-color:#595959}.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open>.dropdown-toggle
  3350. .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1),0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query.focused,.navbar-inverse .navbar-search .search-query:focus{padding:5px
  3351. 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);-moz-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15);outline:0}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404}.breadcrumb{padding:8px
  3352. 15px;margin:0
  3353. 0 20px;list-style:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;text-shadow:0 1px 0 #fff}.breadcrumb>li>.divider{padding:0
  3354. 5px;color:#ccc}.breadcrumb>.active{color:#595959}.pagination{margin:20px
  3355. 0}.pagination
  3356. ul{display:inline-block;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px
  3357. 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px
  3358. solid #ddd;border-left-width:0}.pagination ul>.active>a,.pagination ul>.active>span,.pagination ul>li>a:focus,.pagination ul>li>a:hover{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#595959;cursor:default}.pagination ul>.disabled>a,.pagination ul>.disabled>a:focus,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>span{color:#595959;background-color:transparent;cursor:default}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px
  3359. 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px}.pagination-mini ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>a,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px}.pagination-mini ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>a,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px
  3360. 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0
  3361. 6px;font-size:10.5px}.pager{margin:20px
  3362. 0;list-style:none;text-align:center}.pager:after,.pager:before{display:table;content:"";line-height:0}.pager:after{clear:both}.pager
  3363. li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px
  3364. 14px;background-color:#fff;border:1px
  3365. solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#f5f5f5}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#595959;background-color:#fff;cursor:default}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px
  3366. solid #999;border:1px
  3367. solid rgba(0,0,0,.3);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,.3);box-shadow:0 3px 7px rgba(0,0,0,.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:0}.modal.fade{-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out;top:-25%}.modal.fade.in{top:10%}.modal-header{padding:9px
  3368. 15px;border-bottom:1px solid #eee}.modal-header
  3369. .close{margin-top:2px}.modal-header
  3370. h3{margin:0;line-height:30px}.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px}.modal-form{margin-bottom:0}.modal-footer{padding:14px
  3371. 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:after,.modal-footer:before{display:table;content:"";line-height:0}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;visibility:visible;font-size:11px;line-height:1.4}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{margin-top:-3px;padding:5px
  3372. 0}.tooltip.right{margin-left:3px;padding:0
  3373. 5px}.tooltip.bottom{margin-top:3px;padding:5px
  3374. 0}.tooltip.left{margin-left:-3px;padding:0
  3375. 5px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px
  3376. solid #ccc;border:1px
  3377. solid rgba(0,0,0,.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px
  3378. 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none}.popover-content{padding:9px
  3379. 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover
  3380. .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top
  3381. .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right
  3382. .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom
  3383. .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left
  3384. .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.thumbnails{margin-left:-20px;list-style:none}.thumbnails:after,.thumbnails:before{display:table;content:"";line-height:0}.thumbnails:after{clear:both}.row-fluid
  3385. .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px
  3386. solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,.055);box-shadow:0 1px 3px rgba(0,0,0,.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:focus,a.thumbnail:hover{border-color:#0070a8;-webkit-box-shadow:0 1px 4px rgba(0,105,214,.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,.25);box-shadow:0 1px 4px rgba(0,105,214,.25)}.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto}.thumbnail
  3387. .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;zoom:1}.media,.media
  3388. .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0
  3389. 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.badge,.label{display:inline-block;padding:2px
  3390. 4px;font-size:11.84px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#595959}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.badge:empty,.label:empty{display:none}a.badge:focus,a.badge:hover,a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.badge-important,.label-important{background-color:#b94a48}.badge-important[href],.label-important[href]{background-color:#953b39}.badge-warning,.label-warning{background-color:#f89406}.badge-warning[href],.label-warning[href]{background-color:#c67605}.badge-success,.label-success{background-color:#468847}.badge-success[href],.label-success[href]{background-color:#356635}.badge-info,.label-info{background-color:#3a87ad}.badge-info[href],.label-info[href]{background-color:#2d6987}.badge-inverse,.label-inverse{background-color:#333}.badge-inverse[href],.label-inverse[href]{background-color:#1a1a1a}.btn .badge,.btn
  3391. .label{position:relative;top:-1px}.btn-mini .badge,.btn-mini
  3392. .label{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.progress
  3393. .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15)}.progress-striped
  3394. .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active
  3395. .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress .bar-danger,.progress-danger
  3396. .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress .bar-success,.progress-success
  3397. .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)}.progress-striped .bar-success,.progress-success.progress-striped
  3398. .bar{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress .bar-info,.progress-info
  3399. .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress .bar-warning,.progress-warning
  3400. .bar{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)}.progress-striped .bar-warning,.progress-warning.progress-striped
  3401. .bar{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px
  3402. solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px
  3403. 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px
  3404. 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{overflow:hidden;width:100%;position:relative}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px
  3405. solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{left:auto;right:15px}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators
  3406. li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,.25);border-radius:5px}.carousel-indicators
  3407. .active{background-color:#fff}.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333;background:rgba(0,0,0,.75)}.carousel-caption h4,.carousel-caption
  3408. p{color:#fff;line-height:20px}.carousel-caption
  3409. h4{margin:0
  3410. 0 5px}.carousel-caption
  3411. p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit
  3412. h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px}.hero-unit
  3413. li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}h1{font-size:32px}h2{font-size:28px}h3{font-size:24px}h4{font-size:20px}h5{font-size:16px}h6{font-size:12px}h1
  3414. small{font-size:24px}h2
  3415. small{font-size:20px}h3
  3416. small{font-size:16px}h4
  3417. small{font-size:12px}@media
  3418. print{a[href]:after{content:""}}legend{border-bottom-color:#ddd;color:#333}.well{border-color:#e3e3e3}sup{vertical-align:super}sub{vertical-align:sub}.dropdown-backdrop{position:static}.file-picker td.label,li.activity.label{background:inherit;color:inherit;border:inherit;text-shadow:none;padding:8px;white-space:normal;display:block;font-size:inherit;line-height:inherit}.file-picker
  3419. td.label{display:table-cell;text-align:right}.choosercontainer #chooseform .option
  3420. label{font-size:12px}.block.hidden,.block.invisible,li.section.hidden{visibility:visible;display:block}#turnitintool_style .row,.forumpost
  3421. .row{margin-left:0!important}#turnitintool_style .row:after,#turnitintool_style .row:before,.forumpost .row:after,.forumpost .row:before{content:none}fieldset.hidden{display:inherit;visibility:inherit}div.c1.btn{display:block;padding:0;margin-bottom:0;font-size:inherit;line-height:inherit;text-align:inherit;vertical-align:inherit;cursor:default;color:inherit;text-shadow:inherit;background-color:inherit;background-image:none;background-repeat:no-repeat;border:none;border-radius:0;box-shadow:none}#questionbank+.container{width:auto}img.hide{display:inherit}.icon-bar,img.icon-info,img.icon-post,img.icon-pre,img.icon-warn{background-image:none}.loginbox.twocolumns .loginpanel,.loginbox.twocolumns
  3422. .signuppanel{padding:0;margin:0}.tooltip{opacity:1;filter:alpha(opacity=100);display:inline}body:not(.jsenabled) .dropdown:hover>.dropdown-menu{display:block;margin-top:-6px}.langmenu.open>.dropdown-menu,body:not(.jsenabled) .langmenu:hover>.dropdown-menu{display:block;max-height:150px;overflow-y:auto}ol{margin:0
  3423. 0 10px 2.5em}.dir-rtl
  3424. ol{margin:0
  3425. 2.5em 10px 0}.block{min-height:20px;margin-bottom:20px;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.block
  3426. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.block .header
  3427. h2{display:block;padding:3px
  3428. 15px;font-weight:700;line-height:20px;color:#595959;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase;font-size:1.1em;word-wrap:break-word;margin:0}.block .header
  3429. .block_action{padding:3px
  3430. 15px;float:right}.block .header .block_action>*{margin-left:3px}.block .header .block_action .block-hider-hide,.block .header .block_action .block-hider-show{cursor:pointer}.block .header .block_action .block-hider-show{display:none}.block
  3431. .content{word-wrap:break-word}.block .content
  3432. h3{display:block;padding:3px
  3433. 15px;font-weight:700;line-height:20px;color:#595959;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase;font-size:1.1em}.block .content
  3434. hr{margin:5px
  3435. 0}.block .content
  3436. .userpicture{width:16px;height:16px;margin-right:6px}.block .content .list
  3437. li.listentry{clear:both}.block .content .list
  3438. .c0{display:inline}.block .content .list
  3439. .c1{margin-left:5px;display:inline}.block
  3440. .footer{margin-bottom:4px;display:block;padding:3px
  3441. 5px}.block.beingmoved{border-width:2px;border-style:dashed}.block.invisible .header
  3442. h2{opacity:.5;filter:alpha(opacity=50)}.block.hidden .header .block_action .block-hider-hide{display:none}.block.hidden .header .block_action .block-hider-show{display:inline}.block.list_block .unlist>li>.column{display:inline-block}.editing .block .header
  3443. .commands{clear:both;text-align:right;display:block;padding:3px
  3444. 15px}.editing .block .header .commands>a{margin:0
  3445. 3px}.editing .block .header .commands .icon
  3446. img{width:12px;height:12px}.editing .block .header .commands
  3447. img.actionmenu{width:auto}.dir-rtl.editing .block .header
  3448. .commands{text-align:left}.jsenabled .block.hidden
  3449. .content{display:none}.blockmovetarget{border-width:2px;border-style:dashed;display:block;height:1em;margin-bottom:20px}.blockannotation{position:relative;top:-10px;margin-bottom:10px}.block_blog_menu #blogsearchquery,.block_settings
  3450. #adminsearchquery{max-width:92%}.block_search_forums
  3451. #searchform_search{width:auto;max-width:92%}.block_calendar_upcoming .content
  3452. .date{padding-left:22px}.block_calendar_upcoming .content
  3453. .footer{margin-top:.5em;padding-top:10px;padding-left:0}.block_rss_client .content
  3454. li{margin-bottom:10px;border:1px
  3455. solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.block_rss_client .content li
  3456. .link{font-weight:inherit}.block_rss_client .list li:first-child{border-top-width:1px}.block_news_items .content
  3457. .newlink{padding-bottom:10px}.block_news_items .content ul
  3458. li{border-top:1px rgba(0,0,0,.05) solid;padding:2px;display:table;width:100%}.block_news_items .content ul li
  3459. .info{display:table-header-group}.block_news_items .content ul li
  3460. .date{font-size:11.9px;display:inline}.block_news_items .content ul li
  3461. .name{font-size:11.9px;padding-left:1ex;display:inline}.block_news_items .content
  3462. .footer{padding-top:10px;padding-left:0}.block_login
  3463. .content{margin-left:auto;margin-right:auto;max-width:280px}.block_login input[type=submit]{margin:10px
  3464. 0}.block_adminblock
  3465. .content{display:block;margin:0
  3466. 10px;padding:3px
  3467. 5px;width:auto}.block_adminblock
  3468. .singleselect{display:block}.block_adminblock .singleselect
  3469. select.singleselect{display:block;width:100%}.dir-rtl .block .header,.dir-rtl .block .header
  3470. h2{text-align:right}.dir-rtl .block .header
  3471. .block_action{float:left}.dir-rtl .block .header .block_action>*{margin-left:0;margin-right:3px}.dir-rtl .block_calendar_upcoming .content
  3472. .date{padding-right:22px}.dir-rtl .block_calendar_upcoming .content
  3473. .footer{padding-right:0}.dir-rtl .block_news_items .content ul li
  3474. .name{padding-right:1ex}.dir-rtl .block_news_items .content
  3475. .footer{padding-left:0}form{margin:0}.mform fieldset
  3476. .advancedbutton{text-align:right}.jsenabled .mform .containsadvancedelements
  3477. .advanced{display:none}.mform .containsadvancedelements
  3478. .advanced.show{display:block}.mform
  3479. fieldset.group{margin-bottom:0}.mform
  3480. fieldset.error{border:1px
  3481. solid #b94a48}#adminsettings span.error,.mform
  3482. span.error{display:inline-block;border:1px
  3483. solid #eed3d7;border-radius:4px;background-color:#f2dede;padding:4px;margin-bottom:4px}.mform fieldset.collapsible legend
  3484. a.fheader{padding:0
  3485. 5px 0 20px;margin-left:-20px;background:url(/theme/image.php/essential/core/1489002274/t/expanded) 2px center no-repeat}.dir-rtl .mform fieldset.collapsible legend
  3486. a.fheader{padding:0
  3487. 20px 0 5px;margin-left:0;background-position:right center}.mform fieldset.collapsed legend
  3488. a.fheader{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed)}.dir-rtl .mform fieldset.collapsed legend
  3489. a.fheader{background-image:url(/theme/image.php/essential/core/1489002274/t/collapsed_rtl)}.jsenabled .mform .collapsed
  3490. .fcontainer{display:none}.mform .fitem .fitemtitle
  3491. div{display:inline}#adminsettings .error,.loginpanel .error,.mform
  3492. .error{color:#b94a48}.mform
  3493. .fdescription.required{margin-left:200px}.mform .fpassword
  3494. .unmask{display:inline-block;margin-left:.5em}.mform .fpassword .unmask>input{margin:0}.mform .fpassword .unmask>label,.mform
  3495. label{display:inline-block}.mform
  3496. .iconhelp{margin-left:4px}.dir-rtl .mform
  3497. .iconhelp{margin-right:4px}.mform .ftextarea
  3498. #id_alltext{width:100%}.mform ul.file-list{padding:0;margin:0;list-style:none}.mform label .adv,.mform label
  3499. .req{cursor:help}.mform .fcheckbox
  3500. input{margin-left:0}.mform .fcheckbox>span,.mform .fgroup>span,.mform .fradio>span{display:inline-block;margin-top:5px}.mform .fitem fieldset.fgroup label,.mform fieldset.fdate_selector
  3501. label{display:inline;float:none;width:auto}.mform .ftags
  3502. label.accesshide{display:block;position:static}.mform .ftags
  3503. select{margin-bottom:.7em;min-width:22em}.mform .helplink
  3504. img{margin:0
  3505. .45em;padding:0}.mform legend .helplink
  3506. img{margin:0
  3507. .2em}.singleselect
  3508. label{margin-right:.3em}.dir-rtl .singleselect
  3509. label{margin-left:.3em;margin-right:0}input#id_externalurl{direction:ltr}#portfolio-add-button{display:inline}.form-item,.mform
  3510. .fitem{margin-bottom:10px}.form-item:after,.form-item:before,.mform .fitem:after,.mform .fitem:before{display:table;content:"";line-height:0}.form-item:after,.mform .fitem:after{clear:both}.form-item .form-label,.mform .fitem
  3511. div.fitemtitle{float:left;width:180px;padding-top:5px;text-align:right}.dir-rtl .form-item .form-label,.dir-rtl .mform .fitem
  3512. div.fitemtitle{float:right}.form-defaultinfo,.form-label .form-shortname{color:inherit;font-style:italic}.form-label .form-shortname{font-size:10.5px;display:block}.dir-rtl .form-label .form-shortname{text-align:left}#page-mod-forum-search .c1,.form-item .form-description,.form-item .form-setting,.mform .fitem
  3513. .felement{margin-left:200px}.formsettingheading{margin-bottom:0}.felement.fstatic,.form-item .form-description{color:#595959;display:block;margin-bottom:10px;padding-top:5px}.form-item .form-description{padding-top:0}.fitem
  3514. .fstaticlabel{font-weight:700}#fgroup_id_buttonar,#fitem_id_submitbutton,.form-buttons,.fp-content-center form+div,.path-admin .buttons,div.backup-section+form,table#form
  3515. td.submit{padding:19px
  3516. 20px 20px 0;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5}#fgroup_id_buttonar:after,#fgroup_id_buttonar:before,#fitem_id_submitbutton:after,#fitem_id_submitbutton:before,.form-buttons:after,.form-buttons:before,.fp-content-center form+div:after,.fp-content-center form+div:before,.path-admin .buttons:after,.path-admin .buttons:before,div.backup-section+form:after,div.backup-section+form:before,table#form td.submit:after,table#form td.submit:before{display:table;content:"";line-height:0}#fgroup_id_buttonar:after,#fitem_id_submitbutton:after,.form-buttons:after,.fp-content-center form+div:after,.path-admin .buttons:after,div.backup-section+form:after,table#form td.submit:after{clear:both}.form-buttons,.path-admin
  3517. .buttons{padding-left:200px}.dir-rtl #fgroup_id_buttonar,.dir-rtl #fitem_id_submitbutton,.dir-rtl .form-buttons,.dir-rtl .fp-content-center form+div,.dir-rtl .path-admin .buttons,.dir-rtl div.backup-section+form,.dir-rtl table#form
  3518. td.submit{padding:19px
  3519. 0 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5}.dir-rtl #fgroup_id_buttonar:after,.dir-rtl #fgroup_id_buttonar:before,.dir-rtl #fitem_id_submitbutton:after,.dir-rtl #fitem_id_submitbutton:before,.dir-rtl .form-buttons:after,.dir-rtl .form-buttons:before,.dir-rtl .fp-content-center form+div:after,.dir-rtl .fp-content-center form+div:before,.dir-rtl .path-admin .buttons:after,.dir-rtl .path-admin .buttons:before,.dir-rtl div.backup-section+form:after,.dir-rtl div.backup-section+form:before,.dir-rtl table#form td.submit:after,.dir-rtl table#form td.submit:before{display:table;content:"";line-height:0}.dir-rtl #fgroup_id_buttonar:after,.dir-rtl #fitem_id_submitbutton:after,.dir-rtl .form-buttons:after,.dir-rtl .fp-content-center form+div:after,.dir-rtl .path-admin .buttons:after,.dir-rtl div.backup-section+form:after,.dir-rtl table#form td.submit:after{clear:both}.dir-rtl .form-buttons,.dir-rtl .path-admin
  3520. .buttons{padding-right:200px}.form-item .form-setting .form-checkbox.defaultsnext{margin-top:5px;display:inline-block}#adminsettings
  3521. h3{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}.mform legend a,.mform legend a:hover{color:#333;text-decoration:none}.dir-rtl .mform .fitem
  3522. .felement{margin-right:30%;margin-left:auto;text-align:right}.dir-rtl .mform .fitem .felement input[name=email2],.dir-rtl .mform .fitem .felement input[name=email],.dir-rtl .mform .fitem .felement input[name=idnumber],.dir-rtl .mform .fitem .felement input[name=phone1],.dir-rtl .mform .fitem .felement input[name=phone2],.dir-rtl .mform .fitem .felement input[name=url]{text-align:left;direction:ltr}#page-admin-auth-db.dir-rtl input[type=text],#page-admin-setting-enrolsettingsdatabase.dir-rtl input[type=text],#page-admin-setting-enrolsettingsflatfile.dir-rtl input[type=text],.dir-rtl #admin-emoticons .form-text,.dir-rtl #admin-role_mapping input[type=text],.dir-rtl #id_s__additionalhtmlfooter,.dir-rtl #id_s__additionalhtmlhead,.dir-rtl #id_s__additionalhtmltopofbody,.dir-rtl #id_s__allowedip,.dir-rtl #id_s__aspellpath,.dir-rtl #id_s__blockedip,.dir-rtl #id_s__cronremotepassword,.dir-rtl #id_s__docroot,.dir-rtl #id_s__filter_tex_latexbackground,.dir-rtl #id_s__filter_tex_latexpreamble,.dir-rtl #id_s__filter_tex_pathconvert,.dir-rtl #id_s__filter_tex_pathdvips,.dir-rtl #id_s__filter_tex_pathlatex,.dir-rtl #id_s__jabberhost,.dir-rtl #id_s__jabberpassword,.dir-rtl #id_s__jabberserver,.dir-rtl #id_s__jabberusername,.dir-rtl #id_s__pathtoclam,.dir-rtl #id_s__pathtodot,.dir-rtl #id_s__pathtodu,.dir-rtl #id_s__proxybypass,.dir-rtl #id_s__proxyhost,.dir-rtl #id_s__proxypassword,.dir-rtl #id_s__proxyuser,.dir-rtl #id_s__quarantinedir,.dir-rtl #id_s__sessioncookie,.dir-rtl #id_s__sessioncookiedomain,.dir-rtl #id_s__sessioncookiepath,.dir-rtl #id_s__sitepolicy,.dir-rtl #id_s__sitepolicyguest,.dir-rtl #id_s__supportemail,.dir-rtl #id_s__supportpage,.dir-rtl #id_s_enrol_flatfile_location,.dir-rtl #id_s_enrol_ldap_bind_dn,.dir-rtl #id_s_enrol_ldap_bind_pw,.dir-rtl #id_s_enrol_ldap_host_url,.dir-rtl #id_s_enrol_ldap_ldapencoding,.dir-rtl #id_s_enrol_meta_nosyncroleids,.dir-rtl
  3523. #id_s_enrol_paypal_paypalbusiness{direction:ltr}#page-admin-setting-enrolsettingsflatfile.dir-rtl
  3524. .informationbox{direction:ltr;text-align:left}#page-admin-grade-edit-scale-edit.dir-rtl .error
  3525. input#id_name{margin-right:170px}#page-grade-edit-outcome-course
  3526. .courseoutcomes{margin-left:auto;margin-right:auto;width:100%}#page-grade-edit-outcome-course .courseoutcomes
  3527. td{text-align:center}#installform #id_dataroot,#installform #id_dbhost,#installform #id_dbname,#installform #id_dbpass,#installform #id_dbuser,#installform #id_dirroot,#installform #id_prefix,#installform
  3528. #id_wwwroot{direction:ltr}.mdl-right>label{display:inline-block}input[type=checkbox]+label,input[type=radio]+label{display:inline;padding-left:.2em}input[type=checkbox],input[type=radio]{margin-top:-4px;margin-right:7px}.dir-rtl input[type=checkbox],.dir-rtl input[type=radio]{margin-right:auto}.singleselect{display:inline-block}.singleselect form,.singleselect
  3529. select{margin:0}.form-item .form-label
  3530. label{margin-bottom:0}.dir-rtl .form-item .form-label
  3531. label{text-align:left}.felement.ffilepicker{margin-top:5px}div#dateselector-calendar-panel{z-index:3100}fieldset.coursesearchbox
  3532. label{display:inline}#region-main .mform:not(.unresponsive) .fitem .fitemtitle
  3533. label{font-weight:700}@media (max-width:1199px){body #region-main .mform:not(.unresponsive) .fitem
  3534. .fitemtitle{display:block;margin-top:4px;margin-bottom:4px;text-align:left;width:100%}body #region-main .mform:not(.unresponsive) .fitem
  3535. .felement{margin-left:0;width:100%;float:left;padding-left:0;padding-right:0}body #region-main .mform:not(.unresponsive) .fitem .fstatic:empty{display:none}body #region-main .mform:not(.unresponsive) .fitem .fcheckbox>span,body #region-main .mform:not(.unresponsive) .fitem .fgroup>span,body #region-main .mform:not(.unresponsive) .fitem .fradio>span{margin-top:4px}body #region-main .mform:not(.unresponsive) .femptylabel
  3536. .fitemtitle{display:inline-block;width:auto;margin-right:8px}body #region-main .mform:not(.unresponsive) .femptylabel
  3537. .felement{display:inline-block;margin-top:4px;padding-top:5px;width:auto}body #region-main .mform:not(.unresponsive) .fitem_fcheckbox .felement,body #region-main .mform:not(.unresponsive) .fitem_fcheckbox
  3538. .fitemtitle{display:inline-block;width:auto}body #region-main .mform:not(.unresponsive) .fitem_fcheckbox
  3539. .felement{padding:6px}body.dir-rtl #region-main .mform:not(.unresponsive) .femptylabel
  3540. .fitemtitle{margin-right:0;margin-left:8px}body.dir-rtl #region-main .mform:not(.unresponsive) .fitem
  3541. .fitemtitle{text-align:right}body.dir-rtl #region-main .mform:not(.unresponsive) .fitem
  3542. .felement{margin-right:0;float:right;padding-right:0;padding-left:0}body.dir-rtl #region-main .mform:not(.unresponsive) .fitem_fcheckbox
  3543. .felement{float:right}}@media (max-width:1474px){.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem
  3544. .fitemtitle{display:block;margin-top:4px;margin-bottom:4px;text-align:left;width:100%}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem
  3545. .felement{margin-left:0;width:100%;float:left;padding-left:0;padding-right:0}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem .fstatic:empty{display:none}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem .fcheckbox>span,.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem .fgroup>span,.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem .fradio>span{margin-top:4px}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .femptylabel
  3546. .fitemtitle{display:inline-block;width:auto;margin-right:8px}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .femptylabel
  3547. .felement{display:inline-block;margin-top:4px;padding-top:5px;width:auto}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem_fcheckbox .felement,.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem_fcheckbox
  3548. .fitemtitle{display:inline-block;width:auto}.used-region-side-pre.used-region-side-post #region-main .mform:not(.unresponsive) .fitem_fcheckbox
  3549. .felement{padding:6px}.used-region-side-pre.used-region-side-post.dir-rtl #region-main .mform:not(.unresponsive) .femptylabel
  3550. .fitemtitle{margin-right:0;margin-left:8px}.used-region-side-pre.used-region-side-post.dir-rtl #region-main .mform:not(.unresponsive) .fitem
  3551. .fitemtitle{text-align:right}.used-region-side-pre.used-region-side-post.dir-rtl #region-main .mform:not(.unresponsive) .fitem
  3552. .felement{margin-right:0;float:right;padding-right:0;padding-left:0}.used-region-side-pre.used-region-side-post.dir-rtl #region-main .mform:not(.unresponsive) .fitem_fcheckbox
  3553. .felement{float:right}}#fitem_id_availabilityconditionsjson [aria-hidden=true]{display:none}#fitem_id_availabilityconditionsjson input[type=text],#fitem_id_availabilityconditionsjson
  3554. select{position:relative;top:4px}#fitem_id_availabilityconditionsjson
  3555. label{display:inline}#fitem_id_availabilityconditionsjson .availability-group{margin-right:8px}#fitem_id_availabilityconditionsjson .availability-item{margin-bottom:6px}#fitem_id_availabilityconditionsjson .availability-none{margin-left:20px;margin-bottom:4px}#fitem_id_availabilityconditionsjson .availability-plugincontrols{padding:2px
  3556. 0 0 4px;background:#f5f5f5;border:1px
  3557. solid #eee;border-radius:4px;display:inline-block;margin-right:8px}#fitem_id_availabilityconditionsjson .availability-plugincontrols
  3558. select{width:auto;max-width:200px}#fitem_id_availabilityconditionsjson .availability-delete,#fitem_id_availabilityconditionsjson .availability-eye{margin-right:8px}#fitem_id_availabilityconditionsjson .availability-eye[aria-hidden=true]{display:inline;visibility:hidden}#fitem_id_availabilityconditionsjson .availability-list>.availability-eye
  3559. img{vertical-align:top;margin-top:12px}#fitem_id_availabilityconditionsjson .availability-button{margin-left:15px}#fitem_id_availabilityconditionsjson .availability-childlist>.availability-inner{display:inline-block;background:#f5f5f5;border:1px
  3560. solid #eee;border-radius:4px;padding:6px;margin-bottom:6px}#fitem_id_availabilityconditionsjson .availability-childlist .availability-childlist>.availability-inner{background:#fff}#fitem_id_availabilityconditionsjson .availability-connector{margin-left:20px;margin-bottom:6px}.dir-rtl #fitem_id_availabilityconditionsjson .availability-group{margin-right:0;margin-left:8px}.dir-rtl #fitem_id_availabilityconditionsjson .availability-none{margin-right:20px;margin-left:0}.dir-rtl #fitem_id_availabilityconditionsjson .availability-plugincontrols{padding-right:4px;padding-left:0;margin-right:0;margin-left:8px}.dir-rtl #fitem_id_availabilityconditionsjson .availability-delete,.dir-rtl #fitem_id_availabilityconditionsjson .availability-eye{margin-left:8px;margin-right:0}.dir-rtl #fitem_id_availabilityconditionsjson .availability-button{margin-right:15px;margin-left:0}.dir-rtl #fitem_id_availabilityconditionsjson .availability-connector{margin-right:20px;margin-left:0}.mform .error .availability-field{color:#333}.availability-dialogue .moodle-dialogue .moodle-dialogue-bd{padding-left:0;padding-right:0;padding-bottom:2px}.availability-dialogue
  3561. ul{display:block;margin:0}.availability-dialogue
  3562. li{display:block;list-style-type:none;padding:0
  3563. 0 4px;clear:both;border-bottom:1px solid #eee;margin-bottom:4px}.availability-dialogue ul
  3564. button{float:left;margin-left:1em;min-width:140px;margin-top:4px}.availability-dialogue
  3565. label{margin-bottom:0}.availability-dialogue .availability-buttons
  3566. button{margin-left:1em;margin-right:1em;margin-top:4px}.dir-rtl .availability-dialogue ul
  3567. button{float:right;margin-right:1em}.dir-rtl .availability-dialogue
  3568. label{margin-right:170px;margin-left:1em}input[size],textarea[cols]{width:auto}.form-autocomplete-selection{margin:.2em;min-height:21px}.form-autocomplete-multiple [role=listitem]{cursor:pointer}.form-autocomplete-suggestions{position:absolute;background-color:#fff;border:2px
  3569. solid #eee;border-radius:3px;min-width:206px;max-height:20em;overflow:auto;margin:-.2em 0 0;padding:0;z-index:1}.form-autocomplete-suggestions
  3570. li{list-style-type:none;padding:.2em;margin:0;cursor:pointer;color:#333}.form-autocomplete-suggestions li:hover{background-color:#00a3f4;color:#fff}.form-autocomplete-suggestions li[aria-selected=true]{background-color:#e5e5e5;color:#555}.form-autocomplete-downarrow{color:#333;position:relative;top:-.3em;left:-1.5em;cursor:pointer}.dir-rtl .form-autocomplete-downarrow{right:-1.5em;left:inherit}.form-autocomplete-selection:focus{outline:0}.form-autocomplete-selection [data-active-selection=true]{padding:.5em;font-size:large}select{width:auto}.path-mod-forum .forumheaderlist,.path-mod-forum .forumheaderlist
  3571. td{border:none}.path-mod-forum .forumheaderlist tbody .discussion td,.path-mod-forum .forumheaderlist thead
  3572. .header{white-space:normal;vertical-align:top;padding-left:.5em;padding-right:.5em}.path-mod-forum .forumheaderlist thead
  3573. .header{white-space:normal;vertical-align:top}.path-mod-forum .forumheaderlist thead
  3574. .header.replies{text-align:center}.path-mod-forum .forumheaderlist thead
  3575. .header.lastpost{text-align:right}.path-mod-forum .forumheaderlist tbody .discussion td.discussionsubscription,.path-mod-forum .forumheaderlist thead .header
  3576. th.discussionsubscription{width:16px;padding-left:.5em;padding-right:.5em}.path-mod-forum .forumheaderlist .discussion .author,.path-mod-forum .forumheaderlist .discussion .lastpost,.path-mod-forum .forumheaderlist .discussion
  3577. .replies{white-space:normal}.path-mod-forum .forumheaderlist .discussion .discussionsubscription,.path-mod-forum .forumheaderlist .discussion
  3578. .replies{text-align:center}.path-mod-forum .forumheaderlist .discussion .author,.path-mod-forum .forumheaderlist .discussion .discussionsubscription,.path-mod-forum .forumheaderlist .discussion .lastpost,.path-mod-forum .forumheaderlist .discussion .picture,.path-mod-forum .forumheaderlist .discussion .replies,.path-mod-forum .forumheaderlist .discussion .topic,.path-mod-forum .forumheaderlist .discussion
  3579. .topic.starter{vertical-align:top}.forumpost{min-height:20px;margin-bottom:20px;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.forumpost
  3580. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.forumpost
  3581. .header{margin-bottom:3px}.forumpost .picture
  3582. img{margin:3px}.forumpost .picture
  3583. img.userpicture{margin-left:3px;margin-right:10px}.forumpost .content
  3584. .posting.fullpost{margin-top:8px}.forumpost .row .content-mask,.forumpost .row .options,.forumpost .row
  3585. .topic{margin-left:48px}.forumpost
  3586. .row.side{clear:both}.dir-rtl .forumpost .picture
  3587. img.userpicture{margin-left:10px;margin-right:3px}.dir-rtl .forumpost .row .content-mask,.dir-rtl .forumpost .row .options,.dir-rtl .forumpost .row
  3588. .topic{margin-left:0;margin-right:48px}.forumpost .row
  3589. .left{width:48px}.forumpost .options
  3590. .commands{margin-left:0}.forumpost
  3591. .subject{font-weight:700}.forumsearch input[type=text]{margin-bottom:0!important}#page-mod-forum-discuss
  3592. .discussioncontrols{width:auto;margin:0}.maincalendar .calendarmonth td,.maincalendar .calendarmonth
  3593. th{border:1px
  3594. dotted #ddd}.path-grade-report-grader
  3595. h1{text-align:inherit}#page-mod-chat-gui_basic
  3596. input#message{max-width:100%}#page-mod-data-view
  3597. #singleimage{width:auto}.path-mod-data form,.template_heading{margin-top:10px}.breadcrumb-button{float:right}.dir-rtl .nav-pills>li,.dir-rtl .nav-tabs>li{float:right}.dir-rtl .navbar
  3598. .brand{padding:10px
  3599. 0 10px 20px;float:right}.navbar-inverse .logininfo
  3600. a{color:#595959}.navbar-inverse .logininfo a:hover{background-color:transparent;color:#fff}.navbar-fixed-bottom,.navbar-fixed-top{z-index:4030}.dir-rtl .breadcrumb-button,.dir-rtl .navbar .btn-navbar{float:left}.dir-rtl .breadcrumb-button
  3601. .singlebutton{margin-right:4px;margin-left:0}.dir-rtl .breadcrumb-button .singlebutton div,.dir-rtl .breadcrumb-button .singlebutton div input[type=submit]{margin-right:5px;margin-left:0}.ie .row-fluid .desktop-first-column{margin-left:0}.langmenu
  3602. form{margin:0}.container-fluid{max-width:1680px;margin:0
  3603. auto}canvas{-ms-touch-action:auto}div#dock{display:none}.path-mod-choice .horizontal
  3604. .choices{margin:0}.path-mod-choice .horizontal .choices
  3605. .option{display:inline-block;padding:10px}.path-mod-choice .results
  3606. .data{white-space:normal}.path-mod-lesson
  3607. .firstpageoptions{margin:auto;min-width:280px;width:60%}.path-mod-lesson
  3608. .centerpadded{padding:5px;text-align:center}.path-mod-wiki .midpad,.path-mod-wiki .wiki_headingtime,.path-mod-wiki
  3609. .wiki_headingtitle{text-align:inherit}.path-mod-wiki
  3610. .wiki_contentbox{width:100%}.dropdown-menu>li>a{padding:3px
  3611. 20px 3px 8px}.dir-rtl .dropdown-menu>li>a{padding:3px
  3612. 8px 3px 20px}.dir-rtl .dropdown-submenu>.dropdown-menu{-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.path-mod-survey .surveytable>tbody>tr:nth-of-type(odd){background-color:transparent}.path-mod-survey .surveytable>tbody>tr:nth-of-type(even){background-color:#f9f9f9}.path-mod-survey .centerpara,.path-mod-survey .reportbuttons,.path-mod-survey .reportsummary,.path-mod-survey .resultgraph,.path-mod-survey .studentreport,.path-mod-survey .surveytable .rblock
  3613. label{text-align:center}.dir-rtl.path-mod-forum .forumheaderlist .discussion .lastpost,.dir-rtl.path-mod-forum .forumheaderlist thead
  3614. .header.lastpost{text-align:left}.nav
  3615. .caret{margin-left:4px}.dir-rtl .nav
  3616. .caret{margin-right:4px}.nav
  3617. .divider{overflow:hidden;width:0;height:40px;border-left:1px solid #f2f2f2;border-right:1px solid #fff}.navbar-inverse .nav
  3618. .divider{border-left-color:#111;border-right-color:#515151}.dropdown-menu
  3619. .divider{width:auto;height:1px;border-left:0 none;border-right:0 none}.usermenu
  3620. .login{color:#777;line-height:40px}.usermenu .login
  3621. a{color:#0070a8}.usermenu .login a:focus,.usermenu .login a:hover{color:#003d5c;text-decoration:underline}.usermenu .moodle-actionmenu .toggle-display{display:block;opacity:1;color:#777;line-height:40px;height:40px}.usermenu .moodle-actionmenu .toggle-display:hover{color:#333}.usermenu .moodle-actionmenu .toggle-display
  3622. .userbutton{height:40px;line-height:40px}.usermenu .moodle-actionmenu .toggle-display .userbutton
  3623. .avatars{display:inline-block;height:36px;width:36px;vertical-align:middle;margin-right:6px;margin-left:6px}.usermenu .moodle-actionmenu .toggle-display .userbutton .avatars .avatar,.usermenu .moodle-actionmenu .toggle-display .userbutton .avatars
  3624. img{display:block}.usermenu .moodle-actionmenu .toggle-display .userbutton
  3625. .usertext{display:inline-block;vertical-align:middle;line-height:1em;color:inherit}.usermenu .moodle-actionmenu .toggle-display .userbutton .usertext .meta,.usermenu .moodle-actionmenu .toggle-display .userbutton .usertext
  3626. .role{display:block;font-size:12px}.usermenu .moodle-actionmenu .toggle-display .userbutton .usertext .meta .value,.usermenu .moodle-actionmenu .toggle-display .userbutton .usertext .role,.usermenu .moodle-actionmenu .toggle-display .userbutton .usertext .role
  3627. .value{font-weight:700}.usermenu .moodle-actionmenu .toggle-display
  3628. .caret{display:none}.usermenu .moodle-actionmenu .menu .menu-action.icon
  3629. img{border-radius:0;background:0 0;box-shadow:none}.usermenu .moodle-actionmenu .menu .menu-action.icon:hover
  3630. img{background:#fff;border-radius:4px;box-shadow:0 0 16px rgba(0,0,0,.125)}.usermenu .moodle-actionmenu[data-enhanced] .menu .menu-action.icon img,.usermenu .moodle-actionmenu[data-enhanced] .menu .menu-action.icon:hover
  3631. img{border-radius:0;background:0 0;box-shadow:none}.navbar-inverse .usermenu .login,.navbar-inverse .usermenu .login
  3632. a{color:#595959}.navbar-inverse .usermenu .login a:hover{color:#fff}.navbar-inverse .usermenu .moodle-actionmenu .toggle-display,.navbar-inverse .usermenu .moodle-actionmenu .userbutton .usertext,.navbar-inverse .usermenu .moodle-actionmenu .userbutton .usertext .meta,.navbar-inverse .usermenu .moodle-actionmenu .userbutton .usertext .meta
  3633. .value{color:#595959}.navbar-inverse .usermenu .moodle-actionmenu:hover
  3634. .usertext{color:#fff}.navbar-inverse .usermenu .moodle-actionmenu:hover .usertext
  3635. .meta{color:#595959}.navbar-inverse .usermenu .moodle-actionmenu:hover .usertext .meta
  3636. .value{color:#fff}.navbar-inverse .usermenu .moodle-actionmenu[data-enhanced] .toggle-display.textmenu
  3637. .caret{border-top-color:#fff}.navbar-inverse .usermenu .moodle-actionmenu .menu .menu-action.icon
  3638. img{border-radius:0;background:0 0;box-shadow:none}.navbar-inverse .usermenu .moodle-actionmenu .menu .menu-action.icon:hover
  3639. img{background:#333;border-radius:4px;box-shadow:0 0 16px #fff}.navbar-inverse .usermenu .moodle-actionmenu[data-enhanced] .menu .menu-action.icon img,.navbar-inverse .usermenu .moodle-actionmenu[data-enhanced] .menu .menu-action.icon:hover
  3640. img{border-radius:0;background:0 0;box-shadow:none}.jsenabled .usermenu .moodle-actionmenu .toggle-display{display:block}.jsenabled .usermenu .moodle-actionmenu .toggle-display.textmenu{padding-left:8px;padding-right:8px}.jsenabled .usermenu .moodle-actionmenu .toggle-display
  3641. .caret{display:inline-block;position:relative;top:9px}.jsenabled .usermenu .moodle-actionmenu>.menubar{display:block;margin:0}.jsenabled .usermenu .moodle-actionmenu>.menu{min-width:160px}.jsenabled .usermenu .moodle-actionmenu>.menu
  3642. .filler{display:block;height:1px;margin:9px
  3643. 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.jsenabled .usermenu .moodle-actionmenu.show{background-color:#e5e5e5}.jsenabled .usermenu .moodle-actionmenu.show
  3644. .menu{padding:5px
  3645. 0;margin:2px
  3646. 0 0;background-clip:padding-box;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.jsenabled .usermenu .moodle-actionmenu.show .menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px}.jsenabled .usermenu .moodle-actionmenu.show .menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px}.jsenabled .usermenu .moodle-actionmenu.show .menu
  3647. a{border-radius:0}.jsenabled .usermenu .moodle-actionmenu.show .menu a:focus{text-decoration:none}.jsenabled .usermenu .moodle-actionmenu.show .menu a:hover{text-decoration:none;background-color:#00699e;background-image:-moz-linear-gradient(top,#0070a8,#005f8f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0070a8),to(#005f8f));background-image:-webkit-linear-gradient(top,#0070a8,#005f8f);background-image:-o-linear-gradient(top,#0070a8,#005f8f);background-image:linear-gradient(to bottom,#0070a8,#005f8f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0070a8', endColorstr='#ff005f8f', GradientType=0)}.jsenabled .usermenu .moodle-actionmenu.show .menu.align-tr-br{margin-top:2px}.jsenabled .navbar-inverse .usermenu .moodle-actionmenu.show{background-color:#111}.dir-ltr
  3648. .usermenu{float:right}.dir-ltr .usermenu>.moodle-actionmenu>.menu:before{right:9px}.dir-ltr .usermenu>.moodle-actionmenu>.menu:after{right:10px}.dir-ltr .usermenu>.moodle-actionmenu>.menubar li
  3649. a{text-align:right}.dir-ltr.userloggedinas .usermenu .userbutton .avatars
  3650. .avatar.current{left:16px}.dir-rtl
  3651. .usermenu{float:left}.dir-rtl .usermenu>.moodle-actionmenu>.menu{margin-right:0}.dir-rtl .usermenu>.moodle-actionmenu>.menu:before{left:9px}.dir-rtl .usermenu>.moodle-actionmenu>.menu:after{left:10px}.dir-rtl .usermenu>.moodle-actionmenu>.menubar li
  3652. a{text-align:left}.dir-rtl.userloggedinas .usermenu .userbutton .avatars
  3653. .avatar.current{left:-14px}.userloggedinas .usermenu .userbutton .avatars
  3654. .avatar{overflow:hidden}.userloggedinas .usermenu .userbutton .avatars
  3655. .avatar.current{position:relative;top:4px;left:4px;width:20px;height:20px;margin-top:11px;margin-bottom:-34px;border:1px
  3656. solid #fff;border-radius:50%;box-shadow:-2px -2px 16px rgba(0,0,0,.25)}.userloggedinas .usermenu .userbutton .avatars .avatar
  3657. img{width:inherit;height:inherit}.path-mod-quiz #mod_quiz_navblock
  3658. .qnbutton{text-decoration:none;font-size:14px;line-height:20px;font-weight:400;background-color:#fff;background-image:none;height:40px;width:30px;border-radius:3px;border:0;overflow:visible;margin:0
  3659. 6px 6px 0}.path-mod-quiz #mod_quiz_navblock
  3660. span.qnbutton{cursor:default;background-color:#eee;color:#555}.path-mod-quiz #mod_quiz_navblock a.qnbutton:active,.path-mod-quiz #mod_quiz_navblock a.qnbutton:focus,.path-mod-quiz #mod_quiz_navblock a.qnbutton:hover{text-decoration:underline}.path-mod-quiz #mod_quiz_navblock .qnbutton
  3661. .thispageholder{border:1px
  3662. solid;border-radius:3px;z-index:1}.path-mod-quiz #mod_quiz_navblock .qnbutton.thispage
  3663. .thispageholder{border-width:3px}.path-mod-quiz #mod_quiz_navblock .allquestionsononepage .qnbutton.thispage
  3664. .thispageholder{border-width:1px}.path-mod-quiz #mod_quiz_navblock .qnbutton.flagged
  3665. .thispageholder{background:url(/theme/image.php/essential/theme/1489002274/mod/quiz/flag-on) 15px 0 no-repeat}.path-mod-quiz #mod_quiz_navblock .qnbutton
  3666. .trafficlight{border:0;background:center/10px no-repeat #fff;height:20px;margin-top:20px;border-radius:0 0 3px 3px}.path-mod-quiz #mod_quiz_navblock .qnbutton.invalidanswer .trafficlight,.path-mod-quiz #mod_quiz_navblock .qnbutton.notyetanswered
  3667. .trafficlight{background-color:#fff}.path-mod-quiz #mod_quiz_navblock .qnbutton.invalidanswer
  3668. .trafficlight{background-image:url(/theme/image.php/essential/theme/1489002274/mod/quiz/warningtriangle)}.path-mod-quiz #mod_quiz_navblock .qnbutton.correct
  3669. .trafficlight{background-image:url(/theme/image.php/essential/theme/1489002274/mod/quiz/checkmark);background-color:#468847}.path-mod-quiz #mod_quiz_navblock .qnbutton.blocked
  3670. .trafficlight{background-image:url(/theme/image.php/essential/core/1489002274/t/locked);background-color:#eee}.path-mod-quiz #mod_quiz_navblock .qnbutton.incorrect .trafficlight,.path-mod-quiz #mod_quiz_navblock .qnbutton.notanswered
  3671. .trafficlight{background-color:#b94a48}.path-mod-quiz #mod_quiz_navblock .qnbutton.partiallycorrect
  3672. .trafficlight{background-image:url(/theme/image.php/essential/theme/1489002274/mod/quiz/whitecircle);background-color:#f89406}.path-mod-quiz #mod_quiz_navblock .qnbutton.answersaved .trafficlight,.path-mod-quiz #mod_quiz_navblock .qnbutton.complete .trafficlight,.path-mod-quiz #mod_quiz_navblock .qnbutton.requiresgrading
  3673. .trafficlight{background-color:#595959}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax{background-color:#fff}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit div.yui-layout-bd,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit div.yui-layout-bd-noft,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit div.yui-layout-bd-nohd,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit-bottom,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit-right{border:0}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit-bottom,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit-right{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px
  3674. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3;border-radius:0}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit-bottom blockquote,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit-right
  3675. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax .yui-layout-unit div.yui-layout-bd{background-color:transparent}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable
  3676. td.cell{border:0;padding:3px
  3677. 15px;white-space:nowrap}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable input,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable td.cell
  3678. input{margin:0
  3679. 10px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable input#input-message,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable td.cell input#input-message{width:45%;margin:auto}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable a,.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable td.cell
  3680. a{margin:0
  3681. 5px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-userlist{padding:10px
  3682. 5px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-userlist #users-list{border-top:1px solid #ddd;border-bottom:1px solid #fff}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-userlist #users-list
  3683. li{border-top:1px solid #fff;border-bottom:1px solid #ddd;padding:5px
  3684. 10px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-userlist #users-list
  3685. img{margin-right:8px;border:1px
  3686. solid #ccc;max-width:none}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-messages{margin:20px
  3687. 25px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-messages .chat-event.course-theme{text-align:center;margin:10px
  3688. 0;font-size:11.9px;color:#777}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-messages .chat-message.course-theme{background-color:#fff;border:1px
  3689. dotted #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:4px
  3690. 10px;margin:10px
  3691. 0}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-messages .chat-message.course-theme
  3692. .time{float:right;font-size:11px;color:#777}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-messages .mdl-chat-my-entry .chat-message.course-theme{background-color:#f6f6f6}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-messages .mdl-chat-my-entry .chat-message.course-theme
  3693. .user{font-weight:700}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl .yui-layout-unit-right{padding:0}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl .yui-layout-unit div.yui-layout-bd{text-align:right}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl #chat-userlist #users-list
  3694. img{margin-left:8px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl #chat-messages .chat-message.course-theme
  3695. .time{float:left}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl #chat-messages .chat-message.course-theme
  3696. .user{float:right}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl #chat-messages .chat-message.course-theme .chat-message-meta{height:20px}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax.dir-rtl #chat-messages .chat-message.course-theme
  3697. .text{text-align:right}#page-report-participation-index .participationselectform div
  3698. label{display:inline;margin:0
  3699. 5px}#page-report-participation-index.dir-ltr .participationselectform div label[for=menuinstanceid]{margin-left:0}#page-report-participation-index.dir-rtl .participationselectform div label[for=menuinstanceid]{margin-right:0}.path-backup .mform
  3700. .grouped_settings.section_level{min-height:20px;margin-bottom:20px;background-color:#f5f5f5;border:1px
  3701. solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);border-color:#e3e3e3;padding:10px
  3702. 0 0;clear:both}.path-backup .mform .grouped_settings.section_level
  3703. blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.path-backup .mform
  3704. .grouped_settings{clear:both;overflow:hidden}.path-backup .grouped_settings .normal_setting,.path-backup
  3705. .include_setting{display:inline-block}.path-backup .include_setting.section_level
  3706. label{font-weight:700}.path-backup .mform .fitem
  3707. .fitemtitle{width:260px}.path-backup .mform .fitem
  3708. .felement{margin-left:280px}.path-backup
  3709. .notification.dependencies_enforced{text-align:center;color:#b94a48;font-weight:700}.path-backup
  3710. .backup_progress{text-align:center}.path-backup .backup_progress
  3711. .backup_stage{color:inherit;font-style:italic}.path-backup .backup_progress
  3712. .backup_stage.backup_stage_current{font-weight:700;color:inherit}.path-backup .backup_progress
  3713. span.backup_stage.backup_stage_complete{color:inherit}#page-backup-restore
  3714. .filealiasesfailures{background-color:#f2dede}#page-backup-restore .filealiasesfailures
  3715. .aliaseslist{width:90%;margin:.8em auto;background-color:#fff;border:1px
  3716. dotted #666}.path-backup .fitem
  3717. .smallicon{vertical-align:text-bottom}.backup-restore .backup-section .backup-sub-section h3,.backup-restore .backup-section>h2.header{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}.backup-restore .backup-section
  3718. .noticebox{margin:1em
  3719. auto;width:60%;text-align:center}.backup-restore .backup-section.settings-section .detail-pair{width:50%;display:inline-block}.backup-restore .backup-section.settings-section .detail-pair-label{width:65%}.backup-restore .backup-section.settings-section .detail-pair-value{width:25%}.backup-restore
  3720. .activitytable{min-width:500px}.backup-restore .activitytable
  3721. .modulename{width:100px}.backup-restore .activitytable .moduleincluded,.backup-restore .activitytable
  3722. .userinfoincluded{width:50px}.backup-restore .detail-pair-label{display:inline-block;width:25%;padding:8px;margin:0;text-align:right;font-weight:700;vertical-align:top}.backup-restore .detail-pair-value{display:inline-block;width:65%;padding:8px;margin:0}.backup-restore .detail-pair-value>.sub-detail{display:block;font-size:11.9px;color:inherit;font-style:italic}.backup-restore>.singlebutton{text-align:right}.path-backup .mform .fgroup
  3723. .proceedbutton{float:right;margin-right:5%}.path-backup .mform .fgroup
  3724. .oneclickbackup{float:right}.restore-course-search .rcs-results{width:70%;min-width:400px}.restore-course-search .rcs-results
  3725. table{width:100%;margin:0;border-width:0}.restore-course-search .rcs-results table .no-overflow{max-width:600px}.restore-course-search .rcs-results
  3726. .paging{text-align:left;margin:0;background-color:#eee;padding:3px}.restore-course-category .rcs-results{width:70%;min-width:400px;border:1px
  3727. solid #ddd;margin:5px
  3728. 0}.restore-course-category .rcs-results
  3729. table{width:100%;margin:0;border-width:0}.restore-course-category .rcs-results table .no-overflow{max-width:600px}.restore-course-category .rcs-results
  3730. .paging{text-align:left;margin:0;background-color:#eee;padding:3px}.path-backup
  3731. .wibbler{width:500px;margin:0
  3732. auto 10px;border-bottom:1px solid #000;border-right:1px solid #000;border-left:1px solid #000;position:relative;min-height:4px}.path-backup .wibbler
  3733. .wibble{position:absolute;left:0;right:0;top:0;height:4px}.path-backup .wibbler
  3734. .state0{background:#eee}.path-backup .wibbler
  3735. .state1{background:#ddd}.path-backup .wibbler
  3736. .state2{background:#ccc}.path-backup .wibbler
  3737. .state3{background:#bbb}.path-backup .wibbler
  3738. .state4{background:#aaa}.path-backup .wibbler
  3739. .state5{background:#999}.path-backup .wibbler
  3740. .state6{background:#888}.path-backup .wibbler
  3741. .state7{background:#777}.path-backup .wibbler
  3742. .state8{background:#666}.path-backup .wibbler
  3743. .state9{background:#555}.path-backup .wibbler
  3744. .state10{background:#444}.path-backup .wibbler
  3745. .state11{background:#333}.path-backup .wibbler
  3746. .state12{background:#222}.path-backup
  3747. .backup_log{margin-top:2em}.path-backup .backup_log
  3748. h2{font-size:1em}.path-backup
  3749. .backup_log_contents{border:1px
  3750. solid #ddd;padding:10px;height:300px;overflow-y:scroll}.dir-rtl.path-backup .mform .fgroup
  3751. .proceedbutton{float:left;margin-left:5%;margin-right:0}.dir-rtl.path-backup .mform .fgroup
  3752. .oneclickbackup{float:left}.generaltable,table.flexible{width:100%;margin-bottom:20px}.generaltable td,.generaltable th,table.flexible td,table.flexible
  3753. th{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.generaltable th,table.flexible
  3754. th{font-weight:700}.generaltable thead th,table.flexible thead
  3755. th{vertical-align:bottom}.generaltable caption+thead tr:first-child td,.generaltable caption+thead tr:first-child th,.generaltable colgroup+thead tr:first-child td,.generaltable colgroup+thead tr:first-child th,.generaltable thead:first-child tr:first-child td,.generaltable thead:first-child tr:first-child th,table.flexible caption+thead tr:first-child td,table.flexible caption+thead tr:first-child th,table.flexible colgroup+thead tr:first-child td,table.flexible colgroup+thead tr:first-child th,table.flexible thead:first-child tr:first-child td,table.flexible thead:first-child tr:first-child
  3756. th{border-top:0}.generaltable tbody+tbody,table.flexible tbody+tbody{border-top:2px solid #ddd}.generaltable .table,table.flexible
  3757. .table{background-color:#fff}.singlebutton
  3758. div{display:inline-block;margin-right:5px;margin-bottom:5px;margin-left:5px}#notice .buttons
  3759. .singlebutton{display:inline-block}.continuebutton{text-align:center}p.arrow_button{margin-top:5em;text-align:center}p.arrow_button
  3760. #remove{margin:3em
  3761. auto 5em}p.arrow_button
  3762. input{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#addcontrols{margin-top:30px;text-align:center;margin-bottom:3em}#addcontrols
  3763. label{display:inline}#addcontrols input,#removecontrols
  3764. input{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:auto}.btn-lineup,input[name=searchwikicontent]+input[type=submit],input[type=password]+input[type=submit],input[type=text]+button,input[type=text]+input[type=button],input[type=text]+input[type=submit],select+input[type=submit]{margin:0
  3765. 0 10px 5px}button,input.form-submit,input[type=button],input[type=reset],input[type=submit]{display:inline-block;padding:4px
  3766. 12px;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px
  3767. solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}button.active,button.disabled,button:active,button:focus,button:hover,button[disabled],input.form-submit.active,input.form-submit.disabled,input.form-submit:active,input.form-submit:focus,input.form-submit:hover,input.form-submit[disabled],input[type=button].active,input[type=button].disabled,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=button][disabled],input[type=reset].active,input[type=reset].disabled,input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover,input[type=reset][disabled],input[type=submit].active,input[type=submit].disabled,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover,input[type=submit][disabled]{color:#333;background-color:#e6e6e6}button:focus,button:hover,input.form-submit:focus,input.form-submit:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}button:focus,input.form-submit:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}button.active,button:active,input.form-submit.active,input.form-submit:active,input[type=button].active,input[type=button]:active,input[type=reset].active,input[type=reset]:active,input[type=submit].active,input[type=submit]:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}button.disabled,button[disabled],input.form-submit.disabled,input.form-submit[disabled],input[type=button].disabled,input[type=button][disabled],input[type=reset].disabled,input[type=reset][disabled],input[type=submit].disabled,input[type=submit][disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}button .badge,button .label,input.form-submit .badge,input.form-submit .label,input[type=button] .badge,input[type=button] .label,input[type=reset] .badge,input[type=reset] .label,input[type=submit] .badge,input[type=submit] .label{position:relative;top:-1px}button,input.form-submit,input[type=button],input[type=reset],input[type=submit]{margin:0
  3768. 0 10px 5px}button.yui3-button.closebutton,button.yui3-button.closebutton:hover{background-position:0 0}input.fp-btn-choose{padding:2px
  3769. 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.user-enroller-panel .uep-search-results .cohort .options .enrol,.user-enroller-panel .uep-search-results .user .options
  3770. .enrol{padding:0
  3771. 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.user-enroller-panel .uep-search-results .cohort .options .enrol .badge,.user-enroller-panel .uep-search-results .cohort .options .enrol .label,.user-enroller-panel .uep-search-results .user .options .enrol .badge,.user-enroller-panel .uep-search-results .user .options .enrol
  3772. .label{top:0}.gradetreebox
  3773. h4{font-size:14px}.gradetreebox input[type=text],.gradetreebox
  3774. th.cell{width:auto}.gradetreebox input[type=text],.gradetreebox
  3775. select{margin-bottom:0}#page-grade-grading-manage #activemethodselector label,.core_grades_notices
  3776. .singlebutton{display:inline-block}#page-grade-grading-manage #activemethodselector
  3777. .helptooltip{margin-right:.5em}#page-grade-grading-manage
  3778. .actions{display:block;text-align:center;margin-bottom:1em}#page-grade-grading-manage .actions
  3779. .action{line-height:20px;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;display:inline-block;position:relative;vertical-align:top;width:150px;text-align:center;overflow:hidden;margin:.5em;padding:1em;border:1px
  3780. solid #aaa}#page-grade-grading-manage .actions .action.active,#page-grade-grading-manage .actions .action.disabled,#page-grade-grading-manage .actions .action:active,#page-grade-grading-manage .actions .action:focus,#page-grade-grading-manage .actions .action:hover,#page-grade-grading-manage .actions .action[disabled]{color:#333;background-color:#e6e6e6}#page-grade-grading-manage .actions .action:focus,#page-grade-grading-manage .actions .action:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}#page-grade-grading-manage .actions .action:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#page-grade-grading-manage .actions .action.active,#page-grade-grading-manage .actions .action:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}#page-grade-grading-manage .actions .action.disabled,#page-grade-grading-manage .actions .action[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#page-grade-grading-manage .actions .action .badge,#page-grade-grading-manage .actions .action
  3781. .label{position:relative;top:-1px}#page-grade-grading-manage .actions .action .action-icon{display:inline-block;position:relative;height:64px;width:64px}#page-grade-grading-manage .actions .action .action-text{position:relative;top:.4em;font-size:14px}#page-grade-grading-form-rubric-edit .gradingform_rubric_editform
  3782. .status{font-size:70%}.gradingform_rubric.editor .addcriterion input,.gradingform_rubric.editor .addlevel
  3783. input{background:top left no-repeat #fff}.dir-rtl #rubric-rubric.gradingform_rubric #rubric-criteria .criterion .level
  3784. .score{text-align:right;float:right;margin-left:28px;margin-right:0}.dir-rtl #rubric-rubric.gradingform_rubric #rubric-criteria .criterion .level
  3785. .delete{float:left}.dir-rtl #rubric-rubric.gradingform_rubric #rubric-criteria .criterion .level .delete
  3786. input{left:0;right:auto}.dir-rtl #rubric-rubric.gradingform_rubric
  3787. .addcriterion{margin-right:5px;margin-left:0}.dir-rtl #rubric-rubric.gradingform_rubric .addcriterion
  3788. input{padding-right:26px;padding-left:10px;background-position:right 8px top 8px}.dir-rtl #rubric-rubric.gradingform_rubric .options .option
  3789. .value{margin-left:0;margin-right:5px}.dir-rtl #rubric-rubric.gradingform_rubric .options .option
  3790. input{margin-left:12px;margin-right:5px}#rubric-rubric.gradingform_rubric #rubric-criteria{margin-bottom:1em}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion
  3791. .description{vertical-align:top;padding:6px}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .description
  3792. textarea{margin-bottom:0;height:115px}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .definition
  3793. textarea{width:80%;margin-bottom:0}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion
  3794. .score{position:relative;float:left;margin-right:28px}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .score
  3795. input{margin-bottom:0}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion
  3796. .level{vertical-align:top;padding:6px}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .level
  3797. .delete{position:relative;width:32px;height:32px;margin-top:-32px;clear:both;float:right}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .level .delete
  3798. input{display:block;position:absolute;right:0;bottom:0;height:24px;width:24px;margin:0}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .level .delete input:hover{background-color:#ddd}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .scorevalue
  3799. input{float:none;width:2em}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .scorevalue input.hiddenelement,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .scorevalue
  3800. input.pseudotablink{width:0}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion
  3801. .addlevel{vertical-align:middle}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel
  3802. input{display:inline-block;padding:4px
  3803. 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px
  3804. solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);background-position:0 0;height:30px;margin-right:5px}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input.active,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input.disabled,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:active,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:focus,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:hover,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input[disabled]{color:#333;background-color:#e6e6e6}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:focus,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input.active,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input.disabled,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input .badge,#rubric-rubric.gradingform_rubric #rubric-criteria .criterion .addlevel input
  3805. .label{position:relative;top:-1px}#rubric-rubric.gradingform_rubric
  3806. .addcriterion{margin-left:5px;display:inline-block;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px
  3807. solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);padding:0;margin-bottom:1em}#rubric-rubric.gradingform_rubric .addcriterion.active,#rubric-rubric.gradingform_rubric .addcriterion.disabled,#rubric-rubric.gradingform_rubric .addcriterion:active,#rubric-rubric.gradingform_rubric .addcriterion:focus,#rubric-rubric.gradingform_rubric .addcriterion:hover,#rubric-rubric.gradingform_rubric .addcriterion[disabled]{color:#333;background-color:#e6e6e6}#rubric-rubric.gradingform_rubric .addcriterion:focus,#rubric-rubric.gradingform_rubric .addcriterion:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}#rubric-rubric.gradingform_rubric .addcriterion:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#rubric-rubric.gradingform_rubric .addcriterion.active,#rubric-rubric.gradingform_rubric .addcriterion:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}#rubric-rubric.gradingform_rubric .addcriterion.disabled,#rubric-rubric.gradingform_rubric .addcriterion[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#rubric-rubric.gradingform_rubric .addcriterion .badge,#rubric-rubric.gradingform_rubric .addcriterion
  3808. .label{position:relative;top:-1px}#rubric-rubric.gradingform_rubric .addcriterion
  3809. input{margin:0;color:inherit;text-shadow:inherit;border:0;line-height:inherit;background:url(/theme/image.php/essential/core/1489002274/t/add) 7px 8px no-repeat;padding-left:26px}#rubric-rubric.gradingform_rubric
  3810. .options{clear:both}#rubric-rubric.gradingform_rubric .options .option
  3811. label{margin:0;padding:0;font-size:inherit;font-weight:400;line-height:2em;color:inherit;text-shadow:none;background-color:transparent}#rubric-rubric.gradingform_rubric .options .option
  3812. input{margin-left:5px;margin-right:12px}.path-grade-edit-tree .setup-grades
  3813. h4{margin:0}.path-grade-edit-tree .setup-grades .column-rowspan{padding:0;width:24px;min-width:24px;max-width:24px}.path-grade-edit-tree .setup-grades .category td.column-name{padding-left:0}.path-grade-edit-tree .setup-grades td.column-name{padding-left:24px}.path-grade-edit-tree .setup-grades .column-name h4
  3814. img.icon{padding-left:0}.path-grade-edit-tree .setup-grades .category .column-range,.path-grade-edit-tree .setup-grades .category input[type=text],.path-grade-edit-tree .setup-grades .categoryitem,.path-grade-edit-tree .setup-grades
  3815. .courseitem{font-weight:700}.path-grade-edit-tree .setup-grades
  3816. .emptyrow{display:none}.path-grade-edit-tree .setup-grades
  3817. .gradeitemdescription{font-weight:400;padding-left:24px}.path-grade-edit-tree .setup-grades .column-weight{white-space:nowrap}.path-grade-edit-tree .setup-grades .column-weight.level3{padding-left:37px}.path-grade-edit-tree .setup-grades .column-weight.level4{padding-left:66px}.path-grade-edit-tree .setup-grades .column-weight.level5{padding-left:95px}.path-grade-edit-tree .setup-grades .column-weight.level6{padding-left:124px}.path-grade-edit-tree .setup-grades .column-weight.level7{padding-left:153px}.path-grade-edit-tree .setup-grades .column-weight.level8{padding-left:182px}.path-grade-edit-tree .setup-grades .column-weight.level9{padding-left:211px}.path-grade-edit-tree .setup-grades .column-weight.level10{padding-left:240px}.path-grade-edit-tree .setup-grades .column-range.level2{padding-left:37px}.path-grade-edit-tree .setup-grades .column-range.level3{padding-left:66px}.path-grade-edit-tree .setup-grades .column-range.level4{padding-left:95px}.path-grade-edit-tree .setup-grades .column-range.level5{padding-left:124px}.path-grade-edit-tree .setup-grades .column-range.level6{padding-left:153px}.path-grade-edit-tree .setup-grades .column-range.level7{padding-left:182px}.path-grade-edit-tree .setup-grades .column-range.level8{padding-left:211px}.path-grade-edit-tree .setup-grades .column-range.level9{padding-left:240px}.path-grade-edit-tree .setup-grades .column-range.level10{padding-left:269px}.path-grade-edit-tree .setup-grades.generaltable
  3818. .levelodd{background-color:#f9f9f9}.path-grade-edit-tree .setup-grades.generaltable
  3819. .leveleven{background-color:transparent}.dir-rtl.path-grade-edit-tree .setup-grades .category td.column-name{padding-right:0}.dir-rtl.path-grade-edit-tree .setup-grades td.column-name{padding-right:24px}.dir-rtl.path-grade-edit-tree .setup-grades .column-name h4
  3820. img.icon{padding-left:4px}.dir-rtl.path-grade-edit-tree .setup-grades
  3821. .gradeitemdescription{padding-left:0;padding-right:24px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level3{padding-left:0;padding-right:37px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level4{padding-left:0;padding-right:66px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level5{padding-left:0;padding-right:95px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level6{padding-left:0;padding-right:124px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level7{padding-left:0;padding-right:153px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level8{padding-left:0;padding-right:182px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level9{padding-left:0;padding-right:211px}.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level10{padding-left:0;padding-right:240px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level2{padding-left:0;padding-right:37px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level3{padding-left:0;padding-right:66px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level4{padding-left:0;padding-right:95px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level5{padding-left:0;padding-right:124px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level6{padding-left:0;padding-right:153px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level7{padding-left:0;padding-right:182px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level8{padding-left:0;padding-right:211px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level9{padding-left:0;padding-right:240px}.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level10{padding-left:0;padding-right:269px}.path-grade-report .gradeparent
  3822. table{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.path-grade-report .gradeparent tr
  3823. .cell{background-color:#fff}.path-grade-report .gradeparent .cell,.path-grade-report .gradeparent
  3824. table{border-color:#ddd}.path-grade-report .gradeparent .avg,.path-grade-report .gradeparent .floater .cell,.path-grade-report .gradeparent tr:nth-of-type(even) .cell{background-color:#f9f9f9}.path-grade-report .gradeparent table
  3825. .clickable{cursor:pointer}.path-grade-report-user .user-grade{border:none}.path-grade-report-user .user-grade.generaltable
  3826. .levelodd{background-color:#f9f9f9}.path-grade-report-user .user-grade.generaltable
  3827. .leveleven{background-color:transparent}.has_dock.path-grade-report-grader .gradeparent .sideonly.floating>.cell{padding-left:47px}.has_dock.path-grade-report-grader.dir-rtl .gradeparent .sideonly.floating>.cell{padding-left:5px;padding-right:47px}.content-only.path-grade-report-grader .gradeparent
  3828. table{margin-left:42px}.content-only.path-grade-report-grader.dir-rtl .gradeparent
  3829. table{margin-left:0;margin-right:42px}.transform-test-heading{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:11px;line-height:36px;text-align:center;font-weight:700;margin:0;padding:0}#dock{z-index:12000;width:42px;position:fixed;top:0;left:0;height:100%;background-color:transparent;border-right:0 none}#dock
  3830. .nothingdocked{visibility:hidden;display:none}#dock
  3831. .dockeditem_container{margin-top:68px}#dock .dockeditem
  3832. .firstdockitem{margin-top:1em}#dock
  3833. .dockedtitle{font-size:14px;line-height:20px;text-align:center;vertical-align:middle;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px
  3834. solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);display:block;width:36px;margin:3px;padding:0;cursor:pointer}#dock .dockedtitle.active,#dock .dockedtitle.disabled,#dock .dockedtitle:active,#dock .dockedtitle:focus,#dock .dockedtitle:hover,#dock .dockedtitle[disabled]{color:#333;background-color:#e6e6e6}#dock .dockedtitle:focus,#dock .dockedtitle:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}#dock .dockedtitle:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#dock .dockedtitle.active,#dock .dockedtitle:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}#dock .dockedtitle.disabled,#dock .dockedtitle[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#dock .dockedtitle .badge,#dock .dockedtitle
  3835. .label{position:relative;top:-1px}#dock .dockedtitle
  3836. h2{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:11px;line-height:36px;text-align:center;font-weight:700;margin:0;padding:0}#dock .dockedtitle
  3837. .filterrotate{margin-left:8px}#dock
  3838. .controls{position:absolute;bottom:1em;text-align:center;width:100%}#dock .controls
  3839. img{cursor:pointer}#dock .editing_move,#dock .moodle-core-dragdrop-draghandle{display:none}#dockeditempanel{min-width:200px;position:relative;left:100%;padding-left:5px}#dockeditempanel.dockitempanel_hidden{display:none}#dockeditempanel
  3840. .dockeditempanel_content{background-color:#f5f5f5;width:384px;border:1px
  3841. solid #d5d5d5;-webkit-box-shadow:2px 4px 4px 2px #eee;-moz-box-shadow:2px 4px 4px 2px #eee;box-shadow:2px 4px 4px 2px #eee;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}#dockeditempanel
  3842. .dockeditempanel_bd{overflow:auto}#dockeditempanel .dockeditempanel_bd>*{margin:1em}#dockeditempanel .dockeditempanel_bd .block_navigation .block_tree
  3843. li{overflow:visible}#dockeditempanel
  3844. .dockeditempanel_hd{border-bottom:1px solid #fff;padding:.5em 1em}#dockeditempanel .dockeditempanel_hd
  3845. h2{display:block;font-weight:700;line-height:20px;color:#595959;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase;font-size:1.1em;padding:0;margin:0;max-width:85%}#dockeditempanel .dockeditempanel_hd
  3846. .commands{display:block;text-align:right}#dockeditempanel .dockeditempanel_hd .commands>a,#dockeditempanel .dockeditempanel_hd .commands>span{margin-left:3px;cursor:pointer}#dockeditempanel .dockeditempanel_hd .commands img,#dockeditempanel .dockeditempanel_hd .commands
  3847. input{vertical-align:middle;margin-right:1px}#dockeditempanel .dockeditempanel_hd .commands .hidepanelicon
  3848. img{cursor:pointer}#dockeditempanel .dockeditempanel_hd .commands
  3849. img.actionmenu{width:auto}.dir-rtl.has_dock
  3850. #page{padding-left:20px;padding-right:45px}.dir-rtl
  3851. #dock{left:auto;right:0}.dir-rtl #dock .dockedtitle
  3852. h2{line-height:25px}.dir-rtl
  3853. #dockeditempanel{right:100%}.dir-rtl #dockeditempanel .dockeditempanel_hd
  3854. .commands{text-align:left}.columns-autoflow-1to1to1{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:20px;-moz-column-gap:20px;column-gap:20px}@media (max-width:767px){.columns-autoflow-1to1to1{-webkit-column-count:1;-moz-column-count:1;column-count:1;-webkit-column-gap:0;-moz-column-gap:0;column-gap:0}}@media (min-width:768px) and (max-width:979px){.dir-rtl .row-fluid.rtl-compatible [class*=span]{float:right;margin-left:0;margin-right:2.76243094%}.dir-rtl .row-fluid.rtl-compatible [class*=span]:first-child{margin-right:0}}@media (min-width:980px) and (max-width:1199px){.dir-rtl .row-fluid.rtl-compatible [class*=span]{float:right;margin-left:0;margin-right:2.12765957%}.dir-rtl .row-fluid.rtl-compatible [class*=span]:first-child{margin-right:0}}@media (min-width:1200px){.dir-rtl .row-fluid.rtl-compatible [class*=span]{float:right;margin-left:0;margin-right:2.56410256%}.dir-rtl .row-fluid.rtl-compatible [class*=span]:first-child{margin-right:0}}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.hidden-desktop,.visible-phone,.visible-tablet{display:none!important}.visible-desktop{display:inherit!important}@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media (max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}.visible-print{display:none!important}@media
  3855. print{.visible-print{display:inherit!important}.hidden-print{display:none!important}}@media (min-width:1200px){.row{margin-left:-30px}.row:after,.row:before{display:table;content:"";line-height:0}.row:after{clear:both}[class*=span]{float:left;min-height:1px;margin-left:30px}.container,.navbar-fixed-bottom .container,.navbar-fixed-top .container,.navbar-static-top .container,.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%}.row-fluid:after,.row-fluid:before{display:table;content:"";line-height:0}.row-fluid:after{clear:both}.row-fluid [class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.56410256%}.row-fluid [class*=span]:first-child{margin-left:0}.row-fluid .controls-row [class*=span]+[class*=span]{margin-left:2.56410256%}.row-fluid
  3856. .span12{width:100%}.row-fluid
  3857. .span11{width:91.45299145%}.row-fluid
  3858. .span10{width:82.90598291%}.row-fluid
  3859. .span9{width:74.35897436%}.row-fluid
  3860. .span8{width:65.81196581%}.row-fluid
  3861. .span7{width:57.26495726%}.row-fluid
  3862. .span6{width:48.71794872%}.row-fluid
  3863. .span5{width:40.17094017%}.row-fluid
  3864. .span4{width:31.62393162%}.row-fluid
  3865. .span3{width:23.07692308%}.row-fluid
  3866. .span2{width:14.52991453%}.row-fluid
  3867. .span1{width:5.98290598%}.row-fluid
  3868. .offset12{margin-left:105.12820513%}.row-fluid .offset12:first-child{margin-left:102.56410256%}.row-fluid
  3869. .offset11{margin-left:96.58119658%}.row-fluid .offset11:first-child{margin-left:94.01709402%}.row-fluid
  3870. .offset10{margin-left:88.03418803%}.row-fluid .offset10:first-child{margin-left:85.47008547%}.row-fluid
  3871. .offset9{margin-left:79.48717949%}.row-fluid .offset9:first-child{margin-left:76.92307692%}.row-fluid
  3872. .offset8{margin-left:70.94017094%}.row-fluid .offset8:first-child{margin-left:68.37606838%}.row-fluid
  3873. .offset7{margin-left:62.39316239%}.row-fluid .offset7:first-child{margin-left:59.82905983%}.row-fluid
  3874. .offset6{margin-left:53.84615385%}.row-fluid .offset6:first-child{margin-left:51.28205128%}.row-fluid
  3875. .offset5{margin-left:45.2991453%}.row-fluid .offset5:first-child{margin-left:42.73504274%}.row-fluid
  3876. .offset4{margin-left:36.75213675%}.row-fluid .offset4:first-child{margin-left:34.18803419%}.row-fluid
  3877. .offset3{margin-left:28.20512821%}.row-fluid .offset3:first-child{margin-left:25.64102564%}.row-fluid
  3878. .offset2{margin-left:19.65811966%}.row-fluid .offset2:first-child{margin-left:17.09401709%}.row-fluid
  3879. .offset1{margin-left:11.11111111%}.row-fluid .offset1:first-child{margin-left:8.54700855%}.uneditable-input,input,textarea{margin-left:0}.controls-row [class*=span]+[class*=span]{margin-left:30px}.uneditable-input.span12,input.span12,textarea.span12{width:1156px}.uneditable-input.span11,input.span11,textarea.span11{width:1056px}.uneditable-input.span10,input.span10,textarea.span10{width:956px}.uneditable-input.span9,input.span9,textarea.span9{width:856px}.uneditable-input.span8,input.span8,textarea.span8{width:756px}.uneditable-input.span7,input.span7,textarea.span7{width:656px}.uneditable-input.span6,input.span6,textarea.span6{width:556px}.uneditable-input.span5,input.span5,textarea.span5{width:456px}.uneditable-input.span4,input.span4,textarea.span4{width:356px}.uneditable-input.span3,input.span3,textarea.span3{width:256px}.uneditable-input.span2,input.span2,textarea.span2{width:156px}.uneditable-input.span1,input.span1,textarea.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid
  3880. .thumbnails{margin-left:0}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px}.row:after,.row:before{display:table;content:"";line-height:0}.row:after{clear:both}[class*=span]{float:left;min-height:1px;margin-left:20px}.container,.navbar-fixed-bottom .container,.navbar-fixed-top .container,.navbar-static-top .container,.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%}.row-fluid:after,.row-fluid:before{display:table;content:"";line-height:0}.row-fluid:after{clear:both}.row-fluid [class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.76243094%}.row-fluid [class*=span]:first-child{margin-left:0}.row-fluid .controls-row [class*=span]+[class*=span]{margin-left:2.76243094%}.row-fluid
  3881. .span12{width:100%}.row-fluid
  3882. .span11{width:91.43646409%}.row-fluid
  3883. .span10{width:82.87292818%}.row-fluid
  3884. .span9{width:74.30939227%}.row-fluid
  3885. .span8{width:65.74585635%}.row-fluid
  3886. .span7{width:57.18232044%}.row-fluid
  3887. .span6{width:48.61878453%}.row-fluid
  3888. .span5{width:40.05524862%}.row-fluid
  3889. .span4{width:31.49171271%}.row-fluid
  3890. .span3{width:22.9281768%}.row-fluid
  3891. .span2{width:14.36464088%}.row-fluid
  3892. .span1{width:5.80110497%}.row-fluid
  3893. .offset12{margin-left:105.52486188%}.row-fluid .offset12:first-child{margin-left:102.76243094%}.row-fluid
  3894. .offset11{margin-left:96.96132597%}.row-fluid .offset11:first-child{margin-left:94.19889503%}.row-fluid
  3895. .offset10{margin-left:88.39779006%}.row-fluid .offset10:first-child{margin-left:85.63535912%}.row-fluid
  3896. .offset9{margin-left:79.83425414%}.row-fluid .offset9:first-child{margin-left:77.0718232%}.row-fluid
  3897. .offset8{margin-left:71.27071823%}.row-fluid .offset8:first-child{margin-left:68.50828729%}.row-fluid
  3898. .offset7{margin-left:62.70718232%}.row-fluid .offset7:first-child{margin-left:59.94475138%}.row-fluid
  3899. .offset6{margin-left:54.14364641%}.row-fluid .offset6:first-child{margin-left:51.38121547%}.row-fluid
  3900. .offset5{margin-left:45.5801105%}.row-fluid .offset5:first-child{margin-left:42.81767956%}.row-fluid
  3901. .offset4{margin-left:37.01657459%}.row-fluid .offset4:first-child{margin-left:34.25414365%}.row-fluid
  3902. .offset3{margin-left:28.45303867%}.row-fluid .offset3:first-child{margin-left:25.69060773%}.row-fluid
  3903. .offset2{margin-left:19.88950276%}.row-fluid .offset2:first-child{margin-left:17.12707182%}.row-fluid
  3904. .offset1{margin-left:11.32596685%}.row-fluid .offset1:first-child{margin-left:8.56353591%}.uneditable-input,input,textarea{margin-left:0}.controls-row [class*=span]+[class*=span]{margin-left:20px}.uneditable-input.span12,input.span12,textarea.span12{width:710px}.uneditable-input.span11,input.span11,textarea.span11{width:648px}.uneditable-input.span10,input.span10,textarea.span10{width:586px}.uneditable-input.span9,input.span9,textarea.span9{width:524px}.uneditable-input.span8,input.span8,textarea.span8{width:462px}.uneditable-input.span7,input.span7,textarea.span7{width:400px}.uneditable-input.span6,input.span6,textarea.span6{width:338px}.uneditable-input.span5,input.span5,textarea.span5{width:276px}.uneditable-input.span4,input.span4,textarea.span4{width:214px}.uneditable-input.span3,input.span3,textarea.span3{width:152px}.uneditable-input.span2,input.span2,textarea.span2{width:90px}.uneditable-input.span1,input.span1,textarea.span1{width:28px}}@media (max-width:767px){body{padding-left:20px;padding-right:20px}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{margin-left:-20px;margin-right:-20px}.container-fluid{padding:0}.dl-horizontal
  3905. dt{float:none;clear:none;width:auto;text-align:left}.dl-horizontal
  3906. dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}.row-fluid [class*=span],.uneditable-input[class*=span],[class*=span]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid .span12,.span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*=offset]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,.uneditable-input,input[class*=span],select[class*=span],textarea[class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-append input,.input-append input[class*=span],.input-prepend input,.input-prepend input[class*=span]{display:inline-block;width:auto}.controls-row [class*=span]+[class*=span]{margin-left:0}.modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1
  3907. small{display:block;line-height:20px}input[type=checkbox],input[type=radio]{border:1px
  3908. solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal
  3909. .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-left:10px;padding-right:10px}.media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;left:10px;right:10px}.modal-header
  3910. .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media (max-width:979px){body{padding-top:0}.navbar-fixed-bottom,.navbar-fixed-top{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-bottom .navbar-inner,.navbar-fixed-top .navbar-inner{padding:5px}.navbar
  3911. .container{width:auto;padding:0}.navbar
  3912. .brand{padding-left:10px;padding-right:10px;margin:0
  3913. 0 0 -5px}.nav-collapse{clear:both}.nav-collapse
  3914. .nav{float:none;margin:0
  3915. 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .dropdown-menu a,.nav-collapse .nav>li>a{padding:9px
  3916. 15px;font-weight:700;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse
  3917. .btn{padding:4px
  3918. 10px;font-weight:400;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li
  3919. a{margin-bottom:2px}.nav-collapse .dropdown-menu a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .nav>li>a:hover{background-color:#f2f2f2}.navbar-inverse .nav-collapse .dropdown-menu a,.navbar-inverse .nav-collapse .nav>li>a{color:#595959}.navbar-inverse .nav-collapse .dropdown-menu a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .nav>li>a:hover{background-color:#111}.nav-collapse.in .btn-group{margin-top:5px;padding:0}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0
  3920. 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu .divider,.nav-collapse .dropdown-menu:after,.nav-collapse .dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after,.nav-collapse .nav>li>.dropdown-menu:before{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px
  3921. 15px;margin:10px
  3922. 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-left:10px;padding-right:10px}}@media (min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}}@media (min-width:980px){.dir-rtl .navbar .logininfo,.dir-rtl .navbar .nav.pull-right{float:left}.dir-rtl .navbar .nav,.dir-rtl .navbar .nav>li{float:right}}@media (min-width:980px){a[id]:empty::before,a[name]:empty::before{display:inline-block;position:relative;content:'';padding-top:40px;margin-top:-40px;vertical-align:top}}@media (min-width:980px) and (max-width:1199px){.form-horizontal .control-label,.form-item .form-label,.mform .fitem div.fitemtitle,.userprofile dl.list
  3923. dt{width:200px}#page-mod-forum-search .c1,.form-horizontal .controls,.form-item .form-description,.form-item .form-setting,.mform .fdescription.required,.mform .fitem .felement,.userprofile dl.list
  3924. dd{margin-left:220px}#page-mod-forum-search.dir-lrt .c1,.dir-rtl .form-horizontal .controls,.dir-rtl .form-item .form-description,.dir-rtl .form-item .form-setting,.dir-rtl .mform .fdescription.required,.dir-rtl .mform .fitem .felement,.dir-rtl .userprofile dl.list
  3925. dd{margin-right:220px}.form-buttons,.path-admin
  3926. .buttons{padding-left:220px}}@media (max-width:767px){.file-picker .fp-repo-area{width:100%;height:auto;max-height:220px;y-scroll:auto;float:none;border:0}.file-picker .fp-repo-items{width:100%;float:none;margin-left:0}.file-picker .fp-login-form .fp-login-input
  3927. label{text-align:left}.dir-rtl .file-picker .fp-login-form .fp-login-input
  3928. label{text-align:right}.file-picker .fp-content form
  3929. td{display:block;width:100%;text-align:left}.dir-rtl .file-picker .fp-content form
  3930. td{text-align:right}.fp-content .mdl-right{text-align:left}.dir-rtl .fp-content .mdl-right{text-align:right}.fp-repo-items .fp-navbar{border-top:1px solid #bbb}.dir-rtl .userprofile dl.list dd,.dir-rtl .userprofile dl.list
  3931. dt{float:none;text-align:right;margin-right:0}.fp-formset
  3932. div{height:auto}}@media (min-width:1200px){.path-question #id_answerhdr
  3933. div.fitem_feditor{padding-right:6px}.loginbox.twocolumns
  3934. .loginpanel{margin-left:0}.loginbox.twocolumns .loginpanel,.loginbox.twocolumns
  3935. .signuppanel{width:48.717948717948715%}.form-horizontal .control-label,.form-item .form-label,.mform .fitem div.fitemtitle,.userprofile dl.list
  3936. dt{width:245px}#page-mod-forum-search .c1,.form-horizontal .controls,.form-item .form-description,.form-item .form-setting,.mform .fdescription.required,.mform .fitem .felement,.userprofile dl.list
  3937. dd{margin-left:265px}.dir-rtl .form-horizontal .controls,.dir-rtl .form-item .form-description,.dir-rtl .form-item .form-setting,.dir-rtl .mform .fdescription.required,.dir-rtl .mform .fitem .felement,.dir-rtl .userprofile dl.list
  3938. dd{margin-right:165px}.dir-rtl #page-mod-forum-search
  3939. .c1{margin-right:265px}.dir-rtl .form-horizontal .control-label,.dir-rtl .form-item .form-label,.dir-rtl .mform .fitem div.fitemtitle,.dir-rtl .userprofile dl.list
  3940. dt{width:145px}.form-buttons,.path-admin
  3941. .buttons{padding-left:265px}.dir-rtl .form-buttons,.dir-rtl .path-admin
  3942. .buttons{padding-right:265px}.empty-region-side-post.used-region-side-pre #region-main.span8,.jsenabled.docked-region-side-post.used-region-side-pre #region-main.span8{width:74.35897436%}.empty-region-side-post.used-region-side-pre #block-region-side-pre.span4,.jsenabled.docked-region-side-post.used-region-side-pre #block-region-side-pre.span4{width:23.07692308%}}@media (min-width:980px){.loginbox.twocolumns
  3943. .loginpanel{margin-left:0}.loginbox.twocolumns .loginpanel,.loginbox.twocolumns
  3944. .signuppanel{width:48.617948717948715%}}@media (min-width:768px) and (max-width:979px){.loginbox.twocolumns
  3945. .loginpanel{margin-left:0}.loginbox.twocolumns .loginpanel,.loginbox.twocolumns
  3946. .signuppanel{width:48.61878453038674%}.empty-region-side-post.used-region-side-pre #region-main.span8,.jsenabled.docked-region-side-post.used-region-side-pre #region-main.span8{width:74.30939227%}.empty-region-side-post.used-region-side-pre #block-region-side-pre.span4,.jsenabled.docked-region-side-post.used-region-side-pre #block-region-side-pre.span4{width:22.9281768%}}@media (max-width:767px){.loginbox.twocolumns .loginpanel,.loginbox.twocolumns
  3947. .signuppanel{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#page-mod-quiz-edit div.quizcontents,.questionbankwindow.block{width:100%;float:none}#page-mod-quiz-edit #block-region-side-post,#page-mod-quiz-edit #block-region-side-pre{clear:both}}@media (max-width:480px){.nav-tabs>li{float:none}.nav-tabs>li>a{margin-right:0}.nav-tabs{border-bottom:0}.nav-tabs>li>a{border:1px
  3948. solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs>.active>a,.nav-tabs>.active>a:hover{border:1px
  3949. solid #ddd}.nav-tabs>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.nav-tabs>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{border-color:#ddd;z-index:2}.fp-content-center{display:block;vertical-align:top}.course-content ul.section,.course-content ul.topics li.section,.course-content ul.topics li.section .content,.course-content ul.weeks li.section,.course-content ul.weeks li.section
  3950. .content{margin-right:0;margin-left:0;padding:0}.activityinstance{display:block}.editing .course-content .section
  3951. .activity{margin-bottom:.2em;padding-bottom:.2em;border-bottom:thin solid #eee}.course-content .section .activity
  3952. .commands{text-align:right}.jsenabled .choosercontainer #chooseform
  3953. .alloptions{max-width:100%}.jsenabled .choosercontainer #chooseform .instruction,.jsenabled .choosercontainer #chooseform
  3954. .typesummary{position:static}.que
  3955. .info{float:none;width:auto}.que
  3956. .content{margin:0}.path-mod-choice .horizontal .choices
  3957. .option{display:block}.path-mod-forum .forumsearch
  3958. #search{width:120px}.path-mod-forum .forumheaderlist
  3959. .picture{display:none}}@media (min-width:768px){.row-fluid .desktop-first-column{margin-left:0}#page-navbar .breadcrumb-button{display:inline}}@media (max-width:767px){.row-fluid .desktop-first-column{clear:both}}@media (max-width:767px){.form-item .form-label,.mform .fitem
  3960. div.fitemtitle{float:none;width:auto;padding-top:0;text-align:left}.form-item .form-label
  3961. label{display:inline-block;margin-right:.5em}.form-item .form-setting .form-checkbox{margin-top:0}.form-label span.form-shortname{display:inline-block}.form-item .form-description,.form-item .form-setting,.mform .fdescription.required,.mform .fitem .felement,.path-backup .mform .fitem
  3962. .felement{margin-left:0}#fgroup_id_buttonar,#fitem_id_submitbutton,.fitem_fsubmit .felement.fsubmit,.form-buttons,.form-horizontal .form-actions,.fp-content-center form+div,table#form
  3963. td.submit{padding-left:10px;padding-right:10px}#helppopupbox{width:auto!important;left:0!important}}@media (min-width:768px) and (max-width:979px){.block .minicalendar td,.block_calendar_month
  3964. .content{padding-left:0;padding-right:0}}.dir-rtl .dropdown-menu{margin-right:0}.dir-rtl .dropdown-submenu>a:after{margin-right:0;margin-left:-10px;float:left;border-right-color:#ccc;border-left-color:transparent}.dir-rtl .dropdown-submenu>.dropdown-menu{right:100%;left:auto}@media (max-width:979px){.nav-collapse{height:0}.nav-collapse .nav>li>a{color:#333}.nav-collapse .dropdown-menu a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu>li>a:focus,.nav-collapse .dropdown-menu>li>a:hover,.nav-collapse .dropdown-submenu a:active,.nav-collapse .dropdown-submenu a:focus,.nav-collapse .dropdown-submenu a:hover,.nav-collapse .dropdown-submenu:focus>a,.nav-collapse .dropdown-submenu:hover>a,.nav-collapse .nav>li>a:focus,.nav-collapse .nav>li>a:hover{background-image:none;color:#333}.nav-collapse.in{height:auto}.nav-collapse.in .usermenu .moodle-actionmenu[data-enhanced] .toggle-display{display:none}.nav-collapse.in .usermenu .moodle-actionmenu[data-enhanced] .menu{display:block}.nav-collapse.in .usermenu .moodle-actionmenu[data-enhanced] .menu
  3965. li{margin:0
  3966. .5em}.path-mod-data .box>table>tbody>tr>td{display:block}.path-mod-forum .forumheaderlist thead
  3967. .header{font-weight:400;font-size:12px}.path-mod-forum .forumheaderlist .discussion .author,.path-mod-forum .forumheaderlist .discussion .lastpost,.path-mod-forum .forumheaderlist .discussion
  3968. .replies{font-size:12px}.path-mod-forum .forumheaderlist .discussion .replies .unread
  3969. a{padding:0}.navbar .nav-collapse.in{border-top:1px solid #d4d4d4}.navbar .nav-collapse.in.pull-left,.navbar .nav-collapse.in.pull-right{float:none}.navbar .nav-collapse.in>.nav{margin:0}.navbar .nav-collapse.in>.nav>li>a{padding-left:20px;border-radius:0}.navbar .nav-collapse.in>.nav .dropdown-menu{margin:0
  3970. 0 0 15px}.navbar .nav-collapse.in>.nav .dropdown-menu li>a{border-radius:0}.navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after,.navbar .nav-collapse.in .nav .dropdown-submenu .dropdown-toggle:after{float:none;display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";border-top-color:#d4d4d4;margin-left:4px;margin-top:8px}.navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu.open>a,.navbar .nav-collapse.in .nav .dropdown-submenu.open>a{background-color:#f2f2f2}.navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover .dropdown-menu,.navbar .nav-collapse.in .nav .dropdown-submenu:hover .dropdown-menu{display:none}.navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover.open>a,.navbar .nav-collapse.in .nav .dropdown-submenu:hover.open>a{background-color:#f2f2f2}.navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover.open .open>.dropdown-menu,.navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover.open>.dropdown-menu,.navbar .nav-collapse.in .nav .dropdown-submenu:hover.open .open>.dropdown-menu,.navbar .nav-collapse.in .nav .dropdown-submenu:hover.open>.dropdown-menu{display:block}.navbar .nav-collapse.in .nav .divider,.navbar .nav-collapse.in .nav .dropdown-menu
  3971. .divider{width:auto;display:block;height:0;margin:4px
  3972. 1px;border-left:0 none;border-right:0 none;border-top:1px solid #d4d4d4;border-bottom:1px solid #fff}.navbar-inverse .nav-collapse.in,.navbar-inverse .nav-collapse.in .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after,.navbar-inverse .nav-collapse.in .nav .dropdown-submenu .dropdown-toggle:after{border-top-color:#252525}.navbar-inverse .nav-collapse.in .nav .dropdown-menu .dropdown-submenu.open>a,.navbar-inverse .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover.open>a,.navbar-inverse .nav-collapse.in .nav .dropdown-submenu.open>a,.navbar-inverse .nav-collapse.in .nav .dropdown-submenu:hover.open>a{background-color:#111}.navbar-inverse .nav-collapse.in .nav .divider,.navbar-inverse .nav-collapse.in .nav .dropdown-menu
  3973. .divider{width:auto;display:block;height:0;margin:4px
  3974. 1px;border-top:1px solid #111;border-bottom:1px solid #515151}.navbar-inverse .nav-collapse.in .dropdown-menu a:focus,.navbar-inverse .nav-collapse.in .dropdown-menu a:hover,.navbar-inverse .nav-collapse.in .dropdown-menu a>li>a:focus,.navbar-inverse .nav-collapse.in .dropdown-menu a>li>a:hover,.navbar-inverse .nav-collapse.in .dropdown-submenu a:active,.navbar-inverse .nav-collapse.in .dropdown-submenu a:focus,.navbar-inverse .nav-collapse.in .dropdown-submenu a:hover,.navbar-inverse .nav-collapse.in .nav>li>a:focus,.navbar-inverse .nav-collapse.in .nav>li>a:hover{color:#fff}.dir-rtl .navbar .nav-collapse.in>.nav{margin:0}.dir-rtl .navbar .nav-collapse.in>.nav>li>a{padding-left:0;padding-right:20px}.dir-rtl .navbar .nav-collapse.in>.nav .dropdown-menu{margin:0
  3975. 15px 0 0}.dir-rtl .navbar .nav-collapse.in .dropdown-menu>li>a{padding:9px
  3976. 15px}.dir-rtl .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after,.dir-rtl .navbar .nav-collapse.in .nav .dropdown-submenu .dropdown-toggle:after{margin-left:0;margin-right:4px}}@media (max-width:767px){#filesskin .file-picker.fp-generallayout,#filesskin .yui3-panel{width:100%;left:0}.userprofile dl.list
  3977. dt{float:none;clear:none;width:auto;text-align:left}.userprofile dl.list
  3978. dd{margin-left:0}#page-mod-wiki-create .mform .fitem
  3979. div.fitemtitle{float:left}.container{width:auto}.row-fluid{width:100%}.row-fluid .span8.pull-right,.row-fluid .span9.pull-right{float:none}.row{margin-left:0}.row-fluid [class*=span],[class*=span]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.empty-region-side-post.used-region-side-pre #block-region-side-pre.span4,.empty-region-side-post.used-region-side-pre #region-main.span8,.jsenabled.docked-region-side-post.used-region-side-pre #block-region-side-pre.span4,.jsenabled.docked-region-side-post.used-region-side-pre #region-main.span8{width:100%}.row-fluid
  3980. .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*=offset]:first-child{margin-left:0}div[role=main]{margin-bottom:1em}.category-browse .coursebox .info .name a,.coursebox .info .name
  3981. a{background-position:0 13px}}@media (min-width:1200px) and (max-width:1600px){#course-category-listings.columns-3{background-color:transparent;border:0}#course-category-listings.columns-3 #category-listing,#course-category-listings.columns-3 #course-listing{width:48.71794872%;margin-left:2.56410256%}#course-category-listings.columns-3 #category-listing:first-child,#course-category-listings.columns-3 #course-listing:first-child{margin-left:0}#course-category-listings.columns-3 #course-detail{width:100%;margin:1em
  3982. 0 0}}@media (max-width:1199px){.path-question #id_answerhdr
  3983. div.fitem{padding-right:6px;padding-left:4px}#course-category-listings.columns-3{background-color:transparent;border:0}#course-category-listings.columns-3 #category-listing,#course-category-listings.columns-3 #course-detail,#course-category-listings.columns-3 #course-listing{width:100%;margin:0
  3984. 0 1em}#page-mod-forum-discuss
  3985. .discussioncontrols{text-align:right}#page-mod-forum-discuss .discussioncontrols
  3986. .discussioncontrol{float:none;width:auto;display:inline-block;margin:0
  3987. 3px .5em}#page-mod-forum-discuss .discussioncontrols .discussioncontrol input,#page-mod-forum-discuss .discussioncontrols .discussioncontrol
  3988. select{margin-bottom:0}#page-mod-forum-discuss .discussioncontrols
  3989. .discussioncontrol.movediscussion{margin-right:0;padding-right:0}#page-mod-forum-discuss.dir-rtl
  3990. .discussioncontrols{text-align:left}}@media (max-width:768px){.fp-forminset .control-group
  3991. .controls{margin-left:0}.dir-rtl .fp-forminset .control-group label.control-label,.dir-rtl .fp-formset .control-group label.control-label{text-align:right;float:none}.dir-rtl .fp-forminset .control-group
  3992. .controls{margin-right:0}}body.behat-site .navbar-fixed-top{position:absolute}.phpinfo h2,.phpinfo table,.phpinfo
  3993. th{margin:auto;text-align:left}.phpinfo
  3994. h2{width:600px}.phpinfo .e,.phpinfo .h,.phpinfo
  3995. .v{border:1px
  3996. solid #000;font-size:.8em;vertical-align:baseline;color:#000;background-color:#ccc}.phpinfo
  3997. .e{background-color:#ccf;font-weight:700}.phpinfo
  3998. .h{background-color:#99c;font-weight:700}#page-footer
  3999. .performanceinfo{margin:10px
  4000. 20%}#page-footer
  4001. .validators{margin-top:40px;padding-top:5px;border-top:1px dotted gray}#page-footer .validators
  4002. ul{margin:0;padding:0;list-style-type:none}#page-footer .validators ul
  4003. li{display:inline;margin-right:10px;margin-left:10px}#page-footer .performanceinfo
  4004. .cachesused{margin-top:1em}#page-footer .performanceinfo .cachesused .cache-stats-heading,#page-footer .performanceinfo .cachesused .cache-total-stats{font-weight:700;font-size:110%;margin-top:.3em}#page-footer .performanceinfo .cachesused .cache-definition-stats{margin:.3em;display:inline-block;vertical-align:top;background-color:#f5f5f5}#page-footer .performanceinfo .cachesused .cache-definition-stats .cache-definition-stats-heading
  4005. span{display:inline-block;cursor:default}#page-footer .performanceinfo .cachesused .cache-definition-stats .cache-store-stats{padding:0
  4006. 1.3em}#page-footer .performanceinfo .cachesused .cache-definition-stats .cache-store-stats.nohits{background-color:#f2dede}#page-footer .performanceinfo .cachesused .cache-definition-stats .cache-store-stats.lowhits{background-color:#fcf8e3}#page-footer .performanceinfo .cachesused .cache-definition-stats .cache-store-stats.hihits{background-color:#dff0d8}#page-footer,#page-footer .performanceinfo,#page-footer .purgecaches,#page-footer
  4007. .validators{text-align:center}#page-admin-course-index .editcourse tbody>tr:nth-child(odd)>td,#page-admin-course-index .editcourse tbody>tr:nth-child(odd)>th,.forumheaderlist tbody>tr:nth-child(odd)>td,.forumheaderlist tbody>tr:nth-child(odd)>th,.generaltable tbody>tr:nth-child(odd)>td,.generaltable tbody>tr:nth-child(odd)>th,form#movecourses table tbody>tr:nth-child(odd)>td,form#movecourses table tbody>tr:nth-child(odd)>th,table#defineroletable tbody>tr:nth-child(odd)>td,table#defineroletable tbody>tr:nth-child(odd)>th,table#explaincaps tbody>tr:nth-child(odd)>td,table#explaincaps tbody>tr:nth-child(odd)>th,table#form tbody>tr:nth-child(odd)>td,table#form tbody>tr:nth-child(odd)>th,table#listdirectories tbody>tr:nth-child(odd)>td,table#listdirectories tbody>tr:nth-child(odd)>th,table.flexible tbody>tr:nth-child(odd)>td,table.flexible tbody>tr:nth-child(odd)>th,table.grading-report tbody>tr:nth-child(odd)>td,table.grading-report tbody>tr:nth-child(odd)>th,table.rolecaps tbody>tr:nth-child(odd)>td,table.rolecaps tbody>tr:nth-child(odd)>th,table.userenrolment tbody>tr:nth-child(odd)>td,table.userenrolment tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}table
  4008. caption{font-size:24px;font-weight:700;line-height:42px;text-align:left}#page-admin-course-index.dir-rtl .editcourse td,#page-admin-course-index.dir-rtl .editcourse th,.dir-rtl .forumheaderlist td,.dir-rtl .forumheaderlist th,.dir-rtl .generaltable td,.dir-rtl .generaltable th,.dir-rtl .generaltable thead:first-child tr:first-child td,.dir-rtl .generaltable thead:first-child tr:first-child th,.dir-rtl form#movecourses table td,.dir-rtl form#movecourses table th,.dir-rtl table caption,.dir-rtl table#defineroletable td,.dir-rtl table#defineroletable th,.dir-rtl table#explaincaps td,.dir-rtl table#explaincaps th,.dir-rtl table#form td,.dir-rtl table#form th,.dir-rtl table#listdirectories td,.dir-rtl table#listdirectories th,.dir-rtl table.flexible td,.dir-rtl table.flexible th,.dir-rtl table.grading-report td,.dir-rtl table.grading-report th,.dir-rtl table.rolecaps td,.dir-rtl table.rolecaps th,.dir-rtl table.userenrolment td,.dir-rtl table.userenrolment
  4009. th{text-align:right}#page-admin-report-log-index .generaltable td,#page-admin-report-log-index .generaltable th,#page-admin-user table td,#page-admin-user table th,#page-report-log-user .generaltable td,#page-report-log-user .generaltable th,#page-report-loglive-index .generaltable td,#page-report-loglive-index .generaltable th,.category_subcategories td,.category_subcategories th,.environmenttable td,.environmenttable th,.rcs-results td,.rcs-results th,table#listdirectories td,table#listdirectories
  4010. th{padding:4px
  4011. 5px}.category_subcategories tbody tr:hover>td,.category_subcategories tbody tr:hover>th,.forumheaderlist tbody tr:hover>td,.forumheaderlist tbody tr:hover>th,.generaltable tbody tr:hover>td,.generaltable tbody tr:hover>th,.user-enroller-panel .uep-search-results .cohorts tbody tr:hover>td,.user-enroller-panel .uep-search-results .cohorts tbody tr:hover>th,.user-enroller-panel .uep-search-results .users tbody tr:hover>td,.user-enroller-panel .uep-search-results .users tbody tr:hover>th,table#modules tbody tr:hover>td,table#modules tbody tr:hover>th,table#permissions tbody tr:hover>td,table#permissions tbody tr:hover>th,table.flexible tbody tr:hover>td,table.flexible tbody tr:hover>th,table.grading-report tbody tr:hover>td,table.grading-report tbody tr:hover>th{background-color:#f5f5f5}div[id^=bar_pbar_]{overflow:hidden!important;height:20px!important;margin-bottom:20px!important;background-color:#f7f7f7!important;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9)!important;background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9))!important;background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9)!important;background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9)!important;background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9)!important;background-repeat:repeat-x!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0)!important;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1)!important;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1)!important;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)!important;-webkit-border-radius:4px!important;-moz-border-radius:4px!important;border-radius:4px!important;border:none!important}div[id^=progress_pbar_]{height:100%!important;color:#fff!important;float:left!important;font-size:12px!important;text-align:center!important;text-shadow:0 -1px 0 rgba(0,0,0,.25)!important;background-color:#0e90d2!important;background-image:-moz-linear-gradient(top,#149bdf,#0480be)!important;background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be))!important;background-image:-webkit-linear-gradient(top,#149bdf,#0480be)!important;background-image:-o-linear-gradient(top,#149bdf,#0480be)!important;background-image:linear-gradient(to bottom,#149bdf,#0480be)!important;background-repeat:repeat-x!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0)!important;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15)!important;-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15)!important;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15)!important;-webkit-box-sizing:border-box!important;-moz-box-sizing:border-box!important;box-sizing:border-box!important;-webkit-transition:width .6s ease!important;-moz-transition:width .6s ease!important;-o-transition:width .6s ease!important;transition:width .6s ease!important;padding-top:0!important;border:none!important}.path-admin .buttons input[type=submit],input#id_submitbutton,input#id_submitbutton2,input.form-submit,td.submit
  4012. input{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002b80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.path-admin .buttons input[type=submit].active,.path-admin .buttons input[type=submit].disabled,.path-admin .buttons input[type=submit]:active,.path-admin .buttons input[type=submit]:focus,.path-admin .buttons input[type=submit]:hover,.path-admin .buttons input[type=submit][disabled],input#id_submitbutton.active,input#id_submitbutton.disabled,input#id_submitbutton2.active,input#id_submitbutton2.disabled,input#id_submitbutton2:active,input#id_submitbutton2:focus,input#id_submitbutton2:hover,input#id_submitbutton2[disabled],input#id_submitbutton:active,input#id_submitbutton:focus,input#id_submitbutton:hover,input#id_submitbutton[disabled],input.form-submit.active,input.form-submit.disabled,input.form-submit:active,input.form-submit:focus,input.form-submit:hover,input.form-submit[disabled],td.submit input.active,td.submit input.disabled,td.submit input:active,td.submit input:focus,td.submit input:hover,td.submit input[disabled]{color:#fff;background-color:#04c}.path-admin .buttons input[type=submit] .caret,input#id_submitbutton .caret,input#id_submitbutton2 .caret,input.form-submit .caret,td.submit input
  4013. .caret{border-top-color:#fff;border-bottom-color:#fff}#notice .singlebutton+.singlebutton input,.submit.buttons input[name=cancel]{display:inline-block;padding:4px
  4014. 12px;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px
  4015. solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}#notice .singlebutton+.singlebutton input.active,#notice .singlebutton+.singlebutton input.disabled,#notice .singlebutton+.singlebutton input:active,#notice .singlebutton+.singlebutton input:focus,#notice .singlebutton+.singlebutton input:hover,#notice .singlebutton+.singlebutton input[disabled],.submit.buttons input[name=cancel].active,.submit.buttons input[name=cancel].disabled,.submit.buttons input[name=cancel]:active,.submit.buttons input[name=cancel]:focus,.submit.buttons input[name=cancel]:hover,.submit.buttons input[name=cancel][disabled]{color:#333;background-color:#e6e6e6}#notice .singlebutton+.singlebutton input:focus,#notice .singlebutton+.singlebutton input:hover,.submit.buttons input[name=cancel]:focus,.submit.buttons input[name=cancel]:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}#notice .singlebutton+.singlebutton input:focus,.submit.buttons input[name=cancel]:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#notice .singlebutton+.singlebutton input.active,#notice .singlebutton+.singlebutton input:active,.submit.buttons input[name=cancel].active,.submit.buttons input[name=cancel]:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}#notice .singlebutton+.singlebutton input.disabled,#notice .singlebutton+.singlebutton input[disabled],.submit.buttons input[name=cancel].disabled,.submit.buttons input[name=cancel][disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#notice .singlebutton+.singlebutton input .badge,#notice .singlebutton+.singlebutton input .label,.submit.buttons input[name=cancel] .badge,.submit.buttons input[name=cancel] .label{position:relative;top:-1px}#notice .singlebutton+.singlebutton input,.submit.buttons input[name=cancel]{margin:0
  4016. 0 10px 5px}input[id$="_clearbutton"],input[type=reset]{text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff!important}input[id$="_clearbutton"].active,input[id$="_clearbutton"].disabled,input[id$="_clearbutton"]:active,input[id$="_clearbutton"]:focus,input[id$="_clearbutton"]:hover,input[id$="_clearbutton"][disabled],input[type=reset].active,input[type=reset].disabled,input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover,input[type=reset][disabled]{color:#fff;background-color:#f89406}input[id$="_clearbutton"] .caret,input[type=reset] .caret{border-top-color:#fff;border-bottom-color:#fff}.muted,a.muted:focus,a.muted:hover{color:inherit;font-style:italic}.block_navigation .block_tree .fa[aria-hidden=true],.block_settings .block_tree .fa[aria-hidden=true]{display:inline-block}.block_navigation .block_tree p.hasicon,.block_settings .block_tree
  4017. p.hasicon{text-indent:0}.dir-rtl .block_navigation .block_tree
  4018. ul{margin-left:0;margin-right:18px}.dir-rtl .block_navigation .block_tree .depth_1>ul{margin:0}.dir-ltr .block_navigation .block_tree p.hasicon,.dir-ltr .block_settings .block_tree
  4019. p.hasicon{padding-left:0}.dir-ltr .block_navigation .block_tree .depth_2>p.hasicon,.dir-ltr .block_settings .block_tree .depth_2>p.hasicon{padding-left:21px}.dir-rtl .block_navigation .block_tree p.hasicon,.dir-rtl .block_settings .block_tree
  4020. p.hasicon{padding-right:0}.dir-rtl .block_navigation .block_tree .depth_2>p.hasicon,.dir-rtl .block_settings .block_tree .depth_2>p.hasicon{padding-right:21px}.dir-rtl
  4021. .tree_item.branch{unicode-bidi:bidi-override}.dir-rtl .tree_item a,.dir-rtl .tree_item
  4022. span{unicode-bidi:embed}#dockeditempanel .dockeditempanel_hd
  4023. h2{float:none}button,input,select,textarea{font-family:inherit}.message .message-contacts li div.contact,.message .message-contacts li
  4024. div.pix{display:inline-block}.dir-ltr .message .message-contacts li>div.contact,.dir-ltr .message .message-contacts li>div.contact.nolinks{margin-left:12px}.dir-rtl .message .message-contacts li>div.contact,.dir-rtl .message .message-contacts li>div.contact.nolinks{margin-right:12px}.dir-ltr .message .message-contacts li>div.pix,.dir-rtl .message .message-contacts li>div.pix{float:none}.path-mod-assign div.gradingnavigation
  4025. div{float:left;margin-left:2em}.path-mod-assign div.feedback,.path-mod-assign div.gradingsummary,.path-mod-assign div.submissionfull,.path-mod-assign div.submissionlinks,.path-mod-assign div.submissionstatustable,.path-mod-assign
  4026. div.usersummary{margin-bottom:5em}.path-mod-assign div.attempthistory table,.path-mod-assign div.feedback .generaltable,.path-mod-assign div.gradingsummary .generaltable,.path-mod-assign div.submissionlinks .generaltable,.path-mod-assign div.submissionstatus .generaltable,.path-mod-assign div.submissionsummarytable
  4027. .generaltable{width:100%}.path-mod-assign table.generaltable table
  4028. td{border:0}.path-mod-assign .feedbacktable,.path-mod-assign .gradingsummarytable,.path-mod-assign .lockedsubmission,.path-mod-assign
  4029. .submissionsummarytable{margin-top:1em}.path-mod-assign div.submissionsummarytable table tbody tr
  4030. td.c0{width:30%}.path-mod-assign
  4031. .submittedlate{color:red;font-weight:900}.path-mod-assign.jsenabled .gradingoptionsform .fsubmit,.path-mod-assign.jsenabled .gradingtable .c1
  4032. select{display:none}.path-mod-assign .gradingbatchoperationsform .mform fieldset,.path-mod-assign .quickgradingform .mform
  4033. fieldset{margin:0;padding:0}.path-mod-assign a:link.submissionstatus,.path-mod-assign div.submissionstatus,.path-mod-assign
  4034. td.submissionstatus{color:#000;background-color:#efefef}.path-mod-assign a:link.submissionstatusdraft,.path-mod-assign div.submissionstatusdraft,.path-mod-assign
  4035. td.submissionstatusdraft{color:#000;background-color:#efefcf}.path-mod-assign a:link.submissionstatussubmitted,.path-mod-assign div.submissionstatussubmitted,.path-mod-assign
  4036. td.submissionstatussubmitted{color:#000;background-color:#cfefcf}.path-mod-assign div.submissionlocked,.path-mod-assign
  4037. td.submissionlocked{color:#000;background-color:#efefcf}.path-mod-assign div.submissionreopened,.path-mod-assign
  4038. td.submissionreopened{color:#000;background-color:#efefef}.path-mod-assign div.submissiongraded,.path-mod-assign
  4039. td.submissiongraded{color:#000;background-color:#cfefcf}.path-mod-assign div.submissionnotgraded,.path-mod-assign
  4040. td.submissionnotgraded{color:#000;background-color:#efefef}.path-mod-assign a:link.latesubmission,.path-mod-assign div.latesubmission,.path-mod-assign
  4041. td.latesubmission{color:#000;background-color:#efcfcf}.path-mod-assign div.earlysubmission,.path-mod-assign
  4042. td.earlysubmission{color:#000;background-color:#cfefcf}.path-mod-assign .gradingtable
  4043. .c0{display:none}.path-mod-assign.jsenabled .gradingtable
  4044. .c0{display:table-cell}.path-mod-assign
  4045. .gradingbatchoperationsform{display:none}.path-mod-assign.jsenabled
  4046. .gradingbatchoperationsform{display:block}.path-mod-assign .gradingtable .c0
  4047. div.selectall{margin-left:7px}.path-mod-assign .gradingtable .yui3-menu
  4048. ul{margin:0}.path-mod-assign .gradingtable .yui3-menu-label{padding-left:0;line-height:12px}.path-mod-assign .gradingtable .yui3-menu-label
  4049. img{padding:0
  4050. 3px}.path-mod-assign .gradingtable .yui3-menu
  4051. li{list-style-type:none}.path-mod-assign.jsenabled .gradingtable .yui3-loading{display:none}.path-mod-assign .gradingtable .yui3-menu .yui3-menu-content{border:0;padding-top:0}.path-mod-assign div.gradingtable tr
  4052. .quickgrademodified{background-color:#FC9}.path-mod-assign
  4053. td.submissioneditable{color:red}.path-mod-assign
  4054. .expandsummaryicon{cursor:pointer;display:none}.path-mod-assign.jsenabled
  4055. .expandsummaryicon{display:inline}.path-mod-assign .hidefull,.path-mod-assign .quickgradingform form .commentscontainer input,.path-mod-assign .quickgradingform form .commentscontainer
  4056. textarea{display:none}.path-mod-assign.jsenabled .quickgradingform form .commentscontainer input,.path-mod-assign.jsenabled .quickgradingform form .commentscontainer
  4057. textarea{display:inline}.path-mod-assign
  4058. .previousfeedbackwarning{font-size:140%;font-weight:700;text-align:center;color:#500}.path-mod-assign
  4059. .submissionhistory{background-color:#b0b0b0}.path-mod-assign .submissionhistory
  4060. .cell.historytitle{background-color:gray}.path-mod-assign .submissionhistory
  4061. .cell{background-color:#d0d0d0}.path-mod-assign.jsenabled .mod-assign-history-link{display:block;cursor:pointer;margin-bottom:7px}.path-mod-assign.jsenabled .mod-assign-history-link
  4062. h4{display:inline}.path-mod-assign.jsenabled .attempthistory
  4063. h4{margin-bottom:7px;text-align:left}.path-mod-assign.dir-rtl.jsenabled .mod-assign-history-link h4,.path-mod-assign.jsenabled.dir_rtl .attempthistory
  4064. h4{text-align:right}.path-mod-assign.jsenabled .mod-assign-history-link-open{padding:0
  4065. 5px 0 20px;background:url(/theme/image.php/essential/core/1489002274/t/expanded) 2px center no-repeat}.path-mod-assign.jsenabled .mod-assign-history-link-closed{padding:0
  4066. 5px 0 20px;background:url(/theme/image.php/essential/core/1489002274/t/collapsed) 2px center no-repeat}.path-mod-assign.dir-rtl.jsenabled .mod-assign-history-link-closed{padding:0
  4067. 20px 0 5px;background:url(/theme/image.php/essential/core/1489002274/t/collapsed_rtl) 2px center no-repeat}.path-mod-assign
  4068. .submithelp{padding:1em}.path-mod-assign
  4069. .feedbacktitle{font-weight:700}.path-mod-assign .submissionaction,.path-mod-assign .submissionlinks,.path-mod-assign
  4070. .submitconfirm{text-align:center}.path-mod-assign .mod-assign-history-panel .c0,.path-mod-assign .submissionsummarytable
  4071. .c0{width:150px}.path-mod-assign .gradingtable .moodle-actionmenu{white-space:nowrap}.path-mod-assign .gradingtable .moodle-actionmenu[data-enhanced].show .menu
  4072. a{padding-left:12px;padding-right:12px}.path-mod-assign .gradingtable .menu-action
  4073. img{display:none}.path-mod-assign .editsubmissionform input[name=submissionstatement]{vertical-align:top}.path-mod-assign .editsubmissionform label[for=id_submissionstatement]{display:inline-block}.path-mod-assign.layout-option-nonavbar{padding-top:0}.path-mod-assign [data-region=user-selector] select{margin-bottom:0}.path-mod-assign [data-region=user-selector] .alignment{float:right;width:320px;text-align:center;margin-top:7px}.path-mod-assign [data-region=user-selector] [data-action=next-user],.path-mod-assign [data-region=user-selector] [data-action=previous-user]{font-size:26px}.path-mod-assign [data-region=user-selector] [data-action=next-user]{margin-left:-10px}.dir-rtl.path-mod-assign [data-region=user-selector] [data-action=next-user]{margin-right:-10px}.dir-rtl.path-mod-assign [data-region=user-selector] .alignment{float:left}.path-mod-assign [data-region=user-selector] .alignment
  4074. input{margin-bottom:5px}.path-mod-assign [data-region=user-selector] .alignment .form-autocomplete-downarrow{top:0}.path-mod-assign [data-region=user-selector] .form-autocomplete-selection{display:none}.path-mod-assign [data-region=user-selector] .form-autocomplete-suggestions{text-align:left;margin-left:48px}.dir-rtl.path-mod-assign [data-region=user-selector] .form-autocomplete-suggestions{margin-right:64px}.path-mod-assign [data-region=user-filters]{font-size:small}.path-mod-assign [data-region=configure-filters]{display:none;text-align:left;width:auto;background-color:#fff;background-clip:padding-box;box-shadow:0 5px 10px rgba(0,0,0,.2);border-radius:6px;position:absolute;margin-top:28px;margin-left:-140px;padding:10px
  4075. 0;z-index:1}.path-mod-assign [data-region=configure-filters]::after,.path-mod-assign [data-region=configure-filters]::before{position:absolute;left:auto;display:inline-block;content:'';border-style:solid;border-color:transparent;border-top:none}.path-mod-assign [data-region=configure-filters]::before{top:-7px;right:12px;border-width:7px;border-bottom-color:rgba(0,0,0,.2)}.path-mod-assign [data-region=configure-filters]::after{top:-6px;right:13px;border-width:6px;border-bottom-color:#fff}.path-mod-assign.dir-rtl [data-region=configure-filters]{text-align:right;margin-left:0;margin-right:-140px}.path-mod-assign [data-region=configure-filters] label{padding:3px
  4076. 20px}.path-mod-assign .alignment [data-region=configure-filters] input{margin-bottom:0}.path-mod-assign [data-region=grading-navigation-panel]{top:0;left:0;width:100%;margin:0;border-bottom:1px solid #ddd}.path-mod-assign [data-region=assignment-info]{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis}.path-mod-assign [data-region=assignment-info] small[data-region=assignment-tooltip]{margin-left:.5em}.path-mod-assign [data-region=user-info]{height:60px}.path-mod-assign [data-region=user-info] a{text-decoration:none}.path-mod-assign [data-region=user-info] .img-rounded{display:block;float:left;margin-top:-3px;margin-right:10px}.dir-rtl.path-mod-assign [data-region=user-info] .img-rounded{float:right;margin-left:10px}.path-mod-assign [data-region=user-info] em{display:block;font-style:normal}.path-mod-assign [data-region=grading-actions-form] label{display:inline-block}.path-mod-assign.pagelayout-embedded{overflow:hidden}.path-mod-assign [data-region=review-panel]{position:absolute;bottom:60px;left:0;right:30%;width:auto;box-sizing:border-box;-webkit-transition:right .5s,left .5s;-moz-transition:right .5s,left .5s;transition:right .5s,left .5s}.path-mod-assign [data-region=review-panel].grade-panel-collapsed{right:30px}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle]{display:none;height:30px;width:30px;position:absolute;top:0;right:0;left:auto;box-sizing:border-box;border-radius:0 0 0 4px;border:1px
  4077. solid #ccc;border-top:none;background-color:#fff;z-index:99999}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon,.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon{width:100%;height:100%;text-align:center;line-height:30px}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon .toggle-text,.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon .toggle-text{visibility:hidden;opacity:0;height:0;overflow:hidden}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] img{height:100%;float:right}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon{display:none}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon{display:block}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon.full-width{display:none}.path-mod-assign [data-region=review-panel] .pageheader{border-right:1px solid #ddd}.path-mod-assign [data-region=review-panel]+[data-region=grade-panel] [data-region=grade]{margin-left:auto;margin-right:auto;max-width:100%;-webkit-transition:max-width .5s;-moz-transition:max-width .5s;transition:max-width .5s}.path-mod-assign [data-region=review-panel] .drawingregion{left:0;right:0;border-color:#ddd}.path-mod-assign [data-region=review-panel].collapsed{left:calc(30px - 70%);right:calc(100% - 30px);-webkit-transition:right .5s,left .5s;-moz-transition:right .5s,left .5s;transition:right .5s,left .5s}.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-content]{visibility:hidden;-webkit-transition:visibility 0s .5s;-moz-transition:visibility 0s .5s;transition:visibility 0s .5s}.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle] .expand-icon{display:block}.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle] .collapse-icon{display:none}.path-mod-assign [data-region=review-panel].collapsed+[data-region=grade-panel]{position:absolute;left:30px;right:0;width:calc(100% - 30px);overflow:auto;-webkit-transition:width .5s,right .5s,left .5s;-moz-transition:width .5s,right .5s,left .5s;transition:width .5s,right .5s,left .5s}.path-mod-assign [data-region=grade-panel].fullwidth [data-region=grade],.path-mod-assign [data-region=review-panel].collapsed+[data-region=grade-panel] [data-region=grade]{max-width:800px;margin-left:auto;margin-right:auto}.path-mod-assign [data-region=grade-panel]{position:absolute;bottom:60px;right:0;left:70%;width:30%;overflow:auto;box-sizing:border-box;background-color:#f5f5f5;padding:0
  4078. 15px 15px;-webkit-transition:width .5s,right .5s,left .5s;-moz-transition:width .5s,right .5s,left .5s;transition:width .5s,right .5s,left .5s}.path-mod-assign [data-region=grade-panel].collapsed{left:calc(100% - 30px);right:calc(30px - 100%);visibility:hidden;-webkit-transition:right .5s,left .5s,visibility 0s .5s;-moz-transition:right .5s,left .5s,visibility 0s .5s;transition:right .5s,left .5s,visibility 0s .5s}.path-mod-assign [data-region=grade-panel].fullwidth{left:0;width:100%;overflow:auto}.path-mod-assign [data-region=grade-panel] h3{font-size:18px;font-weight:500}.path-mod-assign [data-region=grade-panel] div.submissionstatustable{margin-bottom:2em}.path-mod-assign [data-region=grade-panel] .submissionsummarytable{margin-left:5px;margin-right:5px}.path-mod-assign [data-region=grade-panel] .submissionsummarytable table.generaltable
  4079. td{padding:8px
  4080. 0;background-color:transparent}.path-mod-assign [data-region=grade-panel] .submissionsummarytable .generaltable tbody tr:hover>td,.path-mod-assign [data-region=grade-panel] .submissionsummarytable .generaltable tbody>tr:nth-child(2n+1)>td{background-color:transparent}.path-mod-assign [data-region=grade-panel] div.submissionsummarytable table tbody tr
  4081. td.c0{width:auto}.path-mod-assign [data-region=grade-panel] div.submissionsummarytable table tbody tr.lastrow td.c0,.path-mod-assign [data-region=grade-panel] div.submissionsummarytable table tbody tr.lastrow
  4082. td.c1{border-bottom:1px solid #ddd}.path-mod-assign [data-region=grade-panel] div.submissionnotgraded,.path-mod-assign [data-region=grade-panel] td.submissionnotgraded{color:red;background-color:transparent}.path-mod-assign [data-region=grade-panel] #id_gradeheader{display:table-cell;min-width:0}.path-mod-assign [data-region=grade-panel] #id_gradeheader>legend{visibility:hidden;height:0;margin-bottom:0}.path-mod-assign [data-region=grade-panel] .comment-area textarea[cols]{width:100%;box-sizing:border-box}.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_f,.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_feditor,.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_ffilemanager,.path-mod-assign [data-region=grade-panel] .mform
  4083. .fitem.fitem_ftext{background-color:#fff;border:1px
  4084. solid #ddd;margin-bottom:20px}.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_f .fitemtitle,.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_feditor .fitemtitle,.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_ffilemanager .fitemtitle,.path-mod-assign [data-region=grade-panel] .mform .fitem.fitem_ftext
  4085. .fitemtitle{padding-left:5px;padding-right:5px}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.fitem_f .felement,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.fitem_feditor .felement,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.fitem_ffilemanager .felement,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.fitem_ftext
  4086. .felement{padding:6px
  4087. 10px 10px;box-sizing:border-box}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fitem.fitem_f .fitemtitle,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fitem.fitem_feditor .fitemtitle,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fitem.fitem_ffilemanager .fitemtitle,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fitem.fitem_ftext
  4088. .fitemtitle{border-bottom:1px solid #ddd;box-shadow:0 1px 1px rgba(0,0,0,.05);padding:6px
  4089. 10px 3px;box-sizing:border-box}.path-mod-assign #page-content [data-region=grade-panel] [data-region=popout-button] img{margin-left:2px;margin-right:2px;margin-top:-2px}.path-mod-assign #page-content [data-region=grade-panel] .popout [data-region=popout-button] img{margin-left:-6px;margin-right:-6px;margin-top:4px}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fitem .fitemtitle label,.path-mod-assign [data-region=grade-panel] .fitem
  4090. .fstaticlabel{font-weight:500}.path-mod-assign [data-region=grade-panel] .mform
  4091. #fitem_id_grade.fitem{padding-top:5px}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) #fitem_id_grade.fitem
  4092. .fitemtitle{display:inline-block;width:auto;border-bottom:none;box-shadow:none}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) #fitem_id_grade.fitem
  4093. .felement{width:auto;float:right}.path-mod-assign #page-content .mform:not(.unresponsive) #fitem_id_grade.fitem .felement
  4094. input{width:80px;margin-bottom:0}.path-mod-assign [data-region=grade-panel] .gradingform_rubric{padding-bottom:0;max-width:none}.path-mod-assign [data-region=grade-panel] .gradingform_rubric .criterion
  4095. .description{font-weight:500;min-width:150px}.path-mod-assign [data-region=grade-panel] .gradingform_rubric .criterion
  4096. .levels{background-color:#fff}.path-mod-assign [data-region=grade-panel] .gradingform_rubric .criterion,.path-mod-assign [data-region=grade-panel] .gradingform_rubric
  4097. .criterion.even{background-color:transparent}.path-mod-assign [data-region=grade-panel] .gradingform_rubric.evaluate .criterion .levels .level:hover{background-color:#dff0d8}.path-mod-assign [data-region=grade-panel] .gradingform_rubric .criterion .levels
  4098. .level.checked{background-color:#dff0d8;border:none;border-left:1px solid #ddd}.path-mod-assign [data-region=grade-panel] .gradingform_rubric .criterion .levels .level
  4099. .score{color:#468847;font-weight:500;font-style:normal;margin-top:20px}.path-mod-assign [data-region=grade-panel] .gradingform_rubric .criterion .remark
  4100. textarea{margin-bottom:0}.path-mod-assign [data-region=grade-panel] .gradingform_guide{margin-bottom:10px}.path-mod-assign [data-region=grade-panel] .gradingform_guide .descriptionreadonly,.path-mod-assign [data-region=grade-panel] .gradingform_guide .remark,.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4101. .score{display:block}.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4102. .descriptionreadonly{padding-top:10px}.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4103. .criteriondescription{margin-top:5px}.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4104. .criteriondescriptionmarkers{width:auto;margin-top:5px}.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4105. .markingguideremark{margin-bottom:10px}.path-mod-assign [data-region=grade-panel] .gradingform_guide .remark
  4106. .commentchooser{float:right;margin-top:2px;margin-left:0}.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4107. .score{float:left;padding-bottom:8px}.path-mod-assign [data-region=grade-panel] .gradingform_guide .score div,.path-mod-assign [data-region=grade-panel] .gradingform_guide .score
  4108. input{display:inline-block}.path-mod-assign [data-region=grade-panel] .gradingform_guide .criterion,.path-mod-assign [data-region=grade-panel] .gradingform_guide
  4109. .criterion.even{background-color:transparent;border-width:0 0 1px;padding:8px
  4110. 0}.path-mod-assign [data-region=grade-panel] .showmarkerdesc,.path-mod-assign [data-region=grade-panel] .showstudentdesc{background-color:#f5f5f5;padding:10px}.path-mod-assign [data-region=grade-panel] .fitem.fitem_ffilemanager{margin-bottom:0}.path-mod-assign [data-region=grade-panel] .fitem.popout{position:fixed;left:20%;right:20%;top:20%;bottom:20%;z-index:1000;border:1px
  4111. solid rgba(0,0,0,.3);border-radius:6px;box-shadow:0 3px 7px rgba(0,0,0,.3)}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.popout
  4112. .fitemtitle{text-align:center;padding-left:15px;padding-right:15px;height:45px}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.popout .fitemtitle
  4113. label{font-size:16px;line-height:30px}.path-mod-assign #page-content [data-region=grade-panel] [data-region=popout-button]{float:right}.dir-rtl.path-mod-assign #page-content [data-region=grade-panel] [data-region=popout-button]{float:left}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fitem.popout .fitemtitle [data-region=popout-button] img{margin-top:-10px;margin-right:-7px}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.popout
  4114. .felement{padding:10px
  4115. 15px 15px;height:calc(100% - 54px);overflow:auto}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) .fcontainer .fitem.popout .felement
  4116. .gradingform_rubric{overflow:visible}.path-mod-assign [data-region=grade-panel] #id_attemptsettings>legend{font-size:18px;font-weight:500;line-height:40px;border-bottom:0;margin-bottom:10px}.path-mod-assign [data-region=grade-panel] #id_attemptsettings
  4117. .fcontainer{display:table;width:100%;padding-left:5px;padding-right:5px;margin-bottom:10px;box-sizing:border-box}.path-mod-assign [data-region=grade-panel] .mform #id_attemptsettings
  4118. .fitem{display:table-row}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) #id_attemptsettings .fitem .felement,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) #id_attemptsettings .fitem
  4119. .fitemtitle{display:table-cell;float:none;border-top:1px solid #ddd;padding:8px
  4120. 0}.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) #id_attemptsettings .fitem:last-of-type .felement,.path-mod-assign #page-content [data-region=grade-panel] .mform:not(.unresponsive) #id_attemptsettings .fitem:last-of-type
  4121. .fitemtitle{border-bottom:1px solid #ddd}.path-mod-assign [data-region=grade-panel] #id_attemptsettings .fitem .fstaticlabel,.path-mod-assign [data-region=grade-panel] .mform:not(.unresponsive) #id_attemptsettings .fitem .fitemtitle
  4122. label{font-weight:400}.path-mod-assign [data-region=grade-panel] .mform:not(.unresponsive) #id_attemptsettings .fitem .felement
  4123. select{margin-bottom:0}.path-mod-assign [data-region=grade-panel] [data-region=attempt-chooser]{margin-bottom:10px;vertical-align:text-bottom}.path-mod-assign [data-region=grade-actions-panel]{border-top:1px solid #ddd;position:absolute;bottom:0;left:0;width:100%;height:60px}.path-mod-assign [data-region=grade-actions-panel] [data-region=grade-actions] .collapse-buttons{position:absolute;top:0;left:auto;right:15px;margin:0;height:100%;line-height:60px;direction:ltr}.path-mod-assign [data-region=grade-actions]{padding:1em;text-align:center}.path-mod-assign [data-region=submissions-list]{text-align:inherit}.path-mod-assign [data-region=submissions-list] label.radio
  4124. input{margin-top:4px;min-width:inherit}.path-mod-assign [data-region=overlay]{display:none;z-index:100;position:absolute;top:0;left:0;width:100%;overflow:auto;bottom:0;background-color:#ddd;opacity:.4;padding-top:4em;text-align:center}@media (max-width:767px){.path-mod-assign.pagelayout-embedded{overflow:auto}.path-mod-assign [data-region=assignment-info]{border-bottom:1px solid #ddd;padding-bottom:5px}.path-mod-assign .page-context-header .page-header-headings{margin-top:13px}.path-mod-assign [data-region=grade-actions-panel] [data-region=grade-actions] .collapse-buttons{display:none}.path-mod-assign [data-region=grade-actions-panel],.path-mod-assign [data-region=grade-panel],.path-mod-assign [data-region=grading-navigation-panel],.path-mod-assign [data-region=review-panel],.path-mod-assign [data-region=review-panel].collapsed+[data-region=grade-panel]{position:inherit;width:100%;top:0;left:0;right:auto;overflow:auto;height:auto;margin-bottom:1em}.path-mod-assign [data-region=grade-panel].collapsed{visibility:visible}.path-mod-assign [data-region=grading-navigation]{padding:0;text-align:center}.path-mod-assign [data-region=grade-panel]{margin-bottom:2em}.path-mod-assign [data-region=grade-panel] [data-region=popout-button]{display:none}.path-mod-assign [data-region=review-panel]{position:relative;max-height:2000px;-webkit-transition:max-height .25s linear;-moz-transition:max-height .25s linear;transition:max-height .25s linear}.path-mod-assign [data-region=review-panel] .pageheader{border-right:none;padding-right:20px;padding-left:40px}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle]{display:block;height:20px;width:20px;position:absolute;top:0;left:0;right:auto;box-sizing:border-box;border:1px
  4125. solid #ccc;border-radius:0 0 4px;background-color:#fff;z-index:99999}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon,.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon{width:100%;height:100%;text-align:center;line-height:30px}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .ltr-icon,.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .rtl-icon{height:100%}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .ltr-icon{float:left}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .rtl-icon{float:right}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon .toggle-text,.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon .toggle-text{line-height:20px;visibility:visible;opacity:1;height:auto;-webkit-transition:visibility 0s .25s,opacity 0s .25s;-moz-transition:visibility 0s .25s,opacity 0s .25s;transition:visibility 0s .25s,opacity 0s .25s}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon .rtl-icon{display:none}.path-mod-assign [data-region=review-panel].collapsed{max-height:20px;top:0;left:0;overflow:hidden;-webkit-transition:max-height .25s linear;-moz-transition:max-height .25s linear;transition:max-height .25s linear}.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle]{width:100%;border-radius:0;-webkit-transition:all 0s .25s;-moz-transition:all 0s .25s;transition:all 0s .25s}.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle] img{height:100%}.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .collapse-icon{display:block}.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle] .collapse-icon{display:none}.path-mod-assign.pagelayout-popup{overflow:inherit}.path-mod-assign [data-region=grading-navigation] [data-region=user-info]{text-align:left;width:auto;display:inline-block;margin:0
  4126. auto}.path-mod-assign [data-region=user-selector] .alignment{float:none;margin:0
  4127. auto 10px}.dir-rtl.path-mod-assign [data-region=review-panel] .pageheader{padding-right:40px;padding-left:20px}.dir-rtl.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle]{left:auto;right:0;border-radius:0 0 0 4px}.dir-rtl.path-mod-assign [data-region=review-panel].collapsed{right:0;left:auto}.dir-rtl.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon .ltr-icon{display:none}.dir-rtl.path-mod-assign [data-region=review-panel] [data-region=review-panel-toggle] .expand-icon .rtl-icon{display:block}.dir-rtl.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle] .collapse-icon{display:none}.dir-rtl.path-mod-assign [data-region=review-panel].collapsed [data-region=review-panel-toggle] .expand-icon{display:block}}.path-mod-assign [data-region=grade-panel] .mform .fitem
  4128. .fitemtitle{display:block;margin-top:4px;margin-bottom:4px;text-align:left;width:100%}.path-mod-assign [data-region=grade-panel] .mform .fitem
  4129. .felement{margin-left:0;width:100%;float:left;padding-left:0;padding-right:0}.path-mod-assign [data-region=grade-panel] .mform .fitem .fstatic:empty{display:none}.path-mod-assign [data-region=grade-panel] .mform .fitem .fcheckbox>span,.path-mod-assign [data-region=grade-panel] .mform .fitem .fgroup>span,.path-mod-assign [data-region=grade-panel] .mform .fitem .fradio>span{margin-top:4px}.path-mod-assign [data-region=grade-panel] .mform .femptylabel
  4130. .fitemtitle{display:inline-block;width:auto;margin-right:8px}.path-mod-assign [data-region=grade-panel] .mform .femptylabel
  4131. .felement{display:inline-block;margin-top:4px;padding-top:5px;width:auto}.path-mod-assign [data-region=grade-panel] .mform .fitem_fcheckbox .felement,.path-mod-assign [data-region=grade-panel] .mform .fitem_fcheckbox
  4132. .fitemtitle{display:inline-block;width:auto}.path-mod-assign [data-region=grade-panel] .mform .fitem_fcheckbox
  4133. .felement{padding:6px}.dir-rtl.path-mod-assign [data-region=grade-panel] .mform .femptylabel
  4134. .fitemtitle{margin-right:0;margin-left:8px}.dir-rtl.path-mod-assign [data-region=grade-panel] .mform .fitem
  4135. .fitemtitle{text-align:right}.dir-rtl.path-mod-assign [data-region=grade-panel] .mform .fitem
  4136. .felement{margin-right:0;float:right;padding-right:0;padding-left:0}.dir-rtl.path-mod-assign [data-region=grade-panel] .mform .fitem_checkbox
  4137. .felement{float:right}.path-mod-assign #page,.path-mod-assign #page-content{position:inherit}.submissionsummarytable .gradingform_rubric .criterion .levels .level .score,.submissionsummarytable .rubricmappingexplained
  4138. h4{color:inherit}.dir-rtl .dropdown-menu{right:auto;left:0}.dir-rtl .navbar .nav>li>.dropdown-menu:before{left:9px;right:auto}.dir-rtl .navbar .nav>li>.dropdown-menu:after{left:10px;right:auto}.dir-rtl .dropdown-submenu>a:after{border-width:5px 0 5px 5px}.navbar .search-input-wrapper{width:18px}.navbar .search-input-wrapper>div{margin:10px
  4139. 0 11px;padding-left:1px}.navbar .search-input-wrapper.expanded{width:160px}.navbar .search-input-wrapper.expanded>div{margin:11px
  4140. 0 10px}.navbar .search-input-wrapper>form{margin:6px
  4141. 0 3px 25px}.dir-rtl .navbar .search-input-wrapper>form{margin:6px
  4142. 25px 3px 0}body{line-height:20px;text-shadow:none;font-size:14px;font-weight:400;background-color:rgba(255,255,255,.6);background-size:cover;margin:0;padding:0}a,a:focus,a:hover{text-decoration:none}.usersuspended,.usersuspended a,.usersuspended a:link,.usersuspended a:visited{text-decoration:line-through}.skiplinks .skip:focus{position:absolute;top:0;background-color:#fff;z-index:201;padding:8px}.text_to_html{display:inline;clear:none}#dndupload-status{display:none}.moodle-actionmenu[data-enhanced].show{white-space:nowrap}.moodle-actionmenu[data-enhanced].show
  4143. .menu{box-shadow:none}.moodle-actionmenu[data-enhanced].show .menu .iconsmall,.moodle-actionmenu[data-enhanced].show .menu
  4144. .smallicon{margin:4px}.course-content .section .activity:hover,.sitetopic .section .activity:hover{background-color:none}del{color:red!important}ins{color:green!important}#page,.pagelayout-redirect{padding-top:10px}#page #page-content,.pagelayout-redirect #page-content{margin-top:10px}#page #page-content #region-main,#page #page-content div[role=main],.pagelayout-redirect #page-content #region-main,.pagelayout-redirect #page-content div[role=main]{border:1px
  4145. solid #e3e3e3;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background-color:#fff;padding:2px
  4146. 10px;margin-bottom:20px}#page #page-content #region-main,.pagelayout-redirect #page-content #region-main{box-sizing:border-box}#page #page-content #region-main>div[role=main],.pagelayout-redirect #page-content #region-main>div[role=main]{border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:0}.used-region-header #block-region-header,.used-region-header.pagelayout-frontpage #page #page-content{margin-top:10px}.used-region-header #page #page-content{margin-top:0}.pagelayout-embedded #page #page-content div[role=main]{padding-bottom:20px}.bor{height:20px;margin:0
  4147. 0 4px}#page-admin-upgradesettings #page,.maintenance#page{padding-top:0}#page-admin-plugins #page-content #region-main{overflow-x:auto}.path-grade-report-grader table,.path-grade-report-grader
  4148. table#fixed_column{background-color:transparent}.side-pre{border:1px
  4149. solid #333}.span12#move{margin-top:-30px}.course-content ul.weeks
  4150. li.section{padding-bottom:20px!important}img.profilepicture,img.userpicture{border-style:solid;border-width:1px;margin-right:5px}body .chooserdialogue .moodle-dialogue-wrap .moodle-dialogue-bd{padding:0}.dimmed,.dimmed_category a:visited{color:inherit;font-style:italic}.activity.label
  4151. .dimmed_text{opacity:1;filter:alpha(opacity=100);color:#595959;font-style:italic}.resourcecontent .mediaplugin.mediaplugin_mp3
  4152. object{width:600px;height:25px}.generaltable img,.userenrolment .unassignrolelink
  4153. img{background-color:rgba(255,255,255,.8);border-radius:4px;padding:2px}.generaltable img[src$=spacer]{background-color:transparent}.generaltable
  4154. .dimmed_text{color:inherit;font-style:italic}.userenrolment img.profilepicture,.userenrolment
  4155. img.userpicture{height:44px;width:44px}.userenrolment
  4156. .unassignrolelink{vertical-align:text-bottom}.userenrolment .col_lastcourseaccess,.userenrolment
  4157. .col_userdetails{padding:6px}#page-enrol-users
  4158. .enrol_user_buttons{float:none;margin-top:4px;text-align:right}.fa,:before{speak:none}.form-item .form-setting .form-defaultinfo,.form-item .form-setting .form-password
  4159. .unmask{display:block;word-wrap:break-word}#admin-emoticons td
  4160. input{width:6em}#admindeviceselector td
  4161. img{max-width:500px;width:100%}.dir-ltr .environmenttable
  4162. img.iconhelp{padding-right:2px;margin-right:.3em}.dir-rtl .environmenttable
  4163. img.iconhelp{padding-left:2px;margin-left:.3em}.alert
  4164. .close{top:0;line-height:16px;width:18px}.alerteditbutton{margin-bottom:20px}#page-mod-assign-grader
  4165. #page{padding-top:0}#page-mod-assign-grader #page #page-content{margin-top:0}#page-mod-assign-grader #page #page-content div[role=main]{border-radius:0}.path-mod-assign [data-region=grading-navigation]{padding:0}.path-mod-assign [data-region=grading-navigation-panel]{height:100px;position:relative}.path-mod-assign [data-region=grading-navigation-panel] [data-region=user-info] h4,.path-mod-assign [data-region=grading-navigation-panel] [data-region=user-info] h4
  4166. img{margin-top:0}.path-mod-assign [data-region=grade-panel],.path-mod-assign [data-region=review-panel]{top:100px}.path-mod-assign [data-region=grade-actions-panel],.path-mod-assign [data-region=grade-actions]{background-color:#fff}@media (max-width:767px){.path-mod-assign [data-region=grading-navigation-panel]{height:auto}.path-mod-assign [data-region=grade-panel],.path-mod-assign [data-region=review-panel]{top:0}.path-mod-assign [data-region=assignment-info],.path-mod-assign [data-region=user-info]{display:inline!important;width:50%}.path-mod-assign [data-region=user-selector] .alignment{width:100%}.dir-ltr.path-mod-assign [data-region=user-info]{float:left}.dir-ltr.path-mod-assign [data-region=assignment-info],.dir-rtl.path-mod-assign [data-region=user-info]{float:right}.dir-rtl.path-mod-assign [data-region=assignment-info]{float:left}}table.ygtvtable
  4167. td{background-color:inherit!important}table.ygtvtable td
  4168. a{color:inherit}.ui-autocomplete{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:5px;margin:2px
  4169. 0 0;list-style:none;border-style:solid;border-width:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.ui-autocomplete .ui-menu-item>a.ui-corner-all{display:block;padding:3px
  4170. 15px;clear:both;font-weight:400;line-height:18px;white-space:nowrap}.ui-autocomplete .ui-menu-item>a.ui-corner-all.ui-state-active,.ui-autocomplete .ui-menu-item>a.ui-corner-all.ui-state-hover{text-decoration:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-image:none}.dir-rtl .ui-autocomplete{float:right}.ui-autocomplete{max-height:240px;max-width:300px;overflow-y:auto;overflow-x:hidden;cursor:pointer}.courseitemsearch{width:100%}.courseitemsearch p,.courseitemsearch>div{display:inline}.courseitemsearch
  4171. input{margin-bottom:4px}.courseitemsearch
  4172. #courseitemsearchresults{position:relative}.courseitemsearch .ui-autocomplete{position:absolute;top:0;left:0}.dir-rtl .courseitemsearch ul.ui-autocomplete{margin:0}.block{background:#fff;padding:6px;border:1px
  4173. solid #e3e3e3;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.block
  4174. .content{padding:4px
  4175. 0}.block .moodle-actionmenu[data-enhanced].show .menu a:hover{text-decoration:none}.block .moodle-actionmenu[data-enhanced].show .menu a:hover:before{color:#fff}.block .moodle-core-dragdrop-draghandle:before{font-family:FontAwesome;content:"\f047";cursor:move}.block .moodle-core-dragdrop-draghandle
  4176. img{display:none}.block li.item_with_icon>p
  4177. img{position:static!important}.dir-ltr .block .icon,.dir-ltr .block .moodle-core-dragdrop-draghandle:before,.dir-ltr .block li.item_with_icon>p
  4178. img{margin-right:5px}.dir-rtl .block .icon,.dir-rtl .block .moodle-core-dragdrop-draghandle:before,.dir-rtl .block li.item_with_icon>p
  4179. img{margin-left:5px}body:not(.tabletdevice).empty-region-side-post #main-and-pre,body:not(.tabletdevice).empty-region-side-pre #main-and-pre
  4180. #content{width:100%}body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre
  4181. #content{width:74.46808511%}body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre #block-region-side-pre{width:23.40425532%}@media (min-width:1200px){body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre
  4182. #content{width:74.35897436%}body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre #block-region-side-pre{width:23.07692308%}}@media (min-width:768px) and (max-width:979px){body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre
  4183. #content{width:74.30939227%}body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre #block-region-side-pre{width:22.9281768%}}@media (max-width:767px){body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre #block-region-side-pre,body:not(.tabletdevice).empty-region-side-post.used-region-side-pre #main-and-pre
  4184. #content{width:100%}}.editing .block-region.yui3-dd-drop-active-valid{min-height:200px;border-width:2px;border-style:dashed}.pagewidthnarrow .block .moodle-actionmenu[data-enhanced].show{white-space:normal}.editing .block-region{padding-top:24px;position:relative}.editing .block-region
  4185. .regionname{display:block;left:0;margin:2px
  4186. 0;position:absolute;text-align:center;top:0;width:100%}.editing .block-region .regionname
  4187. span{background-color:rgba(255,255,255,.5);border-radius:4px;padding:2px}.pagelayout-frontpage #marketing-spots,.pagelayout-frontpage
  4188. .frontpagecontent{margin-bottom:20px}p.tree_item.leaf a>.fa{width:14px}p.tree_item.leaf a.action-delete>.fa{color:red}.tree_item.branch{background-image:none!important}.tree_item.branch:before{font-family:FontAwesome}.tree_item.branch[aria-expanded=false]:before{content:"\f07b"}.tree_item.branch[aria-expanded=true]:before{content:"\f07c"}.tree_item.branch.emptybranch:before{content:"\f114"}.tree_item.branch
  4189. img.smallicon.navicon{display:none}.dir-ltr .tree_item.branch.emptybranch:before,.dir-ltr .tree_item.branch:before{margin-right:5px}.dir-rtl .tree_item.branch.emptybranch:before,.dir-rtl .tree_item.branch:before{margin-left:5px}.block_navigation.block li.type_user>.tree_item.branch:before{content:"\f007"}.block_navigation.block li.type_unknown.depth_1>.tree_item.branch:before{content:"\f015"}.block_navigation.block .block_tree .tree_item.hasicon .item-content-wrap{display:inline!important}.dir-ltr .block_navigation.block .block_tree
  4190. .tree_item.branch{padding-left:0}.dir-rtl .block_navigation.block .block_tree
  4191. .tree_item.branch{padding-right:0}.dir-ltr.jsenabled .block_settings .block_tree
  4192. .tree_item{padding-left:0!important}.dir-rtl.jsenabled .block_settings .block_tree
  4193. .tree_item{padding-right:0!important}.jsenabled .block_settings .block_tree .tree_item.branch.loadingbranch:before{font-family:FontAwesome;content:"\f110";-moz-animation:essential-block-spin .8s infinite ease-in-out;-webkit-animation:essential-block-spin .8s infinite ease-in-out;-o-animation:essential-block-spin .8s infinite ease-in-out;animation:essential-block-spin .8s infinite ease-in-out}@-moz-keyframes essential-block-spin{0%{-moz-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes essential-block-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes essential-block-spin{0%{-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes essential-block-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.hidden-blocks{background:#ffe1e1;padding:10px;border:1px
  4194. solid #EEE;border-radius:5px;margin:10px
  4195. 0}.hidden-blocks
  4196. h4{padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #ccc;margin-top:0;color:#f66}.hidden-blocks
  4197. .block{width:250px}.dir-ltr .hidden-blocks
  4198. h4{text-align:left}.dir-ltr .hidden-blocks
  4199. .block{float:right;margin-left:10px}.dir-rtl .hidden-blocks
  4200. h4{text-align:right}.dir-rtl .hidden-blocks
  4201. .block{float:left;margin-right:10px}.block .header .title h2,.block
  4202. h3.main{font-size:1.15em;line-height:26px;margin-bottom:5px;text-transform:uppercase;font-weight:400;padding:0}.block .header
  4203. .title{border-bottom:1px solid #EEE}.block .header .title
  4204. h2{display:inline}.block .header .title>.fa{font-size:1.65em;display:inline}.dir-ltr .block .header
  4205. .title{padding-left:0}.dir-ltr .block .header .title>.fa{margin-right:.3em}.dir-rtl .block .header
  4206. .title{padding-right:0}.dir-rtl .block .header .title>.fa{margin-left:.3em;float:right}.block_iconic_html .header .title h2:before{content:none}.dir-ltr .block_iconic_html .header .title h2:before{padding-right:0}.dir-rtl .block_iconic_html .header .title h2:before{padding-left:0}.block.block_iconic_html .header .title h2 .fa:before{font-size:1.65em}.dir-ltr .block.block_iconic_html .header .title h2
  4207. .fa{padding-right:0!important}.dir-ltr .block.block_iconic_html .header .title h2 .fa:before{margin-right:.3em}.dir-rtl .block.block_iconic_html .header .title h2
  4208. .fa{padding-left:0!important}.dir-rtl .block.block_iconic_html .header .title h2 .fa:before{margin-left:.3em}.block.hidden .header .title,.block.hidden .header .title h2,.block.hidden
  4209. h3.main{border-bottom:none;margin-bottom:0}.dir-ltr
  4210. .block_quiz_results{text-align:left}.dir-rtl
  4211. .block_quiz_results{text-align:right}.block_rss_client
  4212. .description{height:auto;padding-bottom:0;margin-bottom:0}.block_rss_client
  4213. .content{padding:0}.block_rss_client .content a:hover{text-decoration:none}.block_rss_client .content
  4214. li{border-bottom:1px dotted #E1E1E1;padding:5px}.block_rss_client .content li:hover{background:#f9f9f9}.block_rss_client
  4215. .footer{text-align:right;padding-top:5px}.block_rss_client .footer
  4216. a{color:#fff;width:100px;padding:4px
  4217. 12px;font-size:1em;border-radius:5px}.block_rss_client .footer a:hover{color:inherit}.dir-rtl .block_rss_client
  4218. .footer{text-align:left}.block .minicalendar td,.block .minicalendar
  4219. th{word-break:break-word}.block_myprofile
  4220. .content{padding:5px;text-align:center;min-height:80px}.block_myprofile .content
  4221. img.profilepicture{width:70px;height:70px;padding:3px;margin-bottom:5px;float:left}.dir-rtl .block_myprofile .content
  4222. img.profilepicture{float:right}.block_login .content
  4223. .footer{padding:0}.block_login .content .footer
  4224. div{margin:0;width:90%}.block_login .content .footer div
  4225. a{background:#2f4f4f}.block_login .content .footer div a:hover{background:red}.block_login .content .footer
  4226. a{white-space:nowrap}.block_login .content .footer a,.block_login .content form input[type=submit]{background-image:none;border-color:#30ADD1;border-image:none;border-radius:4px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-size:13px;line-height:20px;padding:4px
  4227. 12px;text-align:center;text-shadow:none;vertical-align:middle;margin:10px
  4228. 0;width:100%}.block_login .content .footer a:hover,.block_login .content form input[type=submit]:hover{text-decoration:none;background:green}.block_login input#login_password,.block_login
  4229. input#login_username{width:95%}.block_login .username label:before{content:"\f007";font-family:FontAwesome}.block_login .password label:before{content:"\f084";font-family:FontAwesome}.dir-ltr .block_login .password label:before,.dir-ltr .block_login .username label:before{margin-right:5px}.dir-rtl .block_login .password label:before,.dir-rtl .block_login .username label:before{margin-left:5px}aside.rowblock-edit
  4230. .block{width:48.93617021%;display:block;min-height:240px;max-height:240px;overflow-y:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dir-ltr aside.rowblock-edit
  4231. .block{float:left;margin-left:2.12765957%}.dir-rtl aside.rowblock-edit
  4232. .block{float:right;margin-right:2.12765957%}@media (min-width:768px) and (max-width:979px){aside.rowblock-edit
  4233. .block{width:48.61878453%}.dir-ltr aside.rowblock-edit
  4234. .block{margin-left:2.76243094%}.dir-rtl aside.rowblock-edit
  4235. .block{margin-right:2.76243094%}}@media (min-width:1200px){aside.rowblock-edit
  4236. .block{width:48.71794872%}.dir-ltr aside.rowblock-edit
  4237. .block{margin-left:2.56410256%}.dir-rtl aside.rowblock-edit
  4238. .block{margin-right:2.56410256%}}@media (min-width:768px){aside.rowblock-blocks div.row-fluid{display:flex}.dir-ltr aside.rowblock-blocks div.row-fluid div.block:first-of-type,.dir-rtl aside.rowblock-blocks div.row-fluid div.block:last-of-type{margin-left:0}}.dir-ltr aside.rowblock-edit div.block:nth-of-type(37){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(37){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(35){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(35){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(33){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(33){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(31){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(31){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(29){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(29){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(27){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(27){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(25){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(25){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(23){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(23){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(21){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(21){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(19){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(19){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(17){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(17){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(15){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(15){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(13){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(13){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(11){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(11){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(9){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(9){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(7){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(7){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(5){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(5){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(3){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(3){margin-right:0}.dir-ltr aside.rowblock-edit div.block:nth-of-type(1){margin-left:0}.dir-rtl aside.rowblock-edit div.block:nth-of-type(1){margin-right:0}.dir-rtl aside.footer-blocks
  4239. .block{float:right}.breadcrumb-button{margin-top:0}.breadcrumb-button
  4240. .fa{vertical-align:middle;color:inherit}.breadcrumb-button .fa:hover{color:inherit}.breadcrumb-button input[type=submit]{text-shadow:none;border-width:1px;border-style:solid;margin:0}.breadcrumb-button input[type=submit]>.singlebutton>form>div{margin:0}.breadcrumb-button
  4241. .singlebutton{margin-left:0;margin-right:0}.breadcrumb-button .singlebutton,.breadcrumb-button
  4242. a{float:right}.dir-rtl .breadcrumb-button .singlebutton,.dir-rtl .breadcrumb-button
  4243. a{float:left}.breadcrumb{background-color:transparent}.breadcrumb-nav{margin:0}.breadcrumb-nav
  4244. ul.breadcrumb.style{background-color:transparent}.breadcrumb-nav
  4245. ul.breadcrumb.style1{display:block;padding:0;width:100%;overflow:hidden;word-wrap:break-word;text-overflow:clip;background-color:transparent}.breadcrumb-nav ul.breadcrumb.style1
  4246. li{position:relative;display:block;line-height:28px;height:28px;text-shadow:none;margin-bottom:4px}.breadcrumb-nav ul.breadcrumb.style1 li
  4247. a{text-decoration:none;overflow:hidden}.breadcrumb-nav ul.breadcrumb.style1 li
  4248. .dimmed_text{font-style:italic}.breadcrumb-nav ul.breadcrumb.style1 li:after,.breadcrumb-nav ul.breadcrumb.style1 li:before{content:" ";display:block;width:0;height:0;border-top:14px solid transparent;border-bottom:14px solid transparent;position:absolute;top:50%;margin-top:-14px;z-index:1}.breadcrumb-nav ul.breadcrumb.style1 li:first-of-type a:before{display:inline-block;font-family:FontAwesome;content:"\f015";text-decoration:none}.breadcrumb-nav ul.breadcrumb.style1 .last:after,.breadcrumb-nav ul.breadcrumb.style1 .last:before,.breadcrumb-nav ul.breadcrumb.style1 li:last-of-type:after,.breadcrumb-nav ul.breadcrumb.style1 li:last-of-type:before{content:'';display:none}.breadcrumb-nav ul.breadcrumb.style1 li:hover
  4249. .dimmed_text{text-decoration:none}.breadcrumb-nav
  4250. ul.breadcrumb.style2{width:100%;padding:0;display:block;background-color:transparent;overflow:hidden;word-wrap:break-word;text-overflow:clip}.breadcrumb-nav ul.breadcrumb.style2
  4251. li{display:block;height:20px;padding:2px;border-radius:0;text-shadow:none}.breadcrumb-nav ul.breadcrumb.style2 li:after{font-family:FontAwesome;padding:5px;line-height:20px;vertical-align:top}.breadcrumb-nav
  4252. ul.breadcrumb.style3{width:100%;display:block;background-color:transparent;padding:0;overflow:hidden;word-wrap:break-word;text-overflow:clip}.breadcrumb-nav ul.breadcrumb.style3
  4253. li{line-height:12px;display:block;text-transform:uppercase;font-size:12px;background-color:transparent}.breadcrumb-nav ul.breadcrumb.style3 li:after{font-family:FontAwesome;content:"\f105";padding:2px;vertical-align:top}.breadcrumb-nav ul.breadcrumb.style3 li:last-child:after{content:""}.dir-ltr .breadcrumb-nav
  4254. ul.breadcrumb.style1{float:left;margin-right:-4px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1
  4255. li{padding:0
  4256. 0 0 20px;float:left}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li
  4257. a{padding-right:3px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li
  4258. span{margin-right:4px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li:after{left:100%;border-left-width:14px;border-left-style:solid}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li:before{left:100%;border-left-width:14px;border-left-style:solid;margin-left:1px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li:first-of-type{padding-left:34px;border-top-left-radius:4px;border-bottom-left-radius:4px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li:first-of-type
  4259. a{margin-left:-25px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li:first-of-type a:before{margin-right:5px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 .last,.dir-ltr .breadcrumb-nav ul.breadcrumb.style1 li:last-of-type{padding-right:10px;border-top-right-radius:4px;border-bottom-right-radius:4px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2
  4260. li{float:left}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2 li
  4261. a{margin-right:3px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2 li:first-of-type{border-top-left-radius:4px;border-bottom-left-radius:4px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2 li:first-of-type
  4262. a{padding-left:5px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2 li:after{content:"\f138"}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2 li:last-child:after{content:"";padding-right:5px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style2 li:last-of-type{border-top-right-radius:4px;border-bottom-right-radius:4px}.dir-ltr .breadcrumb-nav ul.breadcrumb.style3
  4263. li{float:left}.dir-rtl .breadcrumb-nav
  4264. ul.breadcrumb.style1{float:right;margin-right:-4px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1
  4265. li{padding:0
  4266. 20px 0 0;float:right}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li
  4267. a{padding-left:3px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li
  4268. span{margin-left:4px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:after{right:100%;border-right-width:14px;border-right-style:solid}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:before{right:100%;border-right-width:14px;border-right-style:solid;margin-right:1px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:first-of-type{padding-right:34px;border-top-right-radius:4px;border-bottom-right-radius:4px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:first-of-type
  4269. a{margin-right:-25px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:first-of-type a:before{margin-left:5px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 .last,.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:last-of-type{padding-left:10px;border-top-left-radius:4px;border-bottom-left-radius:4px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2
  4270. li{float:right}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2 li
  4271. a{margin-left:3px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2 li:first-of-type{border-top-right-radius:4px;border-bottom-right-radius:4px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2 li:first-of-type
  4272. a{padding-right:5px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2 li:after{content:"\f137"}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2 li:last-child:after{content:"";padding-left:5px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style2 li:last-of-type{border-top-left-radius:4px;border-bottom-left-radius:4px}.dir-rtl .breadcrumb-nav ul.breadcrumb.style3
  4273. li{float:right}.btn-danger,.btn-info,.btn-success,.btn-warning{color:#fff!important}.heading-rts{margin-top:18px}.heading-rts
  4274. .btn{float:right}.dir-rtl .heading-rts
  4275. .btn{float:left}.footer-rts{margin-bottom:4px}body .btn:focus,body .btn:hover{background-image:none}a.btn.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002b80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}a.btn.btn-primary.active,a.btn.btn-primary.disabled,a.btn.btn-primary:active,a.btn.btn-primary:focus,a.btn.btn-primary:hover,a.btn.btn-primary[disabled]{color:#fff;background-color:#04c}a.btn.btn-primary
  4276. .caret{border-top-color:#fff;border-bottom-color:#fff}.minicalendar .calendar_event_course,.minicalendar .calendar_event_group,.minicalendar .calendar_event_site,.minicalendar
  4277. .calendar_event_user{border-radius:50px}.calendar-event-panel{background:#fff;border:1px
  4278. solid #e1e1e1;border-radius:5px;padding-bottom:10px}h2.eventtitle{font-size:1.25em;border-bottom:1px solid #e1e1e1;line-height:20px;padding-bottom:10px}.block .minicalendar td,.minicalendar
  4279. th{padding:5px
  4280. 0;border:1px
  4281. dotted #e1e1e1}table.calendarmonth.calendartable{background:#fff;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}#essentialCarousel.carousel{margin-bottom:10px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image-container{text-align:center;width:90%;padding-left:5%;padding-right:5%}#essentialCarousel.carousel .carousel-inner>.item .carousel-image{width:auto;margin:8px
  4282. auto 0;height:auto;max-height:300px;vertical-align:middle;max-width:100%}#essentialCarousel.carousel .carousel-inner>.item.side-caption .carousel-image{box-shadow:0 0 8px #222;padding:8px;background-color:#fff}#essentialCarousel.carousel .carousel-inner a,#essentialCarousel.carousel .carousel-inner a:active,#essentialCarousel.carousel .carousel-inner a:hover{text-decoration:none;height:100%}#essentialCarousel.carousel .carousel-inner .carousel-caption{border-radius:6px}#essentialCarousel.carousel .carousel-inner .carousel-caption .carousel-caption-inner{margin:0
  4283. auto}#essentialCarousel.carousel .carousel-inner .carousel-caption div,#essentialCarousel.carousel .carousel-inner .carousel-caption
  4284. h4{padding:0
  4285. 20px}#essentialCarousel.carousel .carousel-inner .carousel-caption
  4286. div{line-height:1}#essentialCarousel.carousel .carousel-inner.centred .carousel-caption,#essentialCarousel.carousel .carousel-inner.centred div.the-side-caption{text-align:center}#essentialCarousel.carousel .carousel-inner.ontop .carousel-caption{opacity:.75;filter:alpha(opacity=75)}#essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content{border-radius:6px}#essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content div,#essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content
  4287. h4{padding:0
  4288. 20px}#essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content
  4289. div{line-height:1}#essentialCarousel.carousel .carousel-control{display:none;background-color:transparent;border:0;font-size:30px}#essentialCarousel.carousel .carousel-control:focus,#essentialCarousel.carousel .carousel-control:hover{background-color:transparent;border:0}#essentialCarousel.carousel:hover .carousel-control{display:block}#essentialCarousel.carousel .carousel-indicators{border-radius:4px;padding-top:2px;padding-bottom:2px;background-color:#fff;background-color:rgba(255,255,255,.5)}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4290. h4{font-size:14px;line-height:1}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4291. div{font-size:10px;line-height:1}@media (min-width:480px){#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4292. h4{font-size:16px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4293. div{font-size:12px}#essentialCarousel.carousel .carousel-control{font-size:36px;width:36px;height:36px}}@media (max-width:767px){#essentialCarousel.carousel .carousel-inner>.item{height:200px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image-container{line-height:200px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image{max-height:165px}#essentialCarousel.carousel .carousel-inner>.item .carousel-caption{position:absolute}#essentialCarousel.carousel .carousel-inner>.item .carousel-caption
  4294. h4{font-size:1.2em}#essentialCarousel.carousel .carousel-inner>.item.side-caption
  4295. div.nocaption{margin-top:6.5%}#essentialCarousel.carousel .carousel-inner.below>.item,#essentialCarousel.carousel .carousel-inner>.item.side-caption{height:280px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-caption,#essentialCarousel.carousel .carousel-inner>.item.side-caption .carousel-caption{height:45px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-image-container.nocaption,#essentialCarousel.carousel .carousel-inner>.item.side-caption .carousel-image-container.nocaption{line-height:280px}}@media (min-width:768px){#essentialCarousel.carousel .carousel-inner>.item{height:260px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image-container{line-height:260px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image{max-height:225px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{height:260px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption:before{content:'';display:inline-block;height:100%;vertical-align:middle}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption .the-side-caption-content{display:inline-block;vertical-align:middle;width:100%}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4296. h4{font-size:20px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4297. div{font-size:14px}#essentialCarousel.carousel .carousel-inner.below>.item{height:345px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-caption{height:55px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-image-container.nocaption{line-height:345px}#essentialCarousel.carousel .carousel-control{font-size:40px;width:40px;height:40px}}@media (min-width:768px) and (max-width:979px){#essentialCarousel.carousel .carousel-inner>.item .carousel-caption
  4298. h4{font-size:1.2em}}@media (min-width:992px){#essentialCarousel.carousel .carousel-inner>.item{height:328px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image-container{line-height:328px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image{max-height:293px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{height:328px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4299. h4{font-size:26px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4300. div{font-size:18px}#essentialCarousel.carousel .carousel-inner.below>.item{height:428px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-caption{height:65px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-image-container.nocaption{line-height:428px}#essentialCarousel.carousel .carousel-control{font-size:50px;width:50px;height:50px}}@media (min-width:1200px){#essentialCarousel.carousel .carousel-inner>.item{height:368px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image-container{line-height:368px}#essentialCarousel.carousel .carousel-inner>.item .carousel-image{max-height:333px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{height:368px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4301. h4{font-size:32px}#essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption
  4302. div{font-size:20px}#essentialCarousel.carousel .carousel-inner.below>.item{height:468px}#essentialCarousel.carousel .carousel-inner.below>.item .carousel-image-container.nocaption{line-height:468px}#essentialCarousel.carousel .carousel-control{font-size:60px;width:60px;height:60px}}.dir-ltr #essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{padding-left:7%}.dir-ltr #essentialCarousel.carousel .carousel-inner>.item.side-caption .carousel-image{margin-left:-8px}.dir-ltr #essentialCarousel.carousel .carousel-indicators{padding-right:5px;right:5px}@media (max-width:767px){.dir-ltr #essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{padding-left:0}}@media (min-width:768px){.dir-ltr #essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption:before{margin-right:-.25em}}.dir-rtl #essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{padding-right:7%}.dir-rtl #essentialCarousel.carousel .carousel-inner>.item.side-caption .carousel-image{margin-right:-8px}.dir-rtl #essentialCarousel.carousel .carousel-indicators{padding-right:5px;left:5px;right:auto}@media (max-width:767px){.dir-rtl #essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption{padding-right:0}}@media (min-width:768px){.dir-rtl #essentialCarousel.carousel .carousel-inner>.item.side-caption div.the-side-caption:before{margin-left:-.25em}}.categoryicons .course_category_tree
  4303. .subcategories{display:flex;flex-wrap:wrap}.categoryicons #frontpage-category-combo .collapsible-actions,.categoryicons .course_category_tree .collapsible-actions,.categoryicons .frontpage-category-names .collapsible-actions{display:none}.categoryicons .frontpage-category-names.course_category_tree .category.with_children>.info>.categoryname,.categoryicons .frontpage-category-names.course_category_tree .category>.info>.categoryname{line-height:15px}.categoryicons .category-browse{overflow:auto;width:100%}.categoryicons .course_category_tree .category.with_children.collapsed>.info>.categoryname,.categoryicons .course_category_tree .category.with_children>.info>.categoryname,.categoryicons .course_category_tree .category>.info>.categoryname{background-image:none!important;padding:0;margin:0}.categoryicons .course_category_tree
  4304. .category.dimmed_category{border-color:#595959}.categoryicons .course_category_tree .category.dimmed_category
  4305. .fa{color:inherit}.categoryicons .course_category_tree .category[data-categoryid].dimmed_category:hover,.categoryicons .course_category_tree .category[data-categoryid].dimmed_category:hover>.info>.categoryname
  4306. a{background-color:#595959}.categoryicons .course_category_tree
  4307. .category{margin:0
  4308. 5px 10px}.categoryicons .course_category_tree .category
  4309. .numberofcourse{background:#555;color:#fff;padding:5px;border-radius:12px;position:relative;top:8px;text-align:center;min-width:24px;font-weight:600;font-size:1em;-moz-box-shadow:1px 1px 5px 0 #ccc;-webkit-box-shadow:1px 1px 5px 0 #ccc;box-shadow:1px 1px 5px 0 #ccc;border:2px
  4310. solid #fff}.categoryicons .course_category_tree .category
  4311. .content{display:none}.categoryicons .course_category_tree .category .info
  4312. .name{padding:0;text-align:center}.categoryicons .course_category_tree .category>.info,.categoryicons .course_category_tree .category>.info>.categoryname{background-color:transparent;border:0;text-align:center;box-shadow:none;margin:0}.categoryicons .course_category_tree .category>.info a,.categoryicons .course_category_tree .category>.info>.categoryname
  4313. a{display:block;overflow:hidden;text-overflow:ellipsis;width:176px}.categoryicons .course_category_tree .category>.info a>.fa,.categoryicons .course_category_tree .category>.info>.categoryname a>.fa{font-size:140px;padding-top:6px;width:100%}.categoryicons .course_category_tree .category>.info a>span,.categoryicons .course_category_tree .category>.info>.categoryname a>span{font-size:18px}.categoryicons .course_category_tree .category[data-categoryid]{border:1px
  4314. solid #e7e7e7;border-radius:5px;border-bottom-width:3px}.categoryicons .course_category_tree .category[data-categoryid]:hover{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.categoryicons .course_category_tree .category[data-categoryid]>.info>.categoryname
  4315. a{line-height:30px}.categoryicons .course_category_tree .category[data-categoryid]>.info>.categoryname a:hover{text-decoration:none}.categoryicons .course_category_tree .content .teachers
  4316. .fa{display:inline;font-size:inherit}.categoryicons .jsenabled .course_category_tree
  4317. .controls{display:none}.categoryicons .subcategories+.category-browse{clear:both}.dir-ltr.categoryicons .course_category_tree
  4318. .category{float:left}.dir-ltr.categoryicons .course_category_tree .category
  4319. .numberofcourse{right:8px;float:right}.dir-rtl.categoryicons .course_category_tree
  4320. .category{float:right}.dir-rtl.categoryicons .course_category_tree .category
  4321. .numberofcourse{left:8px;float:left}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-input-area table.generaltable
  4322. td.cell{padding:0}.yui-skin-sam .yui-layout.path-mod-chat-gui_ajax #chat-userlist #users-list
  4323. img{border-radius:250px;height:35px}.course-content ul
  4324. li.section.main{border-bottom:0 none}#course-category-listings .item-actions.show .menu
  4325. a{padding:0
  4326. 5px}.dir-ltr #course-category-listings li
  4327. i.icon{margin-left:0}.dir-ltr #course-category-listings li li
  4328. i.icon{margin-left:1em}.dir-ltr #course-category-listings li li li
  4329. i.icon{margin-left:2em}.dir-ltr #course-category-listings li li li li
  4330. i.icon{margin-left:3em}.dir-ltr #course-category-listings li li li li li
  4331. i.icon{margin-left:4em}.dir-ltr #course-category-listings li li li li li li
  4332. i.icon{margin-left:4.5em}.dir-ltr #course-category-listings li li li li li li li
  4333. i.icon{margin-left:5em}.dir-ltr #course-category-listings li li li li li li li li
  4334. i.icon{margin-left:5.5em}.dir-ltr #course-category-listings li .menu li
  4335. i.icon{margin-left:0}.dir-rtl #course-category-listings li
  4336. i.icon{margin-right:0}.dir-rtl #course-category-listings li li
  4337. i.icon{margin-right:1em}.dir-rtl #course-category-listings li li li
  4338. i.icon{margin-right:2em}.dir-rtl #course-category-listings li li li li
  4339. i.icon{margin-right:3em}.dir-rtl #course-category-listings li li li li li
  4340. i.icon{margin-right:4em}.dir-rtl #course-category-listings li li li li li li
  4341. i.icon{margin-right:4.5em}.dir-rtl #course-category-listings li li li li li li li
  4342. i.icon{margin-right:5em}.dir-rtl #course-category-listings li li li li li li li li
  4343. i.icon{margin-right:5.5em}.dir-rtl #course-category-listings li .menu li
  4344. i.icon{margin-right:0}div.mdl-align.title{text-align:left;border-bottom:1px solid #e1e1e1;margin-bottom:15px}.dir-rtl div.mdl-align.title{text-align:right}.course-content ul
  4345. li.section.main.current{border-radius:5px}.course-content ul li.section.hidden .activity .activityinstance,.course-content ul li.section.hidden .content>div,.course-content ul li.section.hidden .sectionname>span{opacity:1;color:#595959;font-style:italic}.course-content ul li.section.hidden .sectionname>span
  4346. a{color:inherit;font-style:inherit}body .course-content ul.topics
  4347. li.section{padding-bottom:20px;margin:0}body .course-content ul.topics li.section
  4348. .content{margin-left:20px;margin-right:20px}.categorycti{background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:10px}.categorycti
  4349. .coursetitle{margin:0
  4350. 10px;padding:10px}.coursebox .summary
  4351. .categorycti{display:none}.page-context-header .page-header-headings{margin-top:0;margin-bottom:0}.page-context-header .page-header-headings
  4352. h1{margin:0}.categorycti .page-context-header .page-header-headings
  4353. h1{color:inherit}.coursebox>.info>.coursename
  4354. a{background-image:none}.coursebox>.info>.coursename a:before{display:inline-block;font-family:FontAwesome;content:"\f278";text-decoration:none}.dir-ltr .coursebox>.info>.coursename
  4355. a{background-position:left 0;padding-left:0}.dir-ltr .coursebox>.info>.coursename a:before{margin-right:5px}.dir-rtl .coursebox>.info>.coursename
  4356. a{background-position:right 0;padding-right:0}.dir-rtl .coursebox>.info>.coursename a:before{margin-left:5px}.dir-ltr .listitem-category
  4357. .icon{margin-right:5px;margin-left:3px}.dir-rtl .listitem-category
  4358. .icon{margin-left:5px;margin-right:3px}.editing .section .activity .editing_hide .fa-eye-slash:before{content:"\f06e"}.editing .section .activity .editing_show .fa-eye:before{content:"\f070"}.dir-ltr.editing .section .activity
  4359. .activityinstance{padding-right:180px}.dir-ltr.editing .section .activity
  4360. .contentwithoutlink{padding-right:100px}.dir-rtl.editing .section .activity
  4361. .activityinstance{padding-left:180px}.dir-rtl.editing .section .activity
  4362. .contentwithoutlink{padding-left:100px}.dir-ltr .modeditingmenu.editing .section .activity
  4363. .activityinstance{padding-right:80px}.dir-rtl .modeditingmenu.editing .section .activity
  4364. .activityinstance{padding-left:80px}.coursebox .content .courseimage.fullsummarywidth,.coursebox .content .summary.fullsummarywidth,.coursebox .content
  4365. .teachers.fullsummarywidth{width:100%;float:none}.coursebox .content .teachers
  4366. .fa{font-size:inherit}.coursebox .content .courseimage
  4367. img{max-width:100%;max-height:none}.dir-ltr .coursebox .content
  4368. .teachers.courseboxright{float:right;clear:right}.dir-rtl .coursebox .content
  4369. .teachers.courseboxright{float:left;clear:left}.path-mod-resource
  4370. .resourcecontent{overflow:auto}.section-navigation{padding:2em
  4371. 0;line-height:1.5;clear:both}.section-navigation
  4372. a{font-style:normal;text-decoration:none}#next_section,#previous_section{width:50%;display:block}#next_section
  4373. .nav_icon{font-size:2em}#next_section
  4374. .text{width:74.05%}.dir-ltr
  4375. #next_section{text-align:right;float:right}.dir-ltr #next_section
  4376. .nav_icon{float:right;margin-left:.3em;border-left:1px solid #eee}.dir-ltr #next_section
  4377. .text{float:right}.dir-rtl
  4378. #next_section{text-align:left;float:left}.dir-rtl #next_section
  4379. .nav_icon{float:left;margin-right:.3em;border-right:1px solid #eee}.dir-rtl #next_section
  4380. .text{float:left}#previous_section
  4381. .nav_icon{font-size:2em}#previous_section
  4382. .text{width:74.05%}.dir-ltr
  4383. #previous_section{float:left;text-align:left}.dir-ltr #previous_section
  4384. .nav_icon{float:left;margin-right:.3em;border-right:1px solid #eee}.dir-ltr #previous_section
  4385. .text{float:left}.dir-rtl
  4386. #previous_section{float:right;text-align:right}.dir-rtl #previous_section
  4387. .nav_icon{float:right;margin-left:.3em;border-left:1px solid #eee}.dir-rtl #previous_section
  4388. .text{float:right}.nav_guide{letter-spacing:.1em;text-transform:uppercase;font-style:normal}.nav_icon{padding:.3em;width:8.3%;text-align:center}.dockbutton.disabled,.dockbutton:focus,.dockbutton:hover,.dockbutton[disabled]{background-color:#d0d5d9}.dockbutton.active,.dockbutton:active{background-color:#b4bcc2}.dockbutton:focus,.dockbutton:hover{text-decoration:none;background-position:0 -15px;-o-transition:background-position .1s linear}.dockbutton:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.dockbutton.active,.dockbutton:active{background-image:none;outline:0}.dockbutton.disabled,.dockbutton[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.dockbutton .badge,.dockbutton
  4389. .label{position:relative;top:-1px}.dockbutton:focus,.dockbutton:hover{color:#fff;-webkit-transition:.25s;-moz-transition:.25s;transition:.25s}.dockbutton.active,.dockbutton:active{color:rgba(255,255,255,.75);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.dockbutton.disabled,.dockbutton[disabled]{color:#fff}.dockbutton-large{padding:18px
  4390. 36px}.dockbutton-small{padding:2px
  4391. 12px}.dockbutton-mini{padding:1px
  4392. 8px}body.has_dock
  4393. div#dock{display:inline}body.has_dock
  4394. #page{padding-left:20px;padding-right:20px}body.has_dock
  4395. #dock{position:fixed;z-index:12000;height:100%;border-right:0 none}body.has_dock #dock .controls
  4396. img{background:#fff;padding:3px;border-radius:5px}body.has_dock #dock
  4397. .nothingdocked{display:none;visibility:hidden}body.has_dock #dock .dockeditem
  4398. .firstdockitem{margin-top:1em}body.has_dock #dock
  4399. .dockedtitle{padding:10px
  4400. 0;margin:2px
  4401. 2px 0;text-align:center;vertical-align:middle;cursor:pointer;border-bottom:1px dashed #fff}body.has_dock #dock .dockedtitle
  4402. h2{font-weight:400;text-align:center}body.has_dock #dock .dockedtitle.active,body.has_dock #dock .dockedtitle.disabled,body.has_dock #dock .dockedtitle:active,body.has_dock #dock .dockedtitle:focus,body.has_dock #dock .dockedtitle:hover,body.has_dock #dock .dockedtitle[disabled]{color:#7b8a8b}body.has_dock #dock .dockedtitle.active,body.has_dock #dock .dockedtitle:active{background-color:#b4bcc2}body.has_dock #dock .dockedtitle:focus,body.has_dock #dock .dockedtitle:hover{text-decoration:none;background-position:0 -10px;-o-transition:background-position .1s linear}body.has_dock #dock .dockedtitle.active,body.has_dock #dock .dockedtitle:active{background-image:none;outline:0}body.has_dock #dock .dockedtitle.disabled,body.has_dock #dock .dockedtitle[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}body.has_dock #dock .dockedtitle .badge,body.has_dock #dock .dockedtitle
  4403. .label{position:relative;top:-1px}body.has_dock #dock .dockedtitle:focus,body.has_dock #dock .dockedtitle:hover{color:#fff;-webkit-transition:.25s;-moz-transition:.25s;transition:.25s}body.has_dock #dock .dockedtitle.active,body.has_dock #dock .dockedtitle:active{color:rgba(255,255,255,.75);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}body.has_dock #dock .dockedtitle.disabled,body.has_dock #dock .dockedtitle[disabled]{color:#fff}body.has_dock #dock .dockedtitle-large{padding:18px
  4404. 36px}body.has_dock #dock .dockedtitle-small{padding:2px
  4405. 12px}body.has_dock #dock .dockedtitle-mini{padding:1px
  4406. 8px}body.has_dock #dock .dockeditempanel_hd
  4407. h2{display:block;padding:3px
  4408. 15px;font-size:1.1em;font-weight:700;line-height:20px;text-shadow:0 1px 0 rgba(255,255,255,.5);text-transform:uppercase}body.has_dock #dock
  4409. .controls{position:absolute;bottom:42px;width:100%;text-align:center}body.has_dock #dock .controls
  4410. img{cursor:pointer}body.has_dock
  4411. #dockeditempanel{position:relative;z-index:12000;min-width:200px}body.has_dock #dockeditempanel
  4412. .dockeditempanel_content{z-index:12050;width:384px;background-color:#fff}body.has_dock #dockeditempanel
  4413. .dockeditempanel_bd{width:auto;overflow:auto}body.has_dock #dockeditempanel .dockeditempanel_bd .block_navigation .block_tree
  4414. li{overflow:visible}body.has_dock #dockeditempanel
  4415. .dockeditempanel_hd{position:relative;border-bottom:1px solid #EEE}body.has_dock #dockeditempanel .dockeditempanel_hd
  4416. h2{padding:5px;margin:0}body.has_dock #dockeditempanel .dockeditempanel_hd
  4417. .commands{position:absolute;top:16px}body.has_dock #dockeditempanel .dockeditempanel_hd .commands>a,body.has_dock #dockeditempanel .dockeditempanel_hd .commands>span{margin-left:3px;cursor:pointer}body.has_dock #dockeditempanel .dockeditempanel_hd a.editing_delete,body.has_dock #dockeditempanel .dockeditempanel_hd a.editing_edit,body.has_dock #dockeditempanel .dockeditempanel_hd a.editing_hide,body.has_dock #dockeditempanel .dockeditempanel_hd a.editing_move,body.has_dock #dockeditempanel .dockeditempanel_hd
  4418. a.editing_roles{display:none}body.has_dock #dockeditempanel .dockeditempanel_hd .commands img,body.has_dock #dockeditempanel .dockeditempanel_hd .commands
  4419. input{vertical-align:middle}body.has_dock #dockeditempanel .dockeditempanel_hd .commands
  4420. img{display:inline}body.has_dock #dockeditempanel .dockeditempanel_hd .commands .hidepanemicon
  4421. img{cursor:pointer}body.has_dock
  4422. #dockeditempanel.dockitempanel_hidden{display:none}body.has_dock
  4423. .dockeditempanel_content{width:300px}body.has_dock.docked-region-side-pre #main-and-pre #content,body.has_dock.empty-region-side-pre.empty-region-side-post #main-and-pre,body.has_dock.empty-region-side-pre.empty-region-side-post #main-and-pre #content,body.has_dock.empty-region-side-pre:not(.has-region-side-post) #main-and-pre{width:100%}body.has_dock.docked-region-side-pre #main-and-pre #content #region-main{width:auto}body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre{width:100%}body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre
  4424. #content{width:74.46808511%}body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre #block-region-side-pre{width:23.40425532%}body.has_dock.jsenabled.docked-region-side-pre.empty-region-side-pre.used-region-side-post #region-main{width:auto}@media (min-width:1200px){body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre
  4425. #content{width:74.35897436%}body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre #block-region-side-pre{width:23.07692308%}}@media (min-width:768px) and (max-width:979px){body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre
  4426. #content{width:74.30939227%}body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre #block-region-side-pre{width:22.9281768%}}@media (max-width:767px){body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre #block-region-side-pre,body.has_dock.used-region-side-pre.docked-region-side-post #main-and-pre
  4427. #content{width:100%}}body.dir-ltr.has_dock{padding-left:42px}body.dir-ltr.has_dock
  4428. #dock{left:0;border-right:0 none}body.dir-ltr.has_dock #dock .dockedtitle
  4429. .filterrotate{margin-left:8px}body.dir-ltr.has_dock
  4430. #dockeditempanel{left:100%;padding-left:5px}body.dir-ltr.has_dock #dockeditempanel .dockeditempanel_hd
  4431. .commands{right:4px}body.dir-ltr.has_dock #dockeditempanel .dockeditempanel_hd .commands>a,body.dir-ltr.has_dock #dockeditempanel .dockeditempanel_hd .commands>span{margin-left:3px}body.dir-ltr.has_dock #dockeditempanel .dockeditempanel_hd .commands img,body.dir-ltr.has_dock #dockeditempanel .dockeditempanel_hd .commands
  4432. input{margin-right:1px}body.dir-rtl.has_dock{padding-right:42px}body.dir-rtl.has_dock
  4433. #dock{right:0;border-left:0 none}body.dir-rtl.has_dock #dock .dockedtitle
  4434. .filterrotate{margin-right:8px}body.dir-rtl.has_dock
  4435. #dockeditempanel{right:100%;padding-right:5px}body.dir-rtl.has_dock #dockeditempanel .dockeditempanel_hd
  4436. .commands{left:4px}body.dir-rtl.has_dock #dockeditempanel .dockeditempanel_hd .commands>a,body.dir-rtl.has_dock #dockeditempanel .dockeditempanel_hd .commands>span{margin-right:3px}body.dir-rtl.has_dock #dockeditempanel .dockeditempanel_hd .commands img,body.dir-rtl.has_dock #dockeditempanel .dockeditempanel_hd .commands
  4437. input{margin-left:1px}.dir-ltr.has_dock .navbar .navbar-inner{padding-left:62px}.dir-ltr.has_dock .navbar.affix-top .navbar-inner{padding-left:20px}.dir-rtl.has_dock .navbar .navbar-inner{padding-right:62px}.dir-rtl.has_dock .navbar.affix-top .navbar-inner{padding-right:20px}.fa>img{display:none;visibility:hidden}.actions .moodle-actionmenu[data-enhanced].show .menu
  4438. a{text-decoration:none!important}#page-mod-glossary-view .commands
  4439. img{display:inline}.commands
  4440. .fa{margin-left:3px;margin-right:3px}.actions a>.fa,.course-item-actions a>.fa,.menu a.menu-action>.fa{width:15px}.actions a.action-delete>.fa,.course-item-actions a.action-delete>.fa,.menu a.menu-action.action-delete>.fa{color:red}.actions a.editing_groupsnone>.fa:before{content:"\f007"}.actions a.editing_groupsseparate>.fa:before{content:"\f21b"}.actions a.editing_groupsvisible>.fa:before{content:"\f234"}#studentheader>.fa,.heading_name_row a>.fa,a.action-icon>.fa{width:14px;margin:0
  4441. 3px}.menu a.menu-action:hover>.fa{color:#fff}.section-modchooser-link
  4442. img{display:none}.section-modchooser-link>a:before{font-family:FontAwesome;content:"\f067"}.section-modchooser-link>a:hover:before{text-decoration:none}.dir-ltr .section-modchooser-link>a:before{margin-right:3px}.dir-rtl .section-modchooser-link>a:before{margin-left:3px}.editing_title
  4443. img{display:none!important}.editing_title:before{font-family:FontAwesome;content:"\f040 "}.dir-ltr .editing_title:before{margin-right:5px}.dir-rtl .editing_title:before{margin-left:5px}.moodle-core-dragdrop-draghandle:before{font-family:FontAwesome;content:"\f047";cursor:move}.dir-ltr .moodle-core-dragdrop-draghandle:before{margin-right:5px}.dir-rtl .moodle-core-dragdrop-draghandle:before{margin-left:5px}.course-content .section .moodle-core-dragdrop-draghandle:before{font-family:FontAwesome;content:"\f07d";font-size:1.4em;padding-left:5px;padding-right:5px;cursor:n-resize}.course-content .section .moodle-core-dragdrop-draghandle
  4444. img{display:none}.dir-ltr .course-content .section .moodle-core-dragdrop-draghandle:before{margin-right:0}.dir-rtl .course-content .section .moodle-core-dragdrop-draghandle:before{margin-left:0}.section .summary>a:before{font-family:FontAwesome;content:"\f013";margin-right:5px}.section .summary
  4445. .iconsmall.edit{display:none}.dir-ltr .moodle-actionmenu.show[data-enhanced] .menu
  4446. a{padding-left:.35em;padding-right:.35em}.dir-ltr .moodle-actionmenu.show[data-enhanced] .menu a
  4447. .fa{margin-right:5px}.dir-rtl .moodle-actionmenu.show[data-enhanced] .menu
  4448. a{padding-left:.35em;padding-right:.35em}.dir-rtl .moodle-actionmenu.show[data-enhanced] .menu a
  4449. .fa{margin-left:5px}#page-footer{margin:0;padding:10px
  4450. 0 0;border:0;font-size:1em;width:100%}#page-footer
  4451. .copy{padding-bottom:5px;width:100%;text-align:center}#page-footer .footerlinks
  4452. .footnote{color:#fff}#page-footer .footerlinks .footnote a:hover{text-decoration:none}#page-footer .footerlinks .helplink
  4453. a{color:orange!important}#page-footer
  4454. hr{padding:0;border-bottom:0 none;margin-top:0}#page-footer
  4455. h4{font-size:1.2em;padding-bottom:6px;margin-bottom:4px}#page-footer
  4456. .themecredit{font-size:7pt;text-align:center}#page-footer .themecredit a,#page-footer .themecredit a:hover{color:inherit}.dir-ltr #page-footer{text-align:left}.dir-ltr #page-footer
  4457. .copy{float:left}.dir-ltr #page-footer .footerlinks
  4458. .footnote{float:left;margin-left:0}.dir-ltr #page-footer .footerlinks
  4459. .helplink{float:right;padding-right:20px}.dir-rtl #page-footer{text-align:right}.dir-rtl #page-footer
  4460. .copy{float:right}.dir-rtl #page-footer .footerlinks
  4461. .footnote{float:right;margin-right:0}.dir-rtl #page-footer .footerlinks
  4462. .helplink{float:left;padding-left:20px}#greyboxright ul,#page-footer
  4463. ul{list-style-type:none!important;margin:0
  4464. 0 10px}#greyboxright ul li,#page-footer ul
  4465. li{padding:0}.footerlinks{line-height:15px}body.path-admin-setting #page-footer{min-height:101px}#page-footer .block .header .title h2:before{background-color:transparent;font-size:1.2em;padding-bottom:0;margin-bottom:0;text-transform:none;font-weight:400}#page-footer .block .header
  4466. .block_action{display:none!important}.dir-ltr #page-footer .block .header .title h2:before{padding-left:0}.dir-rtl #page-footer .block .header .title h2:before{padding-right:0}#page-footer .calendar_filters,#page-footer
  4467. .eventskey{display:none}#page-footer .myprofileitem.picture,#page-footer
  4468. img.profilepicture{width:90px;height:90px}.dir-ltr #page-footer .myprofileitem.picture,.dir-ltr #page-footer
  4469. img.profilepicture{float:left}.dir-rtl #page-footer .myprofileitem.picture,.dir-rtl #page-footer
  4470. img.profilepicture{float:right}#page-footer
  4471. .myprofileitem.fullname{margin-top:10px}.dir-ltr #page-footer
  4472. .myprofileitem.picture{margin-right:20px}.dir-rtl #page-footer
  4473. .myprofileitem.picture{margin-left:20px}#page-footer .block_login .footer a,#page-footer .block_login .footer a:visited{color:#fff}#page-footer .block_rss_client li:before{display:none}#page-footer .block_rss_client
  4474. .content{padding-top:10px}#page-footer .block_rss_client .content li:hover{background-color:transparent}#page-footer
  4475. .performanceinfo{padding:8px;border-radius:6px;border-width:1px;border-style:solid;margin-top:5px}#page-footer .performanceinfo
  4476. .span3{text-align:center;margin-top:10px}#page-footer .performanceinfo
  4477. var{font-size:1.2em;padding:5px;border-radius:5px;white-space:nowrap}#page-footer .performanceinfo
  4478. .span12{border-bottom-width:1px;border-bottom-style:solid}#page-footer .performanceinfo
  4479. h2{font-size:1.4em;line-height:1.4em;text-transform:uppercase;font-weight:400;padding-bottom:5px;border-bottom-width:1px;border-bottom-style:solid;margin-top:5px;margin-bottom:0}#page-footer .performanceinfo h2:before{vertical-align:bottom;font-family:FontAwesome;font-size:1.65em;content:"\f05a"}#page-footer .performanceinfo
  4480. span{display:block;margin-top:5px}#page-footer .performanceinfo
  4481. span.fa{color:inherit;display:inline;margin-top:0;font-size:1em;font-weight:100}#page-footer .performanceinfo span.fa:focus,#page-footer .performanceinfo span.fa:hover{color:inherit}.dir-ltr #page-footer .performanceinfo h2:before,.dir-ltr #page-footer .performanceinfo
  4482. span.fa{margin-right:.3em}.dir-rtl #page-footer .performanceinfo h2:before,.dir-rtl #page-footer .performanceinfo
  4483. span.fa{margin-left:.3em}body#page-admin-setting-messageinbound_mailsettings fieldset select,fieldset input[size],fieldset textarea[cols]{width:65.95744681%}@media (max-width:979px){body#page-admin-setting-messageinbound_mailsettings fieldset select,fieldset input[size],fieldset textarea[cols]{width:48.93617021%}}.dir-ltr .form-item .form-label,.dir-ltr .mform .fitem
  4484. div.fitemtitle{text-align:right}.dir-rtl .form-item .form-label,.dir-rtl .mform .fitem
  4485. div.fitemtitle{text-align:left}@media (max-width:767px){body#page-admin-setting-messageinbound_mailsettings fieldset select,fieldset input[size],fieldset textarea[cols]{width:40.42553191%}}@media (max-width:480px){body#page-admin-setting-messageinbound_mailsettings fieldset select,fieldset input[size],fieldset textarea[cols]{width:23.40425532%}}.form-item .form-label .form-overridden{font-size:1em;font-family:monospace}#region-main form .form-buttons
  4486. input{margin:0}#region-main form #fgroup_id_buttonar,#region-main form #fitem_id_submitbutton,#region-main form .form-buttons,#region-main form .fp-content-center form+div,#region-main form .path-admin .buttons,#region-main form div.backup-section+form,#region-main form table#form
  4487. td.submit{width:30%;text-align:center;margin-left:auto;margin-right:auto;z-index:101;padding:10px;border-radius:4px}#region-main form #fgroup_id_buttonar .felement,#region-main form #fitem_id_submitbutton .felement,#region-main form .form-buttons .felement,#region-main form .fp-content-center form+div .felement,#region-main form .path-admin .buttons .felement,#region-main form div.backup-section+form .felement,#region-main form table#form td.submit
  4488. .felement{margin-left:auto;margin-right:auto}#region-main form #fgroup_id_buttonar>.fgroup,#region-main form #fitem_id_submitbutton>.fgroup,#region-main form .form-buttons>.fgroup,#region-main form .fp-content-center form+div>.fgroup,#region-main form .path-admin .buttons>.fgroup,#region-main form div.backup-section+form>.fgroup,#region-main form table#form td.submit>.fgroup{margin:0;padding-top:15px}#region-main form #fgroup_id_buttonar input[type=submit],#region-main form #fitem_id_submitbutton input[type=submit],#region-main form .form-buttons input[type=submit],#region-main form .fp-content-center form+div input[type=submit],#region-main form .path-admin .buttons input[type=submit],#region-main form div.backup-section+form input[type=submit],#region-main form table#form td.submit input[type=submit]{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002b80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}#region-main form #fgroup_id_buttonar input[type=submit].active,#region-main form #fgroup_id_buttonar input[type=submit].disabled,#region-main form #fgroup_id_buttonar input[type=submit]:active,#region-main form #fgroup_id_buttonar input[type=submit]:focus,#region-main form #fgroup_id_buttonar input[type=submit]:hover,#region-main form #fgroup_id_buttonar input[type=submit][disabled],#region-main form #fitem_id_submitbutton input[type=submit].active,#region-main form #fitem_id_submitbutton input[type=submit].disabled,#region-main form #fitem_id_submitbutton input[type=submit]:active,#region-main form #fitem_id_submitbutton input[type=submit]:focus,#region-main form #fitem_id_submitbutton input[type=submit]:hover,#region-main form #fitem_id_submitbutton input[type=submit][disabled],#region-main form .form-buttons input[type=submit].active,#region-main form .form-buttons input[type=submit].disabled,#region-main form .form-buttons input[type=submit]:active,#region-main form .form-buttons input[type=submit]:focus,#region-main form .form-buttons input[type=submit]:hover,#region-main form .form-buttons input[type=submit][disabled],#region-main form .fp-content-center form+div input[type=submit].active,#region-main form .fp-content-center form+div input[type=submit].disabled,#region-main form .fp-content-center form+div input[type=submit]:active,#region-main form .fp-content-center form+div input[type=submit]:focus,#region-main form .fp-content-center form+div input[type=submit]:hover,#region-main form .fp-content-center form+div input[type=submit][disabled],#region-main form .path-admin .buttons input[type=submit].active,#region-main form .path-admin .buttons input[type=submit].disabled,#region-main form .path-admin .buttons input[type=submit]:active,#region-main form .path-admin .buttons input[type=submit]:focus,#region-main form .path-admin .buttons input[type=submit]:hover,#region-main form .path-admin .buttons input[type=submit][disabled],#region-main form div.backup-section+form input[type=submit].active,#region-main form div.backup-section+form input[type=submit].disabled,#region-main form div.backup-section+form input[type=submit]:active,#region-main form div.backup-section+form input[type=submit]:focus,#region-main form div.backup-section+form input[type=submit]:hover,#region-main form div.backup-section+form input[type=submit][disabled],#region-main form table#form td.submit input[type=submit].active,#region-main form table#form td.submit input[type=submit].disabled,#region-main form table#form td.submit input[type=submit]:active,#region-main form table#form td.submit input[type=submit]:focus,#region-main form table#form td.submit input[type=submit]:hover,#region-main form table#form td.submit input[type=submit][disabled]{color:#fff;background-color:#04c}#region-main form #fgroup_id_buttonar input[type=submit] .caret,#region-main form #fitem_id_submitbutton input[type=submit] .caret,#region-main form .form-buttons input[type=submit] .caret,#region-main form .fp-content-center form+div input[type=submit] .caret,#region-main form .path-admin .buttons input[type=submit] .caret,#region-main form div.backup-section+form input[type=submit] .caret,#region-main form table#form td.submit input[type=submit] .caret{border-top-color:#fff;border-bottom-color:#fff}#region-main form
  4489. .fdescription.required{color:#ff4500}body.desktopdevice.floatingsubmit #region-main form #fgroup_id_buttonar,body.desktopdevice.floatingsubmit #region-main form #fitem_id_submitbutton,body.desktopdevice.floatingsubmit #region-main form .form-buttons,body.desktopdevice.floatingsubmit #region-main form .fp-content-center form+div,body.desktopdevice.floatingsubmit #region-main form .path-admin .buttons,body.desktopdevice.floatingsubmit #region-main form div.backup-section+form,body.desktopdevice.floatingsubmit #region-main form table#form
  4490. td.submit{position:fixed;left:35%;bottom:30px}body.desktopdevice.floatingsubmit#page-enrol-index #region-main form #fgroup_id_buttonar,body.desktopdevice.floatingsubmit#page-enrol-index #region-main form #fitem_id_submitbutton,body.desktopdevice.floatingsubmit#page-enrol-index #region-main form .form-buttons,body.desktopdevice.floatingsubmit#page-enrol-index #region-main form .fp-content-center form+div,body.desktopdevice.floatingsubmit#page-enrol-index #region-main form .path-admin .buttons,body.desktopdevice.floatingsubmit#page-enrol-index #region-main form div.backup-section+form,body.desktopdevice.floatingsubmit#page-enrol-index #region-main form table#form td.submit,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form #fgroup_id_buttonar,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form #fitem_id_submitbutton,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form .form-buttons,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form .fp-content-center form+div,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form .path-admin .buttons,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form div.backup-section+form,body.desktopdevice.floatingsubmit#page-grade-grading-pick #region-main form table#form td.submit,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form #fgroup_id_buttonar,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form #fitem_id_submitbutton,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form .form-buttons,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form .fp-content-center form+div,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form .path-admin .buttons,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form div.backup-section+form,body.desktopdevice.floatingsubmit#page-mod-forum-post #region-main form table#form
  4491. td.submit{position:inherit;left:inherit;bottom:inherit}body#page-grade-grading-pick #region-main form
  4492. #fgroup_id_buttonar{width:90%}body#page-grade-grading-pick #region-main form #fgroup_id_buttonar fieldset input[size]{width:inherit}#page-mod-assign-grading.jsenabled .gradingoptionsform
  4493. .fitem_actionbuttons{display:none}.mform fieldset.collapsible legend
  4494. a.fheader{background-repeat:no-repeat}.dir-ltr .mform fieldset.collapsible legend
  4495. a.fheader{margin-left:0}.dir-rtl .mform fieldset.collapsible legend
  4496. a.fheader{margin-right:0}.mform fieldset a.visibleifjs
  4497. img.smallicon{padding-bottom:6px}.dir-ltr input[type=checkbox],.dir-ltr input[type=radio]{margin-right:auto}.dir-ltr input[type=checkbox]+label,.dir-ltr input[type=radio]+label{padding-right:.4em}.dir-rtl input[type=checkbox],.dir-rtl input[type=radio]{margin-left:auto}.dir-rtl input[type=checkbox]+label,.dir-rtl input[type=radio]+label{padding-left:.4em}.path-mod-forum .forumheaderlist .author,.path-mod-forum .forumheaderlist
  4498. .lastpost{white-space:normal!important}.dir-ltr .form-item .form-setting .form-colourpicker.defaultsnext{margin-right:0}.dir-rtl .form-item .form-setting .form-colourpicker.defaultsnext{margin-left:0}.availability-dialogue
  4499. label{margin-left:0;margin-right:0}.dir-ltr .availability-dialogue ul
  4500. button{margin-right:1em}.dir-rtl .availability-dialogue ul
  4501. button{margin-left:1em}select{max-width:570px}.form-description{word-break:break-word}.forumheaderlist .picture
  4502. a{display:inline-block}.forumheaderlist .picture
  4503. img{width:35px;height:35px}.dir-ltr .forumheaderlist .picture
  4504. img{margin-right:0}.dir-rtl .forumheaderlist .picture
  4505. img{margin-left:0}.forumheaderlist,.forumpost{background:#fff;border-radius:10px;border:1px
  4506. solid #E1E1E1!important;padding:10px}.path-mod-forum .forumheaderlist
  4507. td{padding:5px;word-break:break-all;word-break:break-word}.dir-ltr .path-mod-forum .forumheaderlist td:last-of-type{border-right-width:1px}.dir-rtl .path-mod-forum .forumheaderlist td:last-of-type{border-left-width:1px}.path-mod-forum .forumheaderlist tr:last-of-type
  4508. td{border-bottom-width:1px}body .forumpost
  4509. .row{display:inline-block}body .forumpost .row
  4510. .left{width:80px}body .forumpost .picture
  4511. a{display:inline-block}body .forumpost .picture
  4512. img{width:72px;height:72px}body .forumpost .content
  4513. .posting{border-top:1px dotted #ccc;padding-top:10px}body .forumpost
  4514. .subject{font-weight:400;font-size:1.2em;margin-bottom:-5px}body .forumpost
  4515. .header{margin-bottom:10px}body.dir-ltr .forumpost .picture
  4516. img.userpicture{margin-right:3px}body.dir-ltr .forumpost .row .content-mask,body.dir-ltr .forumpost .row .options,body.dir-ltr .forumpost .row
  4517. .topic{margin-left:84px}body.dir-ltr .forumpost .row .options
  4518. .commands{margin-right:4px}body.dir-rtl .forumpost .picture
  4519. img.userpicture{margin-left:3px}body.dir-rtl .forumpost .row .content-mask,body.dir-rtl .forumpost .row .options,body.dir-rtl .forumpost .row
  4520. .topic{margin-right:84px}body.dir-rtl .forumpost .row .options
  4521. .commands{margin-left:4px}.path-mod-forum .forumsearch .helptooltip,.path-mod-forum .forumsearch
  4522. input{margin:0}.forumsearch input[type=text]{font-size:12px;height:20px;width:100%}.forumsearch input[type=submit]{font-size:12px;line-height:15px;margin-top:2px}@media (min-width:768px){.forumsearch
  4523. .invisiblefieldset{position:relative;width:100%}.forumsearch .invisiblefieldset .helptooltip
  4524. a{position:absolute;bottom:2px}.dir-ltr .forumsearch .invisiblefieldset .helptooltip
  4525. a{right:0}.dir-rtl .forumsearch .invisiblefieldset .helptooltip
  4526. a{left:0}}@media (max-width:767px){.forumsearch .invisiblefieldset input[type=text]{width:310px}.forumsearch .invisiblefieldset input[type=submit]{line-height:20px;margin-top:0}.forumsearch .invisiblefieldset .helptooltip
  4527. a{margin-top:7px}.dir-ltr .forumsearch .invisiblefieldset input[type=text]{margin-right:2px}.dir-rtl .forumsearch .invisiblefieldset input[type=text]{margin-left:2px}}@media (max-width:480px){.forumsearch .invisiblefieldset input[type=text]{width:120px}}#frontpage-category-combo,#frontpage-category-names,#frontpage-course-list,#site-news-forum{background-size:4px 20px;padding-top:25px}.headingblock.header{padding:0;margin:0;font-size:1.8em;line-height:35px;color:#777}#page-site-index h2.headingblock:before{display:block;font-family:FontAwesome;font-size:.85em;height:1.3em;text-align:center;width:1.5em;content:"\f0b1"}.dir-ltr#page-site-index h2.headingblock:before{float:left;margin-right:.2em}.dir-rtl#page-site-index h2.headingblock:before{float:right;margin-left:.2em}#page-site-index #site-news-forum h2.headingblock:before{content:"\f0a1"}#frontpage-category-names h2.headingblock:before{content:"\f07c"}.coursebox .content .courseimage
  4528. img{border-radius:5px;border:3px
  4529. solid #fff}.courses
  4530. .coursebox{background:#fff;border-radius:10px;border:1px
  4531. solid #E1E1E1!important;padding:10px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.courses .coursebox.even,.courses
  4532. .coursebox.odd{background:#fff;margin-bottom:5px}.frontpagecontent{border:1px
  4533. solid #e3e3e3;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background-color:#fff;padding:2px
  4534. 10px;margin-bottom:10px}.useralerts
  4535. .close{margin-top:4px;margin-bottom:0}.dir-ltr .useralerts [class^=fa-stack]{margin-right:5px}.dir-rtl .useralerts [class^=fa-stack]{margin-left:5px}.dir-ltr .useralerts
  4536. .title{font-weight:700;margin-right:10px}.dir-rtl .useralerts
  4537. .title{font-weight:700;margin-left:10px}.back-to-top{position:fixed;top:85%;display:none;text-align:center;font:9px;text-transform:uppercase;text-decoration:none;-webkit-transition:all .3s ease 0s;-moz-transition:all .3s ease 0s;-o-transition:all .3s ease 0s;background-color:#000;background-color:rgba(0,0,0,.5);-webkit-box-shadow:0 0 1px #fff;-moz-box-shadow:0 0 1px #fff;box-shadow:0 0 1px #fff;padding:5px
  4538. 12px;color:#fff}.back-to-top [class^=icon-]{font-size:3em}.back-to-top:hover{text-decoration:none}.back-to-top a,.back-to-top a:visited{color:#fff!important}.dir-ltr .back-to-top{right:15px}.dir-rtl .back-to-top{left:15px}#marketing-spots{overflow:hidden}#marketing-spots .marketing-spot{padding:0;border-radius:5px;border:1px
  4539. solid #f1f1f1;background:#fff}#marketing-spots .marketing-spot
  4540. .title{padding:3px
  4541. 0 8px;margin:3px
  4542. 8px 4px;border-bottom:1px solid #f1f1f1;text-transform:uppercase}#marketing-spots .marketing-spot
  4543. .fa{font-size:1.2em;margin-top:3px}#marketing-spots .marketing-spot .marketing-image-container{padding-top:2px;padding-bottom:2px}#marketing-spots .marketing-spot .marketing-image-container .marketing-image{background-size:contain!important;background-position:center top!important;width:100%}#marketing-spots .marketing-spot
  4544. .content{padding:2px;position:relative}#marketing-spots .marketing-spot
  4545. .content.withbutton{padding-bottom:32px}#marketing-spots .marketing-spot .marketing-buttons{position:absolute;bottom:2px}#marketing-spots .marketing-spot .marketing-buttons a.marketing-button{display:inline-block;padding:4px
  4546. 12px;margin-left:2px;margin-right:2px;font-size:14px;line-height:20px;vertical-align:middle;cursor:pointer;border-radius:3px;border:1px
  4547. solid #d3d3d3}#marketing-spots .marketing-spot .marketing-buttons a.marketing-button.responsive{display:none}.dir-ltr #marketing-spots .marketing-spot
  4548. .fa{margin-right:8px}.dir-ltr #marketing-spots .marketing-spot .marketing-buttons{right:2px}.dir-rtl #marketing-spots .marketing-spot
  4549. .fa{margin-left:8px}.dir-rtl #marketing-spots .marketing-spot .marketing-buttons{left:2px}#page-grade-report-grader-index .generaltable .heading.r1>th,#page-grade-report-grader-index .generaltable .heading_name_row.r1>th{vertical-align:middle}#page-grade-report-grader-index
  4550. h1{clear:none}#page-grade-report-grader-index .gradeparent div:nth-of-type(2):not(.topscroll).right_scroller{padding-top:22px}#page-grade-report-grader-index .gradeparent .right_scroller
  4551. .topscroll{min-height:22px}#page-grade-report-grader-index .gradeparent div.floater.floating.lastrow .cell,#page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(odd){background-color:#fff}#page-grade-report-grader-index #page #page-content #region-main{overflow-x:visible;width:auto}.dir-ltr#page-grade-report-grader-index .generaltable
  4552. th.user{padding-right:45px}.dir-ltr#page-grade-report-grader-index .generaltable th.user
  4553. img.userpicture{float:left}.dir-ltr#page-grade-report-grader-index .generaltable .heading.r1>th,.dir-ltr#page-grade-report-grader-index .generaltable .heading_name_row.r1>th{padding-right:35px}.dir-rtl#page-grade-report-grader-index .generaltable
  4554. th.user{padding-left:45px}.dir-rtl#page-grade-report-grader-index .generaltable th.user
  4555. img.userpicture{float:right}.dir-rtl#page-grade-report-grader-index .generaltable .heading.r1>th,.dir-rtl#page-grade-report-grader-index .generaltable .heading_name_row.r1>th{padding-left:35px}.dir-rtl#page-grade-report-grader-index #page #page-content #region-main{width:100%}.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a.toggle-display,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a.toggle-display:active,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a.toggle-display:focus,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a.toggle-display:hover,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a.toggle-display:visited,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]),.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):active,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):focus,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):hover,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):visited,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a.toggle-display,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a.toggle-display:active,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a.toggle-display:focus,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a.toggle-display:hover,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a.toggle-display:visited,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]),.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):active,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):focus,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):hover,.path-grade-edit-tree .setup-grades.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):visited,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a.toggle-display,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a.toggle-display:active,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a.toggle-display:focus,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a.toggle-display:hover,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a.toggle-display:visited,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]),.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):active,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):focus,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):hover,.path-grade-report-user .user-grade.generaltable>tbody tr>td.leveleven a:not(.btn):not([role=menuitem]):visited,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a.toggle-display,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a.toggle-display:active,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a.toggle-display:focus,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a.toggle-display:hover,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a.toggle-display:visited,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]),.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):active,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):focus,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):hover,.path-grade-report-user .user-grade.generaltable>tbody tr>td.levelodd a:not(.btn):not([role=menuitem]):visited{background-color:transparent}.path-grade-report-user .generaltable.user-grade
  4556. .dimmed_text{text-decoration:line-through}table#greyboxleft,table#greyboxright{background:#F9F9F9;border:1px
  4557. solid #EEE;border-bottom:3px solid #EEE;border-radius:10px!important}.dir-ltr table#greyboxright,.dir-rtl
  4558. table#greyboxleft{margin-left:20px;float:right}.dir-ltr table#greyboxleft,.dir-rtl
  4559. table#greyboxright{margin-right:20px;float:left}table#greybox{background:#F9F9F9;border:1px
  4560. solid #EEE;border-bottom:3px solid #EEE;border-radius:10px!important;margin-top:30px}table#greyboxleft td,table#greyboxright
  4561. td{padding:0
  4562. 10px 10px;max-width:360px}table#greybox
  4563. td{padding:20px}table#greyboxleft h2,table#greyboxright
  4564. h2{border-bottom:1px solid #EEE;padding-bottom:8px;font-size:1.2em;line-height:17px}#page-header{border-bottom:1px solid #DDD}#page-header .btn-icon{display:none;padding:7px
  4565. 10px;position:absolute;top:56px;background-image:none;background-color:#ededed}#page-header .btn-icon .icon-bar{display:block;width:18px;height:2px;background-image:none;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.45);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.45);box-shadow:0 1px 1px 0 rgba(0,0,0,.45)}#page-header .btn-icon:hover{background-color:#e5e5e5}#page-header .btn-icon .icon-bar+.icon-bar{margin-top:3px}#page-header.oldnavbar .btn-icon{top:10px}#page-header
  4566. #essentialicons{overflow:visible;background-image:none}#page-header #pageheading,#page-header
  4567. h2.main{font-size:1.4em;line-height:35px;color:#777;border-bottom:1px solid #e1e1e1}#page-header
  4568. a.logo{display:block;background-size:contain;background-repeat:no-repeat}#page-header
  4569. div.titlearea{height:52px;width:100%}#page-header h1,#page-header
  4570. h2{margin:0}#page-header
  4571. h1#title{font-size:3em;padding-top:4px;line-height:40px}#page-header
  4572. h1#smalltitle{font-size:2em;line-height:20px;padding-top:12px}#page-header
  4573. h2#subtitle{font-size:1em;line-height:20px;padding-top:6px}#page-header
  4574. a.textlogo{text-decoration:none}#page-header
  4575. #headerlogo{font-size:4.5em}.dir-ltr #page-header .row-fluid [class*=span]{padding-right:5px}.dir-ltr #page-header .btn-icon{float:right;right:10px}.dir-ltr #page-header #essentialicons
  4576. button{margin:0
  4577. 0 0 5px}.dir-ltr #page-header
  4578. a.logo{float:left;background-position:left center}.dir-ltr #page-header
  4579. div.titlearea{margin-left:80px;padding-left:10px}.dir-ltr #page-header
  4580. #headerlogo{float:left;padding-right:10px;margin-right:10px}.dir-rtl #page-header .row-fluid [class*=span]{padding-left:5px}.dir-rtl #page-header .btn-icon{float:left;left:10px}.dir-rtl #page-header #essentialicons
  4581. button{margin:0
  4582. 5px 0 0}.dir-rtl #page-header
  4583. a.logo{float:right;background-position:right center}.dir-rtl #page-header
  4584. div.titlearea{margin-right:80px;padding-right:10px}.dir-rtl #page-header
  4585. #headerlogo{float:right;padding-left:10px;margin-left:10px}@media (min-width:768px){#page-header
  4586. div.titlearea{display:block!important}}@media (min-width:980px){#page-header
  4587. div.titlearea{height:64px}}#page-admin-upgradesettings #page-header,#page-header.oldnavbar,.pagelayout-maintenance #page-header,.pagelayout-redirect #page-header{margin-top:0}@media (min-width:980px){.pagewidthnarrow.custommenuitems header .navbar-inner{height:80px;max-height:80px}}.dir-ltr #mobileapps,.dir-ltr
  4588. #socialnetworks{margin-right:5px;padding-right:5px}.dir-rtl #mobileapps,.dir-rtl
  4589. #socialnetworks{margin-left:5px;padding-left:5px}#page-header.logo #mobileapps,#page-header.logo
  4590. #socialnetworks{height:80px;max-height:80px}#page-header.nologo #mobileapps,#page-header.nologo
  4591. #socialnetworks{height:52px;max-height:52px}@media (min-width:980px){#page-header.logo #mobileapps,#page-header.logo
  4592. #socialnetworks{height:80px;max-height:80px}#page-header.nologo #mobileapps,#page-header.nologo
  4593. #socialnetworks{height:64px;max-height:64px}}.socials{margin:0}.socials
  4594. p{font-weight:400;font-size:1.1em}body
  4595. button.socialicon{background-color:#bbb;border-radius:5px;border:0;font-size:1.6em;padding:5px;text-align:center;background-image:none;min-width:29px}body button.socialicon
  4596. .fa{color:#fff}body button.socialicon:focus,body button.socialicon:hover{background-image:none}body button.facebook:focus,body button.facebook:hover{background-color:#4a6ea9}body button.skype:focus,body button.skype:hover{background-color:#00adf7}body button.instagram:focus,body button.instagram:hover{background-color:#a5674a}body button.ios:focus,body button.ios:hover{background-color:#000}body button.ios:focus,body button.windows:hover{background-color:#008A00}body button.ios:focus,body button.winphone:hover{background-color:#9B4F96}body button.android:focus,body button.android:hover{background-color:#98cd32}body button.vk:focus,body button.vk:hover{background-color:#4a6ea9}body button.twitter:focus,body button.twitter:hover{background-color:#00aced}body button.googleplus:focus,body button.googleplus:hover{background-color:#f42941}body button.flickr:focus,body button.flickr:hover{background-color:#ff3096}body button a.instagram:focus,body button.instagram:hover{background-color:#b99c6b}body button.pinterest:focus,body button.pinterest:hover,body button.youtube:focus,body button.youtube:hover{background-color:#f42941}body button.linkedin:focus,body button.linkedin:hover{background-color:#4A9CC9}ul.socials{text-align:right}ul.socials
  4597. li{text-align:right;display:inline-block}#socialheading{text-align:right;letter-spacing:.2em;padding:0;margin:2px
  4598. 0 0}@media (min-width:768px){.dir-ltr.loggedin #page-header.oldnavbar
  4599. #essentialicons{right:132px}.dir-rtl.loggedin #page-header.oldnavbar
  4600. #essentialicons{left:132px}}.message{word-wrap:break-word}.messagearea{padding-bottom:60px}.messagearea #fitem_id_message
  4601. .fitemtitle{width:auto;max-width:20%}.messagearea #fitem_id_message
  4602. .felement.ftextarea{width:70%}.dir-ltr .messagearea #fitem_id_message
  4603. .felement.ftextarea{float:left;margin-left:25px}.dir-ltr .messagearea #fitem_id_submitbutton
  4604. .felement.fsubmit{margin-left:0}.dir-rtl .messagearea #fitem_id_message
  4605. .felement.ftextarea{float:right;margin-right:25px}.dir-rtl .messagearea #fitem_id_submitbutton
  4606. .felement.fsubmit{margin-right:0}.message .contactselector
  4607. .singleselect{width:100%}#page-header{margin-top:40px}#page-header.oldnavbar{margin-top:0;margin-bottom:40px}#essentialnavbar{position:fixed;top:0;left:0;width:100%;z-index:200}#essentialnavbar
  4608. .navbar{position:fixed}@media (min-width:980px){.pagewidthnarrow #page-header{margin-top:80px}.pagewidthnarrow #page-header.oldnavbar{margin-top:0;margin-bottom:80px}}div.dropdown-menu>ul{list-style:inherit;margin:0;white-space:nowrap}div.dropdown-menu>ul li
  4609. a{display:block}.dropdownmenuscroll div.dropdown-menu>ul,.dropdownsubmenuscroll li.dropdown-submenu>ul{max-height:384px;overflow-y:auto}.navbar{margin-bottom:0;width:100%;background-image:none}.navbar .navbar-inner{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:none;line-height:0;background-image:none;box-shadow:none}.navbar .navbar-inner .btn-navbar{margin:5px
  4610. 10px 0}.navbar .navbar-inner .btn-navbar .icon-bar{background-image:none;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.45);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.45);box-shadow:0 1px 1px 0 rgba(0,0,0,.45)}.navbar .navbar-inner
  4611. .brand{vertical-align:middle;text-shadow:none;line-height:40px;padding:0}.navbar .navbar-inner
  4612. ul.nav{margin:0}.navbar .navbar-inner ul.nav li.dropdown:hover>.dropdown-menu{display:block}.navbar .navbar-inner
  4613. .custom_menu{display:inline-block;vertical-align:top}.navbar .navbar-inner #custom_menu_activitystream .dropdown-menu,.navbar .navbar-inner #custom_menu_language .dropdown-menu{max-height:384px}.navbar .navbar-inner .dropdown-menu li>a:focus,.navbar .navbar-inner .dropdown-menu li>a:hover,.navbar .navbar-inner .dropdown-submenu:focus>a,.navbar .navbar-inner .dropdown-submenu:hover>a{background-image:none;text-decoration:none}.navbar .navbar-inner .dropdown
  4614. .fa{margin-right:5px}.navbar .navbar-inner .open>.dropdown-menu{overflow:visible;display:block}.navbar .navbar-inner .dropdown>.dropdown-menu{margin:0}.navbar .navbar-inner .dropdown-menu li>a:hover
  4615. .fa{color:#fff}.navbar .navbar-inner .nav>li.dropdown a,.navbar .navbar-inner .nav>li>a{text-shadow:none}.navbar .navbar-inner .nav>li>a
  4616. .fa{color:inherit}.navbar .navbar-inner .nav>li.dropdown .dropdown-menu li>a.open>.dimmed_text .fa,.navbar .navbar-inner .nav>li.dropdown .dropdown-menu li>a:hover>.dimmed_text
  4617. .fa{color:#eee}.navbar .navbar-inner
  4618. .custommenus{width:100%}.navbar .navbar-inner .usermenu .dropdown
  4619. img.userpicture{background-color:#fff;border-color:transparent;height:auto;max-width:20px;max-height:20px;vertical-align:top;width:auto}.navbar .navbar-inner .usermenu .dropdown a.dropdown-toggle{padding:9px
  4620. 15px}.navbar .navbar-inner .usermenu .dropdown .dropdown-menu{margin:0}.navbar .navbar-inner .usermenu .dropdown .dropdown-menu
  4621. .fa{width:15px}.navbar .navbar-inner .usermenu .dropdown .dropdown-menu
  4622. hr.sep{margin:0;height:0;border:none}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu{margin:0}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a{padding:0;background:#fff;overflow:hidden}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message{padding:5px
  4623. 10px}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message
  4624. .fa{margin:0
  4625. 5px}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body{display:inline-block;padding-right:80px}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-sender,.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-text,.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-time{width:100%}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message.unread{background:#eee;margin:0}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message.unread .msg-text{font-weight:700}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message.read{opacity:.75;filter:alpha(opacity=75)}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification{width:255px;padding:5px
  4626. 10px;overflow:hidden}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification
  4627. .icon{float:left;font-size:5em;margin-top:5px;margin-right:10px}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification .notification-text{width:185px;white-space:normal;font-size:12px}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification.read{opacity:.75;filter:alpha(opacity=75)}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification.unread{background:#eee;margin:0}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification.unread .msg-text{font-weight:700}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a:hover
  4628. .message{opacity:1;filter:alpha(opacity=100)}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li:first-of-type>a{border-top:none}.dir-ltr .navbar .navbar-inner .btn-navbar{float:left}.dir-ltr .navbar .navbar-inner
  4629. .brand{margin-left:0;margin-right:10px}.dir-ltr .navbar .navbar-inner .dropdown
  4630. .fa{margin-right:5px}.dir-ltr .navbar .navbar-inner .dropdown-menu li>a,.dir-ltr .navbar .navbar-inner .dropdown-submenu>a{padding:3px
  4631. 25px 3px 15px}.dir-ltr .navbar .navbar-inner .nav>li.dropdown a .fa-caret-right:before,.dir-ltr .navbar .navbar-inner .nav>li>a .fa-caret-right:before{content:"\f0da";margin-left:5px;margin-right:3px}.dir-ltr .navbar .navbar-inner .nav>li.dropdown a:hover .fa-caret-right:before,.dir-ltr .navbar .navbar-inner .nav>li.dropdown.open a .fa-caret-right:before,.dir-ltr .navbar .navbar-inner .nav>li>a:hover .fa-caret-right:before{content:"\f0d7";margin-right:0}.dir-ltr .navbar .navbar-inner
  4632. .navbarrightitem{float:right}.dir-ltr .navbar .navbar-inner .usermenu .dropdown
  4633. img.userpicture{margin-right:2px}.dir-ltr .navbar .navbar-inner .usermenu .dropdown .dropdown-submenu.preferences a.dropdown-toggle{padding:3px
  4634. 25px 3px 15px}.dir-ltr .navbar .navbar-inner .usermenu .dropdown .dropdown-menu
  4635. .fa{margin-right:5px}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav>li>a>.fa{margin-left:5px}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu{left:auto;right:10px}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-picture{float:left}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body{padding-right:80px}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-sender,.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-text,.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-time{float:left}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification
  4636. .icon{float:left;margin-right:10px}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification .notification-text{float:right}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification .msg-time{float:left;clear:right}.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu:after,.dir-ltr .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu:before{left:auto;right:10px}.dir-rtl .navbar .navbar-inner .btn-navbar{float:right}.dir-rtl .navbar .navbar-inner
  4637. .brand{margin-right:0;margin-left:10px}.dir-rtl .navbar .navbar-inner .dropdown
  4638. .fa{margin-left:5px}.dir-rtl .navbar .navbar-inner .dropdown-menu li>a,.dir-rtl .navbar .navbar-inner .dropdown-submenu>a{padding:3px
  4639. 15px 3px 25px}.dir-rtl .navbar .navbar-inner .dropdown-submenu>.dropdown-menu{left:100%;right:auto;-webkit-border-radius:0 6px 6px;-moz-border-radius:0 6px 6px;border-radius:0 6px 6px}.dir-rtl .navbar .navbar-inner .nav>li.dropdown a .fa-caret-right:before,.dir-rtl .navbar .navbar-inner .nav>li>a .fa-caret-right:before{margin-right:5px;margin-left:3px;content:"\f0d9"}.dir-rtl .navbar .navbar-inner .nav>li.dropdown a:hover .fa-caret-right:before,.dir-rtl .navbar .navbar-inner .nav>li.dropdown.open a .fa-caret-right:before,.dir-rtl .navbar .navbar-inner .nav>li>a:hover .fa-caret-right:before{content:"\f0d7";margin-left:0}.dir-rtl .navbar .navbar-inner
  4640. .navbarrightitem{float:left}.dir-rtl .navbar .navbar-inner .usermenu .dropdown
  4641. img.userpicture{margin-left:2px}.dir-rtl .navbar .navbar-inner .usermenu .dropdown .dropdown-submenu.preferences a.dropdown-toggle{padding:3px
  4642. 15px 3px 25px}.dir-rtl .navbar .navbar-inner .usermenu .dropdown .dropdown-menu
  4643. .fa{margin-left:5px}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav>li>a>.fa{margin-right:5px}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu{right:auto;left:10px}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-picture{float:right}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body{padding-left:80px}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-sender,.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-text,.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.message .msg-body span.msg-time{float:right}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification
  4644. .icon{float:right;margin-left:10px}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification .notification-text{float:left}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a>.notification .msg-time{float:right;clear:left}.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu:after,.dir-rtl .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu:before{left:10px;right:auto}#page-mod-forum-view
  4645. .notification.unread{background-color:inherit}@media (max-width:979px){.navbar .navbar-inner
  4646. .custom_menu{display:inline}}.pagelayout-popup .navbar,.pagelayout-secure
  4647. .navbar{position:relative}@media (min-width:768px){.loggedin #essentialnavbar.oldnavbar.affix-top .navbar .navbar-inner .custommenus .usermenu ul.nav .dropdown>.dropdown-toggle{font-size:12px;margin:0;padding-top:20px;padding-bottom:0;text-align:center;width:100px;max-width:100px}.loggedin #essentialnavbar.oldnavbar.affix-top .navbar .navbar-inner .custommenus .usermenu ul.nav .dropdown>.dropdown-toggle
  4648. img.userpicture{position:absolute;top:-50px;width:64px;height:64px;max-width:64px;max-height:64px}.dir-ltr.loggedin #essentialnavbar.oldnavbar.affix-top .navbar .navbar-inner .custommenus .usermenu ul.nav .dropdown>.dropdown-toggle
  4649. img.userpicture{right:32px}.dir-rtl.loggedin #essentialnavbar.oldnavbar.affix-top .navbar .navbar-inner .custommenus .usermenu ul.nav .dropdown>.dropdown-toggle
  4650. img.userpicture{left:32px}}a .colours-alternative1,a .colours-alternative2,a .colours-alternative3,a .colours-alternative4,a .colours-default{box-shadow:rgba(255,255,255,.8) 0 0 2px 3px;border-radius:2px}body.format-topcoll .course-content ul.ctopics
  4651. li.section.main{padding-bottom:20px}body.format-topcoll .course-content ul.ctopics li.section .content .toggle a h3,body.format-topcoll .course-content ul.ctopics li.section .content .toggle a h3:hover{color:inherit}body.format-noticebd .course-content ul.nbtopics li.section .content .forumpost .row
  4652. .left{width:72px}#page-mod-quiz-edit div.question div.content
  4653. div.points{margin-top:0}#page-mod-quiz-edit div.question div.content
  4654. div.questioncontrols{width:60px;position:absolute;top:.2em;display:block;background-color:transparent}#page-mod-quiz-edit div.quizpage
  4655. .pagecontent{width:100%}#page-mod-quiz-edit
  4656. div.quizcontents{display:block;width:67%}#page-mod-quiz-edit .questionbankwindow.block
  4657. div.header{border-radius:6px}#page-mod-quiz-edit .questionbankwindow.block div.header .title
  4658. h2{margin-bottom:0}#page-mod-quiz-edit .reorder div.question div.content .questionpreview
  4659. .fa{vertical-align:middle}#page-mod-quiz-edit .questionbank
  4660. select.menucategory{width:100%}#page-mod-quiz-edit ul.slots li.section li.activity
  4661. img.iconsmall{display:none}.dir-ltr#page-mod-quiz-edit div.question div.content
  4662. div.questioncontrols{float:right;right:.3em;text-align:right}.dir-ltr#page-mod-quiz-edit .pagecontrols
  4663. .singlebutton{margin-left:1.4em}.dir-ltr#page-mod-quiz-edit
  4664. .addpage{margin-right:0}.dir-ltr#page-mod-quiz-edit
  4665. div.quizcontents{clear:left;float:left}.dir-rtl#page-mod-quiz-edit div.question div.content
  4666. div.questioncontrols{float:left;left:.3em;text-align:left}.dir-rtl#page-mod-quiz-edit .pagecontrols
  4667. .singlebutton{margin-right:1.4em}.dir-rtl#page-mod-quiz-edit
  4668. .addpage{margin-left:0}.dir-rtl#page-mod-quiz-edit
  4669. div.quizcontents{clear:right;float:right}.questionbankwindow{width:100%}.questionbankwindow.block{background:#fff;padding:0
  4670. 12px;border-radius:8px;border:1px
  4671. solid #E1E1E1;margin-bottom:10px}.questionbankwindow.block .header
  4672. .title{border-bottom:0 none}.questionbankwindow.block .header .title h2:before{content:"\f128"}#page-question-preview
  4673. h1{font-size:1.5em}.formulation input[type=text],.formulation
  4674. select{max-width:100%}.search-input-wrapper>div
  4675. .fa{padding:3px
  4676. 2px 2px}.search-input-wrapper>div .fa:focus,.search-input-wrapper>div .fa:hover{border-radius:4px}.nav>.disabled>a{color:#595959}.nav>.disabled>a:hover{color:#595959;border:1px
  4677. solid #eee}.nav-tabs>li>a{border:1px
  4678. solid #eee}#printonly{display:none}@media
  4679. print{#printonly{display:block}body,html{margin:0;padding:0;background-color:transparent;color:#000;text-shadow:none}#block-region-side-post,#block-region-side-pre,#custommenu-wrap-outer,#dock,#graded_users_selector,#newmessageoverlay,#page-footer,#page-header,#topstripe,.helplink,.navbar,.tabtree,div.urlselect{display:none}#page-report-outline-user
  4680. .navbar{display:block}#page-content-wrapper{width:auto;min-width:auto}#block-region-side-post,#block-region-side-pre{width:0}.dir-ltr.side-post-only #page-content #region-main-box{left:0}.dir-rtl.side-post-only #page-content #region-main-box{right:0}.dir-ltr.side-post-only #page-content #region-post-box{margin-left:0!important}.dir-rtl.side-post-only #page-content #region-post-box{margin-right:0!important}.dir-ltr.side-post-only #page-content #main-and-pre,.dir-ltr.side-post-only #page-content #region-main{margin-left:0!important}.dir-rtl.side-post-only #page-content #main-and-pre,.dir-rtl.side-post-only #page-content #region-main{margin-right:0!important}#main-and-pre.span9,#region-main.span8{width:100%}.dir-ltr .row-fluid [class*=span].pull-right,.dir-ltr [class*=span].pull-right{float:left}.dir-rtl .row-fluid [class*=span].pull-right,.dir-rtl [class*=span].pull-right{float:right}#page #region-main .region-content{border:0
  4681. solid transparent!important;margin:0!important;padding:0!important}#page-content #region-main-box .region-content{padding:0}#page
  4682. .navbar{margin:0;padding:1em
  4683. 0;background:#fff;color:#000;text-shadow:none;font-size:1em}#page .navbar
  4684. a{color:#000;text-shadow:none;font-size:1em}.headingwrap h2.headingblock,.headingwrap h2.main,.navbar
  4685. .sep{text-shadow:none}.action-icon,.breadcrumb-button,.breadcrumb-nav,.icon,.smallicon{display:none!important}.itemicon{display:inline!important}#page.container-fluid{max-width:100%}}@media (min-width:1200px){#page-mod-quiz-edit ul.slots .activityinstance span.instancename,#page-mod-quiz-edit ul.slots li.section li.activity
  4686. .activityinstance{width:90%}}@media (max-width:979px){#page-header
  4687. h1#smalltitle{font-size:1.8em;line-height:16px;padding-top:10px}#page-header
  4688. h2#subtitle{line-height:16px;padding-top:4px}.dir-ltr #page-header
  4689. #headerlogo{margin-left:10px}.dir-rtl #page-header
  4690. #headerlogo{margin-right:10px}.navbar-inner
  4691. .brand{display:none}.navbar-inner .nav-collapse{display:block;width:100%;z-index:10;margin-left:-10px;margin-right:-10px;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.navbar-inner .nav-collapse .navbar-text{padding-left:15px;padding-right:15px}.navbar-inner .nav-collapse
  4692. .custom_menu{vertical-align:top;clear:both;width:100%}.navbar-inner .nav-collapse.collapse.in[style*="height: auto"]{min-height:40px;overflow:visible}.navbar-inner .nav-collapse.in .nav
  4693. .divider{width:100%}.navbar-inner .nav-collapse .nav>li>a{margin-bottom:0;border-radius:0}.navbar-inner .nav-collapse .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px}.navbar-inner .nav-collapse .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px}.navbar-inner .nav-collapse .open>.dropdown-menu{display:block}.navbar-inner .nav-collapse .dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;border:1px
  4694. solid rgba(0,0,0,.2);min-width:160px;padding:5px
  4695. 0;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.dir-ltr .navbar-inner .nav-collapse,.dir-ltr .navbar-inner .nav-collapse .nav>li{float:left}.dir-ltr .navbar-inner .nav-collapse .nav>li>.dropdown-menu:before{left:9px}.dir-ltr .navbar-inner .nav-collapse .nav>li>.dropdown-menu:after{left:10px}.dir-ltr .navbar-inner .nav-collapse .dropdown-menu{left:0;float:left}.dir-rtl .navbar-inner .nav-collapse,.dir-rtl .navbar-inner .nav-collapse .nav>li{float:right}.dir-rtl .navbar-inner .nav-collapse .nav>li>.dropdown-menu:before{right:9px}.dir-rtl .navbar-inner .nav-collapse .nav>li>.dropdown-menu:after{right:10px}.dir-rtl .navbar-inner .nav-collapse .dropdown-menu{right:0;float:right}#page-message-index #region-main .message .contactselector,#page-message-index #region-main .message
  4696. .messagearea{width:100%}.dir-ltr#page-message-index #region-main .message
  4697. .messagearea{border-left:transparent}.dir-rtl#page-message-index #region-main .message
  4698. .messagearea{border-right:transparent}}@media (min-width:768px) and (max-width:979px){body{font-size:13px!important;line-height:18px}#page-header
  4699. h1#smalltitle{font-size:1.5em;line-height:14px}.dir-ltr .row-fluid .desktop-first-column{margin-left:0}.dir-rtl .row-fluid .desktop-first-column{margin-right:0}#page-mod-quiz-edit ul.slots li.section li.activity
  4700. .activityinstance{width:80%}#page-mod-quiz-edit ul.slots .activityinstance
  4701. span.instancename{width:90%}}@media (max-width:767px){body{font-size:12px!important;font-weight:500;line-height:16px}.dir-ltr .row-fluid .desktop-first-column{clear:right}.dir-rtl .row-fluid .desktop-first-column{clear:left}#page.container-fluid{padding:5px}#page-header{height:auto}#page-header
  4702. h1#smalltitle{font-size:1.2em;line-height:14px;padding-top:8px}#page-header
  4703. h2#subtitle{line-height:14px;padding-top:2px}#page-header
  4704. #essentialicons{overflow:hidden;position:relative;top:0}#page-header .btn-icon{display:block}.dir-ltr #page-header
  4705. #essentialicons{float:right;right:50px}.dir-rtl #page-header
  4706. #essentialicons{float:left;left:50px}#marketing-spots .marketing-spot{margin-bottom:10px;padding-bottom:10px}#marketing-spots .marketing-spot
  4707. .button{text-align:right}#marketing-spots .marketing-spot .button .marketing-button.responsive{display:inline!important}#page-mod-quiz-edit ul.slots li.section li.activity
  4708. .activityinstance{width:80%}#page-mod-quiz-edit ul.slots .activityinstance
  4709. span.instancename{width:70%}body.has_dock #dockeditempanel
  4710. .dockeditempanel_content{width:300px}}@media (max-width:480px){#page-header
  4711. h1#title{font-size:2em}#page-mod-quiz-edit ul.slots li.section li.activity
  4712. .activityinstance{width:80%}#page-mod-quiz-edit ul.slots .activityinstance
  4713. span.instancename{width:40%}}a[name=lastused]{padding-top:50px}.user-enroller-panel,.yui3-overlay{z-index:300}.editing
  4714. .block.invisible{opacity:1;filter:alpha(opacity=100);background:rgba(255,255,255,.4)}.path-mod-feedback .generalbox div table tbody
  4715. img{height:35px}.course-content
  4716. #completionprogressid{z-index:10}table td,table
  4717. th{word-wrap:break-word}fieldset{min-width:0}body.ie
  4718. img.defaultuserpic{height:100%}audio{max-width:100%}img[style*="margin: 0 .5em;"]{margin:0!important}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px
  4719. 15px;margin-bottom:-1px;background-color:#fff;border:1px
  4720. solid #ddd}.list-group-item:first-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#595959;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#595959}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}[class*=" icon-"],[class^=icon-]{background-image:url(/theme/image.php/essential/theme/1489002274/glyphicons-halflings)}.dropdown-menu .active>a>[class*=" icon-"],.dropdown-menu .active>a>[class^=icon-],.dropdown-menu li>a:focus>[class*=" icon-"],.dropdown-menu li>a:focus>[class^=icon-],.dropdown-menu li>a:hover>[class*=" icon-"],.dropdown-menu li>a:hover>[class^=icon-],.dropdown-submenu:focus>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class^=icon-],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^=icon-],.icon-white,.nav-list>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^=icon-],.nav-pills>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^=icon-],.navbar-inverse .nav>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^=icon-]{background-image:url(/theme/image.php/essential/theme/1489002274/glyphicons-halflings-white)}.alert .fa-info{background-color:#3a87ad}.alert .fa-warning{background-color:#b94a48}.alert .fa-bullhorn{background-color:#468847}.alert .fa-info,
  4721. .alert .fa-warning,
  4722. .alert .fa-bullhorn{color:#fff}.alert .fa-info:hover,
  4723. .alert .fa-warning:hover,
  4724. .alert .fa-bullhorn:hover,
  4725. .alert .fa-info:focus,
  4726. .alert .fa-warning:focus,
  4727. .alert .fa-bullhorn:focus{color:#fff}.alert.alert-info .close
  4728. .fa{color:#3a87ad}.alert.alert-info .close:hover .fa,
  4729. .alert.alert-info .close:focus
  4730. .fa{color:#3a87ad}.alert.alert-error .close
  4731. .fa{color:#b94a48}.alert.alert-error .close:hover .fa,
  4732. .alert.alert-error .close:focus
  4733. .fa{color:#b94a48}.alert.alert-success .close
  4734. .fa{color:#468847}.alert.alert-success .close:hover .fa,
  4735. .alert.alert-success .close:focus
  4736. .fa{color:#468847}.ui-autocomplete{background-color:#fff;border-color:#c31f3c;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.ui-autocomplete-loading{background:#fff url('/theme/image.php/essential/core/1489002274/i/loading_small') right center no-repeat}.ui-autocomplete .ui-menu-item{color:#000}.ui-autocomplete .ui-menu-item:hover,
  4737. .ui-autocomplete .ui-menu-item:focus{color:#fff;background-color:#c31f3c}.backup-restore .backup-section > h2.header,
  4738. .backup-restore .backup-section .backup-sub-section
  4739. h3{color:#000}.block
  4740. .icon{color:#d0415d}.block .moodle-core-dragdrop-draghandle:before{color:#d0415d}.block .menu a.menu-action{color:#8f6a71}.block .menu a.menu-action:hover{color:#6a3842}.block .header .title h2,
  4741. .block
  4742. h3.main{color:#000}p.tree_item.leaf a>.fa{color:#d0415d}p.tree_item.leaf a:hover,
  4743. p.tree_item.leaf a:focus{color:#6a3842}p.tree_item.leaf a:hover > .fa,
  4744. p.tree_item.leaf a:focus>.fa{color:inherit}p.tree_item.branch{color:#8f6a71}p.tree_item.branch:before{color:#d0415d}p.tree_item.branch:hover,p.tree_item.branch:focus{color:#6a3842}p.tree_item.branch:hover:before,p.tree_item.branch:focus:before{color:inherit}p.tree_item.branch:hover a,
  4745. p.tree_item.branch:focus
  4746. a{color:inherit}p.tree_item.branch.emptybranch:before{color:#d0415d}p.tree_item.branch.emptybranch:hover:before,p.tree_item.branch.emptybranch:focus:before{color:#6a3842}.collapsed .tree_item.branch:before{color:#d0415d}.editing #page .block-region.yui3-dd-drop-active-valid{border-color:#c31f3c}.editing #page-footer .block-region.yui3-dd-drop-active-valid{border-color:#685f61}.breadcrumb-button input[type="submit"]{color:#fff;background-color:#c31f3c;background-image:none;border-color:#c31f3c}.breadcrumb-button input[type="submit"]:focus,
  4747. .breadcrumb-button input[type="submit"]:hover,
  4748. .breadcrumb-button input[type="submit"]:active{color:#c31f3c;background-color:#fff;background-image:none}.breadcrumb-button
  4749. .fa{color:inherit}.breadcrumb-nav{}.breadcrumb-nav ul.breadcrumb.style1
  4750. li{color:#fff;background-color:#c31f3c;border-color:#c31f3c;border-width:1px;border-style:solid}.breadcrumb-nav ul.breadcrumb.style1 li:before{border-left-color:#fff}.breadcrumb-nav ul.breadcrumb.style1 li
  4751. a{color:inherit}.breadcrumb-nav ul.breadcrumb.style1 li:after{border-left-color:#c31f3c}.breadcrumb-nav ul.breadcrumb.style1 li:first-of-type a:before{color:#fff}.breadcrumb-nav ul.breadcrumb.style1 li:hover,
  4752. .breadcrumb-nav ul.breadcrumb.style1 li:focus{background-color:#fff}.breadcrumb-nav ul.breadcrumb.style1 li:hover:before,
  4753. .breadcrumb-nav ul.breadcrumb.style1 li:focus:before{border-left-color:#c31f3c}.breadcrumb-nav ul.breadcrumb.style1 li:hover span,
  4754. .breadcrumb-nav ul.breadcrumb.style1 li:focus span,
  4755. .breadcrumb-nav ul.breadcrumb.style1 li:hover a,
  4756. .breadcrumb-nav ul.breadcrumb.style1 li:focus a,
  4757. .breadcrumb-nav ul.breadcrumb.style1 li:hover a:before,
  4758. .breadcrumb-nav ul.breadcrumb.style1 li:focus a:before{color:#c31f3c}.breadcrumb-nav ul.breadcrumb.style1 li:hover:after{border-left-color:#fff}.breadcrumb-nav ul.breadcrumb.style1 li:hover:after
  4759. a{color:#c31f3c}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:after{border-right-color:#c31f3c}.dir-rtl .breadcrumb-nav ul.breadcrumb.style1 li:hover:after{border-right-color:#fff}ul.breadcrumb.style2 li
  4760. a{color:#8f6a71}ul.breadcrumb.style2 li a:hover{color:#6a3842}body button,
  4761. body .btn-default,
  4762. body a.btn-default,
  4763. body button.btn-cancel,
  4764. body input.form-submit,
  4765. body input[type="button"],
  4766. body input[type="submit"],
  4767. body input[type="reset"],
  4768. body #notice .singlebutton + .singlebutton input,
  4769. body .submit.buttons input[name=cancel]{color:#dacdd0;text-shadow:none;background-color:#c41235;background-image:-moz-linear-gradient(bottom, #c41235, rgba(176, 16, 48, 0.25));background-image:-webkit-gradient(linear, 0 100%, 0 0, from(#c41235), to(rgba(176, 16, 48, 0.25)));background-image:-webkit-linear-gradient(bottom, #c41235, rgba(176, 16, 48, 0.25));background-image:-o-linear-gradient(bottom, #c41235, rgba(176, 16, 48, 0.25));background-image:linear-gradient(to top, #c41235, rgba(176, 16, 48, 0.25))}body button .fa,
  4770. body .btn-default .fa,
  4771. body a.btn-default .fa,
  4772. body button.btn-cancel .fa,
  4773. body input.form-submit .fa,
  4774. body input[type="button"] .fa,
  4775. body input[type="submit"] .fa,
  4776. body input[type="reset"] .fa,
  4777. body #notice .singlebutton + .singlebutton input .fa,
  4778. body .submit.buttons input[name=cancel] .fa{color:#dacdd0}body button:hover,
  4779. body .btn-default:hover,
  4780. body a.btn-default:hover,
  4781. body button.btn-cancel:hover,
  4782. body input.form-submit:hover,
  4783. body input[type="button"]:hover,
  4784. body input[type="submit"]:hover,
  4785. body input[type="reset"]:hover,
  4786. body #notice .singlebutton + .singlebutton input:hover,
  4787. body .submit.buttons input[name=cancel]:hover,
  4788. body button:focus,
  4789. body .btn-default:focus,
  4790. body a.btn-default:focus,
  4791. body button.btn-cancel:focus,
  4792. body input.form-submit:focus,
  4793. body input[type="button"]:focus,
  4794. body input[type="submit"]:focus,
  4795. body input[type="reset"]:focus,
  4796. body #notice .singlebutton + .singlebutton input:focus,
  4797. body .submit.buttons input[name=cancel]:focus,
  4798. body button:active,
  4799. body .btn-default:active,
  4800. body a.btn-default:active,
  4801. body button.btn-cancel:active,
  4802. body input.form-submit:active,
  4803. body input[type="button"]:active,
  4804. body input[type="submit"]:active,
  4805. body input[type="reset"]:active,
  4806. body #notice .singlebutton + .singlebutton input:active,
  4807. body .submit.buttons input[name=cancel]:active,
  4808. body button.active,
  4809. body .btn-default.active,
  4810. body a.btn-default.active,
  4811. body button.btn-cancel.active,
  4812. body input.form-submit.active,
  4813. body input[type="button"].active,
  4814. body input[type="submit"].active,
  4815. body input[type="reset"].active,
  4816. body #notice .singlebutton + .singlebutton input.active,
  4817. body .submit.buttons input[name=cancel].active,
  4818. body button.disabled,
  4819. body .btn-default.disabled,
  4820. body a.btn-default.disabled,
  4821. body button.btn-cancel.disabled,
  4822. body input.form-submit.disabled,
  4823. body input[type="button"].disabled,
  4824. body input[type="submit"].disabled,
  4825. body input[type="reset"].disabled,
  4826. body #notice .singlebutton + .singlebutton input.disabled,
  4827. body .submit.buttons input[name=cancel].disabled,
  4828. body button[disabled],
  4829. body .btn-default[disabled],
  4830. body a.btn-default[disabled],
  4831. body button.btn-cancel[disabled],
  4832. body input.form-submit[disabled],
  4833. body input[type="button"][disabled],
  4834. body input[type="submit"][disabled],
  4835. body input[type="reset"][disabled],
  4836. body #notice .singlebutton + .singlebutton input[disabled],
  4837. body .submit.buttons input[name=cancel][disabled]{color:#fff;text-shadow:0 1px 1px rgba(64, 64, 64, 0.75);background-color:#d0415d;background-image:-moz-linear-gradient(bottom, #d0415d, rgba(187, 59, 84, 0.25));background-image:-webkit-gradient(linear, 0 100%, 0 0, from(#d0415d), to(rgba(187, 59, 84, 0.25)));background-image:-webkit-linear-gradient(bottom, #d0415d, rgba(187, 59, 84, 0.25));background-image:-o-linear-gradient(bottom, #d0415d, rgba(187, 59, 84, 0.25));background-image:linear-gradient(to top, #d0415d, rgba(187, 59, 84, 0.25))}body button:hover .fa,
  4838. body .btn-default:hover .fa,
  4839. body a.btn-default:hover .fa,
  4840. body button.btn-cancel:hover .fa,
  4841. body input.form-submit:hover .fa,
  4842. body input[type="button"]:hover .fa,
  4843. body input[type="submit"]:hover .fa,
  4844. body input[type="reset"]:hover .fa,
  4845. body #notice .singlebutton + .singlebutton input:hover .fa,
  4846. body .submit.buttons input[name=cancel]:hover .fa,
  4847. body button:focus .fa,
  4848. body .btn-default:focus .fa,
  4849. body a.btn-default:focus .fa,
  4850. body button.btn-cancel:focus .fa,
  4851. body input.form-submit:focus .fa,
  4852. body input[type="button"]:focus .fa,
  4853. body input[type="submit"]:focus .fa,
  4854. body input[type="reset"]:focus .fa,
  4855. body #notice .singlebutton + .singlebutton input:focus .fa,
  4856. body .submit.buttons input[name=cancel]:focus .fa,
  4857. body button:active .fa,
  4858. body .btn-default:active .fa,
  4859. body a.btn-default:active .fa,
  4860. body button.btn-cancel:active .fa,
  4861. body input.form-submit:active .fa,
  4862. body input[type="button"]:active .fa,
  4863. body input[type="submit"]:active .fa,
  4864. body input[type="reset"]:active .fa,
  4865. body #notice .singlebutton + .singlebutton input:active .fa,
  4866. body .submit.buttons input[name=cancel]:active .fa,
  4867. body button.active .fa,
  4868. body .btn-default.active .fa,
  4869. body a.btn-default.active .fa,
  4870. body button.btn-cancel.active .fa,
  4871. body input.form-submit.active .fa,
  4872. body input[type="button"].active .fa,
  4873. body input[type="submit"].active .fa,
  4874. body input[type="reset"].active .fa,
  4875. body #notice .singlebutton + .singlebutton input.active .fa,
  4876. body .submit.buttons input[name=cancel].active .fa,
  4877. body button.disabled .fa,
  4878. body .btn-default.disabled .fa,
  4879. body a.btn-default.disabled .fa,
  4880. body button.btn-cancel.disabled .fa,
  4881. body input.form-submit.disabled .fa,
  4882. body input[type="button"].disabled .fa,
  4883. body input[type="submit"].disabled .fa,
  4884. body input[type="reset"].disabled .fa,
  4885. body #notice .singlebutton + .singlebutton input.disabled .fa,
  4886. body .submit.buttons input[name=cancel].disabled .fa,
  4887. body button[disabled] .fa,
  4888. body .btn-default[disabled] .fa,
  4889. body a.btn-default[disabled] .fa,
  4890. body button.btn-cancel[disabled] .fa,
  4891. body input.form-submit[disabled] .fa,
  4892. body input[type="button"][disabled] .fa,
  4893. body input[type="submit"][disabled] .fa,
  4894. body input[type="reset"][disabled] .fa,
  4895. body #notice .singlebutton + .singlebutton input[disabled] .fa,
  4896. body .submit.buttons input[name=cancel][disabled] .fa{color:#fff}a.marketing-button,a.marketing-button:visited{color:#fff;background-color:#c31f3c}a.marketing-button:hover{color:#fff;background-color:#6a3842}#essentialCarousel.carousel .carousel-inner .carousel-caption{background-color:#FFF}#essentialCarousel.carousel .carousel-inner .carousel-caption .carousel-caption-inner{max-width:100%}#essentialCarousel.carousel .carousel-inner .carousel-caption h4,
  4897. #essentialCarousel.carousel .carousel-inner .carousel-caption
  4898. div{color:#fff}#essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content{background-color:#FFF}#essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content h4,
  4899. #essentialCarousel.carousel .carousel-inner.pagebackground .the-side-caption-content
  4900. div{color:#fff}#essentialCarousel.carousel .carousel-control{color:#FFF}#essentialCarousel.carousel .carousel-control
  4901. .fa{color:inherit}#essentialCarousel.carousel .carousel-control:hover,
  4902. #essentialCarousel.carousel .carousel-control:focus{color:#FFF}#essentialCarousel.carousel .carousel-control:hover .fa,
  4903. #essentialCarousel.carousel .carousel-control:focus
  4904. .fa{color:inherit}#essentialCarousel.carousel .carousel-indicators{box-shadow:0px 0px 8px #FFF}#essentialCarousel.carousel .carousel-indicators
  4905. li{background-color:#FFF}#essentialCarousel.carousel .carousel-indicators
  4906. .active{background-color:#FFF}.categoryicons .course_category_tree .category[data-categoryid]:hover{background-color:#c31f3c}.categoryicons .course_category_tree .category[data-categoryid]:hover > .info > .categoryname
  4907. a{color:#fff}.categoryicons .course_category_tree .category[data-categoryid]:hover > .info > .categoryname a
  4908. .fa{color:inherit}img.userpicture,img.profilepicture{border-color:#c31f3c;border-radius:90px;box-shadow:0px 0px 3px #c31f3c}.moodle-actionmenu[data-enhanced].show
  4909. .menu{background-color:#fff}.moodle-actionmenu[data-enhanced].show .menu
  4910. a{color:#8f6a71}.moodle-actionmenu[data-enhanced].show .menu a:hover{color:#fff;background-color:#8f6a71}.moodle-actionmenu[data-enhanced].show .menu a:hover .fa:before{color:#fff}.listitem-category
  4911. .icon{color:#d0415d}.section-navigation{color:#000}.nav_guide{color:#000}.nav_icon{color:#c31f3c}.nav_icon:hover{color:#6a3842}body.has_dock
  4912. #dock{background-color:#c31f3c}body.has_dock #dock .dockedtitle
  4913. h2{color:#000}body.has_dock #dock .dockedtitle:hover,
  4914. body.has_dock #dock .dockedtitle:focus,
  4915. body.has_dock #dock .dockedtitle:active,
  4916. body.has_dock #dock .dockedtitle.active,
  4917. body.has_dock #dock .dockedtitle.disabled,
  4918. body.has_dock #dock .dockedtitle[disabled]{background-color:#6a3842}body.has_dock.essential-colours-alternative1
  4919. #dock{background-color: [[setting:alternativethemecolor1]]}body.has_dock.essential-colours-alternative1 #dock .dockedtitle h2,
  4920. body.has_dock.essential-colours-alternative1 #dock .dockeditempanel_hd
  4921. h2{color: [[setting:alternativethemetextcolor1]]}body.has_dock.essential-colours-alternative1 #dock .dockedtitle h2:before,
  4922. body.has_dock.essential-colours-alternative1 #dock .dockeditempanel_hd h2:before{color: [[setting:alternativethemecolor1]]}body.has_dock.essential-colours-alternative1 #dock .dockedtitle:hover,
  4923. body.has_dock.essential-colours-alternative1 #dock .dockedtitle:focus,
  4924. body.has_dock.essential-colours-alternative1 #dock .dockedtitle:active,
  4925. body.has_dock.essential-colours-alternative1 #dock .dockedtitle.active,
  4926. body.has_dock.essential-colours-alternative1 #dock .dockedtitle.disabled,
  4927. body.has_dock.essential-colours-alternative1 #dock .dockedtitle[disabled]{background-color: [[setting:alternativethemehovercolor1]]}body.has_dock.essential-colours-alternative2
  4928. #dock{background-color: [[setting:alternativethemecolor2]]}body.has_dock.essential-colours-alternative2 #dock .dockedtitle h2,
  4929. body.has_dock.essential-colours-alternative2 #dock .dockeditempanel_hd
  4930. h2{color: [[setting:alternativethemetextcolor2]]}body.has_dock.essential-colours-alternative2 #dock .dockedtitle h2:before,
  4931. body.has_dock.essential-colours-alternative2 #dock .dockeditempanel_hd h2:before{color: [[setting:alternativethemecolor2]]}body.has_dock.essential-colours-alternative2 #dock .dockedtitle:hover,
  4932. body.has_dock.essential-colours-alternative2 #dock .dockedtitle:focus,
  4933. body.has_dock.essential-colours-alternative2 #dock .dockedtitle:active,
  4934. body.has_dock.essential-colours-alternative2 #dock .dockedtitle.active,
  4935. body.has_dock.essential-colours-alternative2 #dock .dockedtitle.disabled,
  4936. body.has_dock.essential-colours-alternative2 #dock .dockedtitle[disabled]{background-color: [[setting:alternativethemehovercolor2]]}body.has_dock.essential-colours-alternative3
  4937. #dock{background-color: [[setting:alternativethemecolor3]]}body.has_dock.essential-colours-alternative3 #dock .dockedtitle h2,
  4938. body.has_dock.essential-colours-alternative3 #dock .dockeditempanel_hd
  4939. h2{color: [[setting:alternativethemetextcolor3]]}body.has_dock.essential-colours-alternative3 #dock .dockedtitle h2:before,
  4940. body.has_dock.essential-colours-alternative3 #dock .dockeditempanel_hd h2:before{color: [[setting:alternativethemecolor3]]}body.has_dock.essential-colours-alternative3 #dock .dockedtitle:hover,
  4941. body.has_dock.essential-colours-alternative3 #dock .dockedtitle:focus,
  4942. body.has_dock.essential-colours-alternative3 #dock .dockedtitle:active,
  4943. body.has_dock.essential-colours-alternative3 #dock .dockedtitle.active,
  4944. body.has_dock.essential-colours-alternative3 #dock .dockedtitle.disabled,
  4945. body.has_dock.essential-colours-alternative3 #dock .dockedtitle[disabled]{background-color: [[setting:alternativethemehovercolor3]]}body.has_dock.essential-colours-alternative4
  4946. #dock{background-color: [[setting:alternativethemecolor4]]}body.has_dock.essential-colours-alternative4 #dock .dockedtitle h2,
  4947. body.has_dock.essential-colours-alternative4 #dock .dockeditempanel_hd
  4948. h2{color: [[setting:alternativethemetextcolor4]]}body.has_dock.essential-colours-alternative4 #dock .dockedtitle h2:before,
  4949. body.has_dock.essential-colours-alternative4 #dock .dockeditempanel_hd h2:before{color: [[setting:alternativethemecolor4]]}body.has_dock.essential-colours-alternative4 #dock .dockedtitle:hover,
  4950. body.has_dock.essential-colours-alternative4 #dock .dockedtitle:focus,
  4951. body.has_dock.essential-colours-alternative4 #dock .dockedtitle:active,
  4952. body.has_dock.essential-colours-alternative4 #dock .dockedtitle.active,
  4953. body.has_dock.essential-colours-alternative4 #dock .dockedtitle.disabled,
  4954. body.has_dock.essential-colours-alternative4 #dock .dockedtitle[disabled]{background-color: [[setting:alternativethemehovercolor4]]}.menu a.menu-action > .fa,
  4955. .course-item-actions a > .fa,
  4956. .actions a>.fa{color:#d0415d}.menu a.menu-action:hover > .fa,
  4957. .course-item-actions a:hover > .fa,
  4958. .actions a:hover>.fa{color:#6a3842}.section-modchooser-link>a:before{color:#d0415d}#tinymce{color:#000;font-family:"Verdana"}#tinymce .container-fluid{max-width:100%}#tinymce h1,
  4959. #tinymce
  4960. h2{font-family:"Verdana"}#tinymce h1,
  4961. #tinymce h2,
  4962. #tinymce h3,
  4963. #tinymce h4,
  4964. #tinymce h5,
  4965. #tinymce h6,
  4966. #tinymce #adminsettings
  4967. h3{color:#000}#tinymce a,
  4968. #tinymce a:visited,
  4969. #tinymce .btn-link,
  4970. #tinymce .btn-link:visited{color:#8f6a71}#tinymce a:hover,
  4971. #tinymce a:focus,
  4972. #tinymce .btn-link:hover,
  4973. #tinymce .btn-link:focus{color:#6a3842}#tinymce a:hover:before,
  4974. #tinymce a:focus:before,
  4975. #tinymce .btn-link:hover:before,
  4976. #tinymce .btn-link:focus:before{color:#6a3842}#tinymce a:before{color:#d0415d;display:inline-block;text-decoration:none}#tinymce
  4977. .color{color:#c31f3c}body
  4978. .editor_atto_content_wrap{color:#000}.filemanager a,
  4979. .file-picker a,
  4980. .filemanager a:visited,
  4981. .file-picker a:visited{color:#8f6a71}.filemanager a:hover,
  4982. .file-picker a:hover,
  4983. .filemanager a:visited:hover,
  4984. .file-picker a:visited:hover,
  4985. .filemanager a:focus,
  4986. .file-picker a:focus,
  4987. .filemanager a:visited:focus,
  4988. .file-picker a:visited:focus{color:#6a3842}.filemanager a:hover:before,
  4989. .file-picker a:hover:before,
  4990. .filemanager a:visited:hover:before,
  4991. .file-picker a:visited:hover:before,
  4992. .filemanager a:focus:before,
  4993. .file-picker a:focus:before,
  4994. .filemanager a:visited:focus:before,
  4995. .file-picker a:visited:focus:before{color:#6a3842}select,
  4996. textarea,
  4997. input[type="text"],
  4998. input[type="password"],
  4999. input[type="datetime"],
  5000. input[type="datetime-local"],
  5001. input[type="date"],
  5002. input[type="month"],
  5003. input[type="time"],
  5004. input[type="week"],
  5005. input[type="number"],
  5006. input[type="email"],
  5007. input[type="url"],
  5008. input[type="search"],
  5009. input[type="tel"],
  5010. input[type="color"],
  5011. .uneditable-input,
  5012. .form-item .form-description,
  5013. .form-defaultinfo,
  5014. .form-label .form-shortname,
  5015. .mform legend,
  5016. .mform legend
  5017. a{color:#000}select:focus,
  5018. textarea:focus,
  5019. input[type="text"]:focus,
  5020. input[type="password"]:focus,
  5021. input[type="datetime"]:focus,
  5022. input[type="datetime-local"]:focus,
  5023. input[type="date"]:focus,
  5024. input[type="month"]:focus,
  5025. input[type="time"]:focus,
  5026. input[type="week"]:focus,
  5027. input[type="number"]:focus,
  5028. input[type="email"]:focus,
  5029. input[type="url"]:focus,
  5030. input[type="search"]:focus,
  5031. input[type="tel"]:focus,
  5032. input[type="color"]:focus,
  5033. .uneditable-input:focus,
  5034. .form-item .form-description:focus,
  5035. .form-defaultinfo:focus,
  5036. .form-label .form-shortname:focus,
  5037. .mform legend:focus,
  5038. .mform legend a:focus{border-color:rgba(195, 31, 60, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(195, 31, 60, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(195, 31, 60, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(195, 31, 60, 0.6)}#page form .form-buttons #fgroup_id_buttonar,
  5039. #page form table#form td.submit #fgroup_id_buttonar,
  5040. #page form .path-admin .buttons #fgroup_id_buttonar,
  5041. #page form #fitem_id_submitbutton #fgroup_id_buttonar,
  5042. #page form .fp-content-center form + div #fgroup_id_buttonar,
  5043. #page form div.backup-section + form #fgroup_id_buttonar,
  5044. #page form #fgroup_id_buttonar #fgroup_id_buttonar,
  5045. #page form fieldset:last-of-type.hidden
  5046. #fgroup_id_buttonar{background-color:#c31f3c}#page form
  5047. #fitem_id_submitbutton{background-color:#c31f3c}#page form .form-buttons,
  5048. #region-main form .form-buttons,
  5049. #page form #fgroup_id_buttonar,
  5050. #region-main form
  5051. #fgroup_id_buttonar{background-color:#c31f3c;border-top:1px solid #d0415d}body#page-grade-grading-pick #region-main form #fgroup_id_buttonar
  5052. label{color:#fff}#marketing-spots{overflow:hidden}#marketing-spots .marketing-spot
  5053. h5{color:#c31f3c}#marketing-spots .marketing-spot #marketing-image1{background-image:none}#marketing-spots .marketing-spot #marketing-image2{background-image:none}#marketing-spots .marketing-spot #marketing-image3{background-image:none}#marketing-spots .marketing-spot .marketing-image{height:100px;background-repeat:no-repeat}#marketing-spots.withimage .marketing-spot{min-height:232px}#marketing-spots.withimage.withbutton .marketing-spot{min-height:264px}#marketing-spots.noimages .marketing-spot{min-height:100px}#marketing-spots.noimages.withbutton .marketing-spot{min-height:132px}.path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven,
  5054. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven,
  5055. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven,
  5056. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven,
  5057. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd,
  5058. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd,
  5059. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd,
  5060. .path-grade-edit-tree .setup-grades.generaltable>tbody>tr:nth-child(odd)>td.levelodd{color:#000}.path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]),
  5061. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]),
  5062. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]),
  5063. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]),
  5064. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]),
  5065. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]),
  5066. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]),
  5067. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]),
  5068. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):visited,
  5069. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):visited,
  5070. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):visited,
  5071. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):visited,
  5072. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):visited,
  5073. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):visited,
  5074. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):visited,
  5075. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):visited,
  5076. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display,
  5077. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display,
  5078. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display,
  5079. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display,
  5080. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display,
  5081. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display,
  5082. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display,
  5083. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display,
  5084. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:visited,
  5085. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:visited,
  5086. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:visited,
  5087. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:visited,
  5088. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:visited,
  5089. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:visited,
  5090. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:visited,
  5091. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:visited{color:#8f6a71}.path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):hover,
  5092. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):hover,
  5093. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):hover,
  5094. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):hover,
  5095. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):hover,
  5096. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):hover,
  5097. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):hover,
  5098. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):hover,
  5099. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):focus,
  5100. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):focus,
  5101. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):focus,
  5102. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):focus,
  5103. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):focus,
  5104. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):focus,
  5105. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):focus,
  5106. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):focus,
  5107. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):active,
  5108. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a:not(.btn):not([role="menuitem"]):active,
  5109. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):active,
  5110. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a:not(.btn):not([role="menuitem"]):active,
  5111. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):active,
  5112. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a:not(.btn):not([role="menuitem"]):active,
  5113. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):active,
  5114. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a:not(.btn):not([role="menuitem"]):active,
  5115. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:hover,
  5116. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:hover,
  5117. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:hover,
  5118. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:hover,
  5119. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:hover,
  5120. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:hover,
  5121. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:hover,
  5122. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:hover,
  5123. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:focus,
  5124. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:focus,
  5125. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:focus,
  5126. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:focus,
  5127. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:focus,
  5128. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:focus,
  5129. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:focus,
  5130. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:focus,
  5131. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:active,
  5132. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.leveleven a.toggle-display:active,
  5133. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:active,
  5134. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.leveleven a.toggle-display:active,
  5135. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:active,
  5136. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > th.levelodd a.toggle-display:active,
  5137. .path-grade-report-user .user-grade.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:active,
  5138. .path-grade-edit-tree .setup-grades.generaltable > tbody > tr:nth-child(odd) > td.levelodd a.toggle-display:active{color:#6a3842}.path-grade-report-user .user-grade.generaltable > tbody tr:hover > td,
  5139. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td,
  5140. .path-grade-report-user .user-grade.generaltable > tbody tr:hover > td > h3,
  5141. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td > h3,
  5142. .path-grade-report-user .user-grade.generaltable > tbody tr:hover > th,
  5143. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover>th{color:#000}.path-grade-report-user .user-grade.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5144. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5145. .path-grade-report-user .user-grade.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5146. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited{color:#8f6a71}.path-grade-report-user .user-grade.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5147. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5148. .path-grade-report-user .user-grade.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5149. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5150. .path-grade-report-user .user-grade.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5151. .path-grade-edit-tree .setup-grades.generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active{color:#6a3842}#page-header{color:#217a94}#page-header.logo{height:80px;max-height:80px}#page-header.nologo{height:52px;max-height:52px}#page-header
  5152. h1#title{color:#217a94}#page-header
  5153. h1#smalltitle{color:#217a94}#page-header
  5154. h2#subtitle{color:#217a94}#page-header
  5155. #headerlogo{color:#d0415d}#page-header .btn-icon .icon-bar{background-color:#c31f3c}#page-header
  5156. a.logo{background-image:url('//www.cours-de-chinois.com/pluginfile.php/1/theme_essential/logo/1489002274/logo-cours-de-chinois.png');height:80px;width:350px}.dir-ltr #page-header
  5157. div.titlearea{border-left:1px dotted #c31f3c}.dir-rtl #page-header
  5158. div.titlearea{border-right:1px dotted #c31f3c}@media (min-width: 980px){#page-header.nologo{height:64px;max-height:64px}}button.website:hover,button.website:focus{background-color:#c31f3c}.socials{margin:0px}.socials
  5159. p{color:#217a94}.dir-ltr
  5160. #mobileapps{border-right:1px dotted #c31f3c}.dir-rtl
  5161. #mobileapps{border-left:1px dotted #c31f3c}#essentialnavbar.oldnavbar.logo{top:80px}#essentialnavbar.oldnavbar.nologo{top:52px}@media (min-width: 980px){#essentialnavbar.oldnavbar.nologo{top:64px}}#essentialnavbar.affix.oldnavbar{top:0}.navbar .navbar-inner
  5162. .brand{color:#fff}.navbar .navbar-inner .btn-navbar .icon-bar{background-color:#c31f3c}.navbar .navbar-inner .dropdown-menu{border:1px
  5163. solid #c31f3c}.navbar .navbar-inner .nav > li.dropdown a,
  5164. .navbar .navbar-inner .nav > li > a,
  5165. .navbar .navbar-inner .search-input-wrapper > div
  5166. .fa{color:#fff}.navbar .navbar-inner .nav > li.dropdown a:hover,
  5167. .navbar .navbar-inner .nav > li > a:hover,
  5168. .navbar .navbar-inner .search-input-wrapper > div .fa:hover,
  5169. .navbar .navbar-inner .nav > li.dropdown a:focus,
  5170. .navbar .navbar-inner .nav > li > a:focus,
  5171. .navbar .navbar-inner .search-input-wrapper > div .fa:focus{color:#c31f3c;background-color:#fff}.navbar .navbar-inner #custom_menu_courses .dropdown-menu li>a>span.onlyenrolled{background-color:#a3ebff}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li>a{color:#8f6a71}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li>a:hover{color:#fff;background-color:#8f6a71}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li > a:focus,
  5172. .navbar .navbar-inner .nav > li.dropdown .dropdown-menu li>a.open{color:#fff;background-color:#8f6a71}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li > a:focus .fa,
  5173. .navbar .navbar-inner .nav > li.dropdown .dropdown-menu li > a.open
  5174. .fa{color:#fff}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li > a:hover
  5175. .dimmed_text{color:#eee}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li.dropdown-submenu:hover>a{color:#fff;background-color:#8f6a71}.navbar .navbar-inner .nav > li.dropdown .dropdown-menu li.dropdown-submenu:hover > a
  5176. .fa{color:inherit}.navbar .navbar-inner .nav li.dropdown.open > .dropdown-toggle,
  5177. .navbar .navbar-inner .nav li.dropdown.active > .dropdown-toggle,
  5178. .navbar .navbar-inner .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#6a3842}.navbar .navbar-inner .usermenu .dropdown
  5179. img.userpicture{border-radius:4px}.navbar .navbar-inner .usermenu .dropdown .dropdown-menu{border:1px
  5180. solid #c31f3c}.navbar .navbar-inner .usermenu .dropdown .dropdown-menu
  5181. hr.sep{border-bottom:1px dotted #c31f3c}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu{border:1px
  5182. solid #c31f3c}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li>a{border-top:1px dotted #c31f3c}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li > a:hover .message,
  5183. .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li > a:hover
  5184. .notification{color:#fff;background-color:#6a3842}.navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li > a:hover .message img.userpicture,
  5185. .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li > a:hover .notification img.userpicture,
  5186. .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li > a:hover .message img.profilepicture,
  5187. .navbar .navbar-inner .messagemenu ul.nav .dropdown-menu li > a:hover .notification
  5188. img.profilepicture{box-shadow:0 0 3px #fff}.navbar-inner .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after{border-left-color:#d0415d}.navbar-inner .nav .dropdown-menu .dropdown-submenu:focus .dropdown-toggle:after,
  5189. .navbar-inner .nav .dropdown-menu .dropdown-submenu:hover .dropdown-toggle:after{border-left-color:#fff}@media (max-width: 979px){.navbar .nav-collapse.in .nav .dropdown-submenu .dropdown-toggle:after,
  5190. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after{border-top-color:#d0415d}.navbar .nav-collapse.in .nav .dropdown-submenu:focus .dropdown-toggle:after,
  5191. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:focus .dropdown-toggle:after,
  5192. .navbar .nav-collapse.in .nav .dropdown-submenu:hover .dropdown-toggle:after,
  5193. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover .dropdown-toggle:after{border-top-color:#fff}.navbar .nav-collapse.in .nav .dropdown-submenu.open > a,
  5194. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu.open > a,
  5195. .navbar .nav-collapse.in .nav .dropdown-submenu:hover.open > a,
  5196. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover.open>a{color:#fff;background-color:#c31f3c}.navbar .nav-collapse.in .nav .dropdown-submenu.open > a.dropdown-toggle:after,
  5197. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu.open > a.dropdown-toggle:after,
  5198. .navbar .nav-collapse.in .nav .dropdown-submenu:hover.open > a.dropdown-toggle:after,
  5199. .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu:hover.open>a.dropdown-toggle:after{border-top-color:#fff}.dir-ltr .navbar .nav-collapse.in .nav .dropdown-submenu .dropdown-toggle:after,
  5200. .dir-ltr .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after{border-left-color:transparent}.dir-rtl .navbar .nav-collapse.in .nav .dropdown-submenu .dropdown-toggle:after,
  5201. .dir-rtl .navbar .nav-collapse.in .nav .dropdown-menu .dropdown-submenu .dropdown-toggle:after{border-right-color:transparent}}.dropdownmenuscroll div.dropdown-menu > ul,
  5202. .dropdownsubmenuscroll li.dropdown-submenu>ul{max-height:384px}@media
  5203. print{.navbar
  5204. .sep{color:#c31f3c}}@media (max-width: 979px){.navbar .navbar-inner .nav-collapse .nav > li.dropdown .dropdown-menu li>a{color:#c31f3c}.navbar .navbar-inner .nav-collapse .nav > li.dropdown .dropdown-menu li > a:hover,
  5205. .navbar .navbar-inner .nav-collapse .nav > li.dropdown .dropdown-menu li>a.open{color:#fff;background-color:#c31f3c}.navbar .navbar-inner .nav-collapse .nav > li.dropdown .dropdown-menu li > a:hover .fa,
  5206. .navbar .navbar-inner .nav-collapse .nav > li.dropdown .dropdown-menu li > a.open
  5207. .fa{color:inherit}.navbar .navbar-inner .nav-collapse .nav li.dropdown .dropdown-menu{background-color:#fff;color:#c31f3c}}.path-grade-report .gradeparent tr:nth-of-type(even) .cell,
  5208. .path-grade-report .gradeparent .floater .cell,
  5209. .path-grade-report .gradeparent
  5210. .avg{color:#685f61;background-color:#d9d7d8}.path-grade-report .gradeparent tr:nth-of-type(even) .cell a,
  5211. .path-grade-report .gradeparent .floater .cell a,
  5212. .path-grade-report .gradeparent .avg a,
  5213. .path-grade-report .gradeparent tr:nth-of-type(even) .cell a:hover,
  5214. .path-grade-report .gradeparent .floater .cell a:hover,
  5215. .path-grade-report .gradeparent .avg a:hover,
  5216. .path-grade-report .gradeparent tr:nth-of-type(even) .cell a:focus,
  5217. .path-grade-report .gradeparent .floater .cell a:focus,
  5218. .path-grade-report .gradeparent .avg a:focus,
  5219. .path-grade-report .gradeparent tr:nth-of-type(even) .cell a:visited,
  5220. .path-grade-report .gradeparent .floater .cell a:visited,
  5221. .path-grade-report .gradeparent .avg a:visited,
  5222. .path-grade-report .gradeparent tr:nth-of-type(even) .cell .fa,
  5223. .path-grade-report .gradeparent .floater .cell .fa,
  5224. .path-grade-report .gradeparent .avg
  5225. .fa{color:#25849f}#page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(even){color:#685f61}#page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(even) a,
  5226. #page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(even) a:hover,
  5227. #page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(even) a:focus,
  5228. #page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(even) a:visited{color:#25849f}#page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(odd) a,
  5229. #page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(odd) a:visited{color:#8f6a71}#page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(odd) a:hover,
  5230. #page-grade-report-grader-index .gradeparent div.floater:first-of-type .cell:nth-child(odd) a:focus{color:#6a3842}.path-grade-report .gradeparent .avg.lastrow,
  5231. #page-grade-report-grader-index .gradeparent div.floater.floating.lastrow
  5232. .cell{color:#000}.path-grade-report-grader .gradeparent .user.cell
  5233. .userpicture{background-color:#fff}table#explaincaps tbody > tr:nth-child(odd) > td,
  5234. table#defineroletable tbody > tr:nth-child(odd) > td,
  5235. table.grading-report tbody > tr:nth-child(odd) > td,
  5236. table#listdirectories tbody > tr:nth-child(odd) > td,
  5237. table.rolecaps tbody > tr:nth-child(odd) > td,
  5238. table.userenrolment tbody > tr:nth-child(odd) > td,
  5239. table#form tbody > tr:nth-child(odd) > td,
  5240. form#movecourses table tbody > tr:nth-child(odd) > td,
  5241. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td,
  5242. .forumheaderlist tbody > tr:nth-child(odd) > td,
  5243. table.flexible tbody > tr:nth-child(odd) > td,
  5244. .generaltable tbody > tr:nth-child(odd) > td,
  5245. table#explaincaps tbody > tr:nth-child(odd) > th,
  5246. table#defineroletable tbody > tr:nth-child(odd) > th,
  5247. table.grading-report tbody > tr:nth-child(odd) > th,
  5248. table#listdirectories tbody > tr:nth-child(odd) > th,
  5249. table.rolecaps tbody > tr:nth-child(odd) > th,
  5250. table.userenrolment tbody > tr:nth-child(odd) > th,
  5251. table#form tbody > tr:nth-child(odd) > th,
  5252. form#movecourses table tbody > tr:nth-child(odd) > th,
  5253. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th,
  5254. .forumheaderlist tbody > tr:nth-child(odd) > th,
  5255. table.flexible tbody > tr:nth-child(odd) > th,
  5256. .generaltable tbody>tr:nth-child(odd)>th{color:#685f61;background-color:#d9d7d8}table#explaincaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5257. table#defineroletable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5258. table.grading-report tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5259. table#listdirectories tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5260. table.rolecaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5261. table.userenrolment tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5262. table#form tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5263. form#movecourses table tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5264. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5265. .forumheaderlist tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5266. table.flexible tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5267. .generaltable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]),
  5268. table#explaincaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5269. table#defineroletable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5270. table.grading-report tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5271. table#listdirectories tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5272. table.rolecaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5273. table.userenrolment tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5274. table#form tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5275. form#movecourses table tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5276. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5277. .forumheaderlist tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5278. table.flexible tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5279. .generaltable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]),
  5280. table#explaincaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5281. table#defineroletable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5282. table.grading-report tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5283. table#listdirectories tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5284. table.rolecaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5285. table.userenrolment tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5286. table#form tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5287. form#movecourses table tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5288. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5289. .forumheaderlist tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5290. table.flexible tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5291. .generaltable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):hover,
  5292. table#explaincaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5293. table#defineroletable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5294. table.grading-report tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5295. table#listdirectories tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5296. table.rolecaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5297. table.userenrolment tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5298. table#form tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5299. form#movecourses table tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5300. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5301. .forumheaderlist tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5302. table.flexible tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5303. .generaltable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):hover,
  5304. table#explaincaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5305. table#defineroletable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5306. table.grading-report tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5307. table#listdirectories tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5308. table.rolecaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5309. table.userenrolment tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5310. table#form tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5311. form#movecourses table tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5312. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5313. .forumheaderlist tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5314. table.flexible tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5315. .generaltable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):focus,
  5316. table#explaincaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5317. table#defineroletable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5318. table.grading-report tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5319. table#listdirectories tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5320. table.rolecaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5321. table.userenrolment tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5322. table#form tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5323. form#movecourses table tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5324. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5325. .forumheaderlist tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5326. table.flexible tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5327. .generaltable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):focus,
  5328. table#explaincaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5329. table#defineroletable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5330. table.grading-report tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5331. table#listdirectories tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5332. table.rolecaps tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5333. table.userenrolment tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5334. table#form tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5335. form#movecourses table tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5336. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5337. .forumheaderlist tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5338. table.flexible tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5339. .generaltable tbody > tr:nth-child(odd) > td a:not(.btn):not([role="menuitem"]):visited,
  5340. table#explaincaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5341. table#defineroletable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5342. table.grading-report tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5343. table#listdirectories tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5344. table.rolecaps tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5345. table.userenrolment tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5346. table#form tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5347. form#movecourses table tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5348. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5349. .forumheaderlist tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5350. table.flexible tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5351. .generaltable tbody > tr:nth-child(odd) > th a:not(.btn):not([role="menuitem"]):visited,
  5352. table#explaincaps tbody > tr:nth-child(odd) > td a.toggle-display,
  5353. table#defineroletable tbody > tr:nth-child(odd) > td a.toggle-display,
  5354. table.grading-report tbody > tr:nth-child(odd) > td a.toggle-display,
  5355. table#listdirectories tbody > tr:nth-child(odd) > td a.toggle-display,
  5356. table.rolecaps tbody > tr:nth-child(odd) > td a.toggle-display,
  5357. table.userenrolment tbody > tr:nth-child(odd) > td a.toggle-display,
  5358. table#form tbody > tr:nth-child(odd) > td a.toggle-display,
  5359. form#movecourses table tbody > tr:nth-child(odd) > td a.toggle-display,
  5360. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a.toggle-display,
  5361. .forumheaderlist tbody > tr:nth-child(odd) > td a.toggle-display,
  5362. table.flexible tbody > tr:nth-child(odd) > td a.toggle-display,
  5363. .generaltable tbody > tr:nth-child(odd) > td a.toggle-display,
  5364. table#explaincaps tbody > tr:nth-child(odd) > th a.toggle-display,
  5365. table#defineroletable tbody > tr:nth-child(odd) > th a.toggle-display,
  5366. table.grading-report tbody > tr:nth-child(odd) > th a.toggle-display,
  5367. table#listdirectories tbody > tr:nth-child(odd) > th a.toggle-display,
  5368. table.rolecaps tbody > tr:nth-child(odd) > th a.toggle-display,
  5369. table.userenrolment tbody > tr:nth-child(odd) > th a.toggle-display,
  5370. table#form tbody > tr:nth-child(odd) > th a.toggle-display,
  5371. form#movecourses table tbody > tr:nth-child(odd) > th a.toggle-display,
  5372. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a.toggle-display,
  5373. .forumheaderlist tbody > tr:nth-child(odd) > th a.toggle-display,
  5374. table.flexible tbody > tr:nth-child(odd) > th a.toggle-display,
  5375. .generaltable tbody > tr:nth-child(odd) > th a.toggle-display,
  5376. table#explaincaps tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5377. table#defineroletable tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5378. table.grading-report tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5379. table#listdirectories tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5380. table.rolecaps tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5381. table.userenrolment tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5382. table#form tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5383. form#movecourses table tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5384. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5385. .forumheaderlist tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5386. table.flexible tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5387. .generaltable tbody > tr:nth-child(odd) > td a.toggle-display:visited,
  5388. table#explaincaps tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5389. table#defineroletable tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5390. table.grading-report tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5391. table#listdirectories tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5392. table.rolecaps tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5393. table.userenrolment tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5394. table#form tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5395. form#movecourses table tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5396. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5397. .forumheaderlist tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5398. table.flexible tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5399. .generaltable tbody > tr:nth-child(odd) > th a.toggle-display:visited,
  5400. table#explaincaps tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5401. table#defineroletable tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5402. table.grading-report tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5403. table#listdirectories tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5404. table.rolecaps tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5405. table.userenrolment tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5406. table#form tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5407. form#movecourses table tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5408. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5409. .forumheaderlist tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5410. table.flexible tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5411. .generaltable tbody > tr:nth-child(odd) > td a.toggle-display:hover,
  5412. table#explaincaps tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5413. table#defineroletable tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5414. table.grading-report tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5415. table#listdirectories tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5416. table.rolecaps tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5417. table.userenrolment tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5418. table#form tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5419. form#movecourses table tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5420. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5421. .forumheaderlist tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5422. table.flexible tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5423. .generaltable tbody > tr:nth-child(odd) > th a.toggle-display:hover,
  5424. table#explaincaps tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5425. table#defineroletable tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5426. table.grading-report tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5427. table#listdirectories tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5428. table.rolecaps tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5429. table.userenrolment tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5430. table#form tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5431. form#movecourses table tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5432. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5433. .forumheaderlist tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5434. table.flexible tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5435. .generaltable tbody > tr:nth-child(odd) > td a.toggle-display:focus,
  5436. table#explaincaps tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5437. table#defineroletable tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5438. table.grading-report tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5439. table#listdirectories tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5440. table.rolecaps tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5441. table.userenrolment tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5442. table#form tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5443. form#movecourses table tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5444. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5445. .forumheaderlist tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5446. table.flexible tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5447. .generaltable tbody > tr:nth-child(odd) > th a.toggle-display:focus,
  5448. table#explaincaps tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5449. table#defineroletable tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5450. table.grading-report tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5451. table#listdirectories tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5452. table.rolecaps tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5453. table.userenrolment tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5454. table#form tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5455. form#movecourses table tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5456. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5457. .forumheaderlist tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5458. table.flexible tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5459. .generaltable tbody > tr:nth-child(odd) > td a.toggle-display:active,
  5460. table#explaincaps tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5461. table#defineroletable tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5462. table.grading-report tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5463. table#listdirectories tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5464. table.rolecaps tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5465. table.userenrolment tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5466. table#form tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5467. form#movecourses table tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5468. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5469. .forumheaderlist tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5470. table.flexible tbody > tr:nth-child(odd) > th a.toggle-display:active,
  5471. .generaltable tbody > tr:nth-child(odd) > th a.toggle-display:active{color:#25849f}table#explaincaps tbody > tr:nth-child(odd) > td .fa,
  5472. table#defineroletable tbody > tr:nth-child(odd) > td .fa,
  5473. table.grading-report tbody > tr:nth-child(odd) > td .fa,
  5474. table#listdirectories tbody > tr:nth-child(odd) > td .fa,
  5475. table.rolecaps tbody > tr:nth-child(odd) > td .fa,
  5476. table.userenrolment tbody > tr:nth-child(odd) > td .fa,
  5477. table#form tbody > tr:nth-child(odd) > td .fa,
  5478. form#movecourses table tbody > tr:nth-child(odd) > td .fa,
  5479. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td .fa,
  5480. .forumheaderlist tbody > tr:nth-child(odd) > td .fa,
  5481. table.flexible tbody > tr:nth-child(odd) > td .fa,
  5482. .generaltable tbody > tr:nth-child(odd) > td .fa,
  5483. table#explaincaps tbody > tr:nth-child(odd) > td .fa:hover,
  5484. table#defineroletable tbody > tr:nth-child(odd) > td .fa:hover,
  5485. table.grading-report tbody > tr:nth-child(odd) > td .fa:hover,
  5486. table#listdirectories tbody > tr:nth-child(odd) > td .fa:hover,
  5487. table.rolecaps tbody > tr:nth-child(odd) > td .fa:hover,
  5488. table.userenrolment tbody > tr:nth-child(odd) > td .fa:hover,
  5489. table#form tbody > tr:nth-child(odd) > td .fa:hover,
  5490. form#movecourses table tbody > tr:nth-child(odd) > td .fa:hover,
  5491. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td .fa:hover,
  5492. .forumheaderlist tbody > tr:nth-child(odd) > td .fa:hover,
  5493. table.flexible tbody > tr:nth-child(odd) > td .fa:hover,
  5494. .generaltable tbody > tr:nth-child(odd) > td .fa:hover,
  5495. table#explaincaps tbody > tr:nth-child(odd) > td .fa:focus,
  5496. table#defineroletable tbody > tr:nth-child(odd) > td .fa:focus,
  5497. table.grading-report tbody > tr:nth-child(odd) > td .fa:focus,
  5498. table#listdirectories tbody > tr:nth-child(odd) > td .fa:focus,
  5499. table.rolecaps tbody > tr:nth-child(odd) > td .fa:focus,
  5500. table.userenrolment tbody > tr:nth-child(odd) > td .fa:focus,
  5501. table#form tbody > tr:nth-child(odd) > td .fa:focus,
  5502. form#movecourses table tbody > tr:nth-child(odd) > td .fa:focus,
  5503. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td .fa:focus,
  5504. .forumheaderlist tbody > tr:nth-child(odd) > td .fa:focus,
  5505. table.flexible tbody > tr:nth-child(odd) > td .fa:focus,
  5506. .generaltable tbody > tr:nth-child(odd) > td .fa:focus{color:#685f61}table#explaincaps tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5507. table#defineroletable tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5508. table.grading-report tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5509. table#listdirectories tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5510. table.rolecaps tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5511. table.userenrolment tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5512. table#form tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5513. form#movecourses table tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5514. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5515. .forumheaderlist tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5516. table.flexible tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5517. .generaltable tbody > tr:nth-child(odd) > td a[role="menuitem"] .fa,
  5518. table#explaincaps tbody > tr:nth-child(odd) > td .fa:hover,
  5519. table#defineroletable tbody > tr:nth-child(odd) > td .fa:hover,
  5520. table.grading-report tbody > tr:nth-child(odd) > td .fa:hover,
  5521. table#listdirectories tbody > tr:nth-child(odd) > td .fa:hover,
  5522. table.rolecaps tbody > tr:nth-child(odd) > td .fa:hover,
  5523. table.userenrolment tbody > tr:nth-child(odd) > td .fa:hover,
  5524. table#form tbody > tr:nth-child(odd) > td .fa:hover,
  5525. form#movecourses table tbody > tr:nth-child(odd) > td .fa:hover,
  5526. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td .fa:hover,
  5527. .forumheaderlist tbody > tr:nth-child(odd) > td .fa:hover,
  5528. table.flexible tbody > tr:nth-child(odd) > td .fa:hover,
  5529. .generaltable tbody > tr:nth-child(odd) > td .fa:hover,
  5530. table#explaincaps tbody > tr:nth-child(odd) > td .fa:focus,
  5531. table#defineroletable tbody > tr:nth-child(odd) > td .fa:focus,
  5532. table.grading-report tbody > tr:nth-child(odd) > td .fa:focus,
  5533. table#listdirectories tbody > tr:nth-child(odd) > td .fa:focus,
  5534. table.rolecaps tbody > tr:nth-child(odd) > td .fa:focus,
  5535. table.userenrolment tbody > tr:nth-child(odd) > td .fa:focus,
  5536. table#form tbody > tr:nth-child(odd) > td .fa:focus,
  5537. form#movecourses table tbody > tr:nth-child(odd) > td .fa:focus,
  5538. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td .fa:focus,
  5539. .forumheaderlist tbody > tr:nth-child(odd) > td .fa:focus,
  5540. table.flexible tbody > tr:nth-child(odd) > td .fa:focus,
  5541. .generaltable tbody > tr:nth-child(odd) > td .fa:focus{color:inherit}table#explaincaps tbody > tr > td img.userpicture,
  5542. table#defineroletable tbody > tr > td img.userpicture,
  5543. table.grading-report tbody > tr > td img.userpicture,
  5544. table#listdirectories tbody > tr > td img.userpicture,
  5545. table.rolecaps tbody > tr > td img.userpicture,
  5546. table.userenrolment tbody > tr > td img.userpicture,
  5547. table#form tbody > tr > td img.userpicture,
  5548. form#movecourses table tbody > tr > td img.userpicture,
  5549. #page-admin-course-index .editcourse tbody > tr > td img.userpicture,
  5550. .forumheaderlist tbody > tr > td img.userpicture,
  5551. table.flexible tbody > tr > td img.userpicture,
  5552. .generaltable tbody > tr > td img.userpicture,
  5553. table#explaincaps tbody > tr > td img.profilepicture,
  5554. table#defineroletable tbody > tr > td img.profilepicture,
  5555. table.grading-report tbody > tr > td img.profilepicture,
  5556. table#listdirectories tbody > tr > td img.profilepicture,
  5557. table.rolecaps tbody > tr > td img.profilepicture,
  5558. table.userenrolment tbody > tr > td img.profilepicture,
  5559. table#form tbody > tr > td img.profilepicture,
  5560. form#movecourses table tbody > tr > td img.profilepicture,
  5561. #page-admin-course-index .editcourse tbody > tr > td img.profilepicture,
  5562. .forumheaderlist tbody > tr > td img.profilepicture,
  5563. table.flexible tbody > tr > td img.profilepicture,
  5564. .generaltable tbody > tr > td
  5565. img.profilepicture{background-color:rgba(255, 255, 255, 0.8)}table#explaincaps tbody > tr:nth-child(odd) > td h3,
  5566. table#defineroletable tbody > tr:nth-child(odd) > td h3,
  5567. table.grading-report tbody > tr:nth-child(odd) > td h3,
  5568. table#listdirectories tbody > tr:nth-child(odd) > td h3,
  5569. table.rolecaps tbody > tr:nth-child(odd) > td h3,
  5570. table.userenrolment tbody > tr:nth-child(odd) > td h3,
  5571. table#form tbody > tr:nth-child(odd) > td h3,
  5572. form#movecourses table tbody > tr:nth-child(odd) > td h3,
  5573. #page-admin-course-index .editcourse tbody > tr:nth-child(odd) > td h3,
  5574. .forumheaderlist tbody > tr:nth-child(odd) > td h3,
  5575. table.flexible tbody > tr:nth-child(odd) > td h3,
  5576. .generaltable tbody > tr:nth-child(odd) > td
  5577. h3{color:inherit}table#explaincaps tbody > tr.dimmed_text > td a,
  5578. table#defineroletable tbody > tr.dimmed_text > td a,
  5579. table.grading-report tbody > tr.dimmed_text > td a,
  5580. table#listdirectories tbody > tr.dimmed_text > td a,
  5581. table.rolecaps tbody > tr.dimmed_text > td a,
  5582. table.userenrolment tbody > tr.dimmed_text > td a,
  5583. table#form tbody > tr.dimmed_text > td a,
  5584. form#movecourses table tbody > tr.dimmed_text > td a,
  5585. #page-admin-course-index .editcourse tbody > tr.dimmed_text > td a,
  5586. .forumheaderlist tbody > tr.dimmed_text > td a,
  5587. table.flexible tbody > tr.dimmed_text > td a,
  5588. .generaltable tbody > tr.dimmed_text > td
  5589. a{color:inherit}.submissionsummarytable .generaltable table.ygtvtable tbody>tr:nth-child(odd)>td{color:inherit}.submissionsummarytable .generaltable table.ygtvtable tbody > tr:nth-child(odd) > td
  5590. .ygtvspacer{background-color:inherit}#page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.displayname .plugindir,
  5591. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.displayname .plugindir,
  5592. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.displayname .plugindir,
  5593. #plugins-check-page #plugins-check tbody > tr:hover > td.displayname .plugindir,
  5594. #page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.notes .requiredby,
  5595. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.notes .requiredby,
  5596. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.notes .requiredby,
  5597. #plugins-check-page #plugins-check tbody > tr:hover > td.notes .requiredby,
  5598. #page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.pluginname .componentname,
  5599. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.pluginname .componentname,
  5600. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.pluginname .componentname,
  5601. #plugins-check-page #plugins-check tbody > tr:hover > td.pluginname .componentname,
  5602. #page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.requires .requires-ok,
  5603. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.requires .requires-ok,
  5604. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.requires .requires-ok,
  5605. #plugins-check-page #plugins-check tbody > tr:hover > td.requires .requires-ok,
  5606. #page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.version .versionnumber,
  5607. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.version .versionnumber,
  5608. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.version .versionnumber,
  5609. #plugins-check-page #plugins-check tbody > tr:hover > td.version
  5610. .versionnumber{color:#685f61}#page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.settings a,
  5611. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.settings a,
  5612. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.settings a,
  5613. #plugins-check-page #plugins-check tbody > tr:hover > td.settings a,
  5614. #page-admin-plugins #plugins-control-panel tbody > tr:nth-child(odd) > td.uninstall a,
  5615. #plugins-check-page #plugins-check tbody > tr:nth-child(odd) > td.uninstall a,
  5616. #page-admin-plugins #plugins-control-panel tbody > tr:hover > td.uninstall a,
  5617. #plugins-check-page #plugins-check tbody > tr:hover > td.uninstall
  5618. a{color:#25849f}#categoryquestions>tbody>tr:nth-of-type(even){color:#685f61;background-color:#d9d7d8}.user-enroller-panel .uep-search-results .users > tbody tr:hover > td,
  5619. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td,
  5620. table.grading-report > tbody tr:hover > td,
  5621. .forumheaderlist > tbody tr:hover > td,
  5622. .generaltable > tbody tr:hover > td,
  5623. table.flexible > tbody tr:hover > td,
  5624. .category_subcategories > tbody tr:hover > td,
  5625. table#modules > tbody tr:hover > td,
  5626. table#permissions > tbody tr:hover > td,
  5627. .user-enroller-panel .uep-search-results .users > tbody tr:hover > td > h3,
  5628. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td > h3,
  5629. table.grading-report > tbody tr:hover > td > h3,
  5630. .forumheaderlist > tbody tr:hover > td > h3,
  5631. .generaltable > tbody tr:hover > td > h3,
  5632. table.flexible > tbody tr:hover > td > h3,
  5633. .category_subcategories > tbody tr:hover > td > h3,
  5634. table#modules > tbody tr:hover > td > h3,
  5635. table#permissions > tbody tr:hover > td > h3,
  5636. .user-enroller-panel .uep-search-results .users > tbody tr:hover > th,
  5637. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > th,
  5638. table.grading-report > tbody tr:hover > th,
  5639. .forumheaderlist > tbody tr:hover > th,
  5640. .generaltable > tbody tr:hover > th,
  5641. table.flexible > tbody tr:hover > th,
  5642. .category_subcategories > tbody tr:hover > th,
  5643. table#modules > tbody tr:hover > th,
  5644. table#permissions > tbody tr:hover>th{color:#685f61;background-color:#d9d7d8}.user-enroller-panel .uep-search-results .users > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5645. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5646. table.grading-report > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5647. .forumheaderlist > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5648. .generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5649. table.flexible > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5650. .category_subcategories > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5651. table#modules > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5652. table#permissions > tbody tr:hover > td a:not(.btn):not([role="menuitem"]),
  5653. .user-enroller-panel .uep-search-results .users > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5654. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5655. table.grading-report > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5656. .forumheaderlist > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5657. .generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5658. table.flexible > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5659. .category_subcategories > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5660. table#modules > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5661. table#permissions > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):visited,
  5662. .user-enroller-panel .uep-search-results .users > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5663. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5664. table.grading-report > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5665. .forumheaderlist > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5666. .generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5667. table.flexible > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5668. .category_subcategories > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5669. table#modules > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5670. table#permissions > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):hover,
  5671. .user-enroller-panel .uep-search-results .users > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5672. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5673. table.grading-report > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5674. .forumheaderlist > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5675. .generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5676. table.flexible > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5677. .category_subcategories > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5678. table#modules > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5679. table#permissions > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):focus,
  5680. .user-enroller-panel .uep-search-results .users > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5681. .user-enroller-panel .uep-search-results .cohorts > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5682. table.grading-report > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5683. .forumheaderlist > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5684. .generaltable > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5685. table.flexible > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5686. .category_subcategories > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5687. table#modules > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active,
  5688. table#permissions > tbody tr:hover > td a:not(.btn):not([role="menuitem"]):active{color:#25849f;background-color:#d9d7d8}*,p{font-family:"Verdana"}body{color:#000;font-family:"Verdana";background-image:none;background-attachment:fixed;background-repeat:no-repeat;background-size:cover}body
  5689. .fa{color:#d0415d}body .fa:focus,
  5690. body .fa:hover{color:#6a3842}body .fa-inverse{color:#fff}body .dimmed
  5691. .fa{color:inherit}body .dimmed .fa:focus,
  5692. body .dimmed .fa:hover{color:inherit}body.loginbackground{background-image:url('//www.cours-de-chinois.com/pluginfile.php/1/theme_essential/loginbackground/1489002274/Chinese_Garden_full_background_image.jpg');background-size:cover}body.loginbackground #page-header{background-image:none}body.loginbackground #page-content{opacity:0.8}.container-fluid{max-width:100%}h1,
  5693. h2,
  5694. h3,
  5695. h4,
  5696. h5,
  5697. h6,
  5698. #adminsettings
  5699. h3{color:#000}a,a:visited,.btn-link,.btn-link:visited{color:#8f6a71}a:hover,a:focus,.btn-link:hover,.btn-link:focus{color:#6a3842}a:hover:before,a:focus:before,.btn-link:hover:before,.btn-link:focus:before{color:#6a3842}a:before{color:#d0415d;display:inline-block;text-decoration:none}a:before:hover{color:#6a3842}a.dimmed:before{color:inherit}.color{color:#c31f3c}.bor{background-image:url(/theme/image.php/essential/theme/1489002274/bg/dot);background-repeat:repeat-x}a .colours-default{color:#c31f3c !important}a .colours-alternative1{color: [[setting:alternativethemecolor1]] !important}a .colours-alternative2{color: [[setting:alternativethemecolor2]] !important}a .colours-alternative3{color: [[setting:alternativethemecolor3]] !important}a .colours-alternative4{color: [[setting:alternativethemecolor4]] !important}.navbar,.navbar-inner{background-color:#c31f3c}.course-content ul
  5700. li.section.main{background:url(/theme/image.php/essential/theme/1489002274/bg/dot) bottom repeat-x}.course-content ul
  5701. li.section.main.current{box-shadow:4px 4px 8px 2px #c31f3c;border-style:solid;border-width:1px}h2.pagetitle{background:url(/theme/image.php/essential/theme/1489002274/bg/dot) left center repeat-x}.firstword{color:#000 !important}.forumpost
  5702. .subject{color:#000}.block
  5703. a{color:#8f6a71}.block a:hover{color:#6a3842}.block .header .title h2:before,
  5704. .block.block_iconic_html .header .title h2 .fa:before{color:#d0415d}.jsenabled .block_settings .block_tree .tree_item.branch.loadingbranch:before{color:#d0415d}.block_rss_client .footer
  5705. a{background-color:#c31f3c}.block_rss_client .footer a:hover{background-color:#6a3842}.block_login .content .footer
  5706. a{background-color:#c31f3c;font-family:"Verdana"}.block_login .content .footer a:hover{backgroundcolor:#6a3842}.block_login .content form input[type="submit"]{background-color:#c31f3c;font-family:"Verdana"}#site-news-forum,#frontpage-course-list,#frontpage-category-combo,#frontpage-category-names{background:url(/theme/image.php/essential/theme/1489002274/bg/dot) left top repeat-x}#page-site-index h2.headingblock:before{color:#000}.service
  5707. .fa{color:#c31f3c}#page-footer{background-color:rgba(217, 215, 216, 0.95);color:#685f61;border-top:2px solid #c31f3c;border-bottom:3px solid #c31f3c}#page-footer a,
  5708. #page-footer a>.fa{color:#322a2b}#page-footer a:hover,
  5709. #page-footer a:hover>.fa{color:#685f61}#page-footer
  5710. .footnote{color:#685f61}#page-footer .footnote a,
  5711. #page-footer .footnote a:visited{color:#322a2b}#page-footer .footnote a:hover{color:#685f61}#page-footer
  5712. hr{border-top:1px solid #b3afb0}#page-footer
  5713. h4{border-bottom:1px solid #b3afb0;color:#322a2b}#page-footer .tree_item.branch:before{color:#d0415d}#page-footer
  5714. .block{background-color:#d9d7d8;color:#322a2b}#page-footer .block a,
  5715. #page-footer .block a>.fa{color:#6a3842}#page-footer .block a:hover,
  5716. #page-footer .block a:hover>.fa{color:#8f6a71}#page-footer .block
  5717. .icon{color:#6a3842}#page-footer .block .moodle-core-dragdrop-draghandle:before{color:#6a3842}#page-footer .block
  5718. .header{border-bottom:1px solid #b3afb0}#page-footer .block .header
  5719. h2{color:inherit}#page-footer .header .title h2:before,
  5720. #page-footer.block_iconic_html .header .title h2 span.fa:before{color:inherit}#page-footer .block_html ul li:before,
  5721. #page-footer #greyboxright ul li:before{background-color:#c31f3c}#page-footer .block_login input[type="submit"]{background-color:#c31f3c}#page-footer .block_login input[type="submit"]:hover{background-color:#6a3842}#page-footer .block_rss_client .content
  5722. a{color:#8f6a71}.socials img:hover{box-shadow:0px 0px 10px 0px #c31f3c}.nav-tabs>li>a{color:#fff;background-color:#c31f3c}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{color:#c31f3c;background-color:#fff}.nav-tabs>li.active>a{color:#000;background-color:#fff}.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:inherit;background-color:inherit}@media (max-width: 979px){.nav-collapse{background-color:#c31f3c;border:1px
  5723. solid #c31f3c}.nav-collapse .nav > li a:hover,
  5724. .nav-collapse .dropdown-menu a:hover,
  5725. .nav-collapse .nav > li a:focus,
  5726. .nav-collapse .dropdown-menu a:focus{color:#c31f3c;background-color:#fff}}.performanceinfo{background-color:#d9d7d8;color:#322a2b;border:1px
  5727. solid #e3e3e3}.performanceinfo
  5728. var{background-color:#c31f3c;color:#fff}.performanceinfo
  5729. .span12{border-bottom-color:#b3afb0}.performanceinfo
  5730. h2{color:#322a2b;border-bottom-color:#EEE}.performanceinfo h2:before{color:#d0415d}.performanceinfo
  5731. span{color:#322a2b}.performanceinfo #cache:before,
  5732. .performanceinfo #load:before,
  5733. .performanceinfo #memory:before,
  5734. .performanceinfo #peakmemory:before,
  5735. .performanceinfo #session:before,
  5736. .performanceinfo #included:before,
  5737. .performanceinfo #dbqueries:before,
  5738. .performanceinfo #dbtime:before{color:#fff}#page-mod-quiz-edit .questionbankwindow.block
  5739. div.header{background-color:#c31f3c;border:1px
  5740. solid #d0415d}#page-mod-quiz-edit .questionbankwindow.block div.header div.title
  5741. h2{color:#fff}#page-mod-quiz-edit .questionbankwindow.block div.header div.title h2 a#showbankcmd,
  5742. #page-mod-quiz-edit .questionbankwindow.block div.header div.title h2
  5743. a#hidebankcmd{color:#fff}#page-mod-quiz-edit .questionbankwindow.block div.header div.title h2 a#showbankcmd:hover,
  5744. #page-mod-quiz-edit .questionbankwindow.block div.header div.title h2 a#hidebankcmd:hover{color:#fff}#page-mod-quiz-edit .questionbankwindow.block div.header div.title h2:before{color:#fff}table#user-grades th.item,
  5745. table#user-grades th.categoryitem,
  5746. table#user-grades
  5747. th.courseitem{border-bottom-color:#c31f3c}.path-grade-report-grader table#fixed_column
  5748. th{border-right-color:#c31f3c}.path-grade-report-grader .grade_icons
  5749. img{background-color:#fff;padding:3px;border-radius:3px}.back-to-top
  5750. a{color:#c31f3c !important}.back-to-top a:hover{color:#6a3842 !important}h1,
  5751. h2,
  5752. h3,
  5753. h4,
  5754. h5,
  5755. h6,
  5756. .back-to-top,
  5757. .socials p,
  5758. #profileheading,
  5759. #socialheading,
  5760. .forumpost .subject,
  5761. .block_login
  5762. label{font-family:"Verdana"}h1 span,
  5763. h2 span,
  5764. h3 span,
  5765. h4 span,
  5766. h5 span,
  5767. h6
  5768. span{font-family:inherit}.actions
  5769. a{color:#8f6a71}.actions a:hover,
  5770. .actions a:focus,
  5771. .actions a:active{color:#6a3842}.actions .moodle-actionmenu[data-enhanced].show .menu
  5772. a{color:#8f6a71}.actions .moodle-actionmenu[data-enhanced].show .menu a:hover,
  5773. .actions .moodle-actionmenu[data-enhanced].show .menu a:focus,
  5774. .actions .moodle-actionmenu[data-enhanced].show .menu a:active{color:#6a3842}.actions .moodle-actionmenu[data-enhanced].show .menu a:hover{color:#fff;background-color:#c31f3c}.actions .moodle-actionmenu[data-enhanced].show .menu a:hover .fa:before{color:#fff}#chat-input-area table.generaltable
  5775. td.cell{background-color:#c31f3c !important}@font-face{font-family:FontAwesome;src:url(/theme/font.php/essential/theme/1489002274/fontawesome-webfont.eot);src:url(/theme/font.php/essential/theme/1489002274/fontawesome-webfont.eot) format('embedded-opentype'),url(/theme/font.php/essential/theme/1489002274/fontawesome-webfont.woff2) format('woff2'),url(/theme/font.php/essential/theme/1489002274/fontawesome-webfont.woff) format('woff'),url(/theme/font.php/essential/theme/1489002274/fontawesome-webfont.ttf) format('truetype'),url(/theme/font.php/essential/theme/1489002274/fontawesome-webfont.svg) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}body{scrollbar-face-color:#c31f3c;scrollbar-highlight-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-darkshadow-color:#c31f3c;scrollbar-track-color:#fff;scrollbar-arrow-color:#000}::-webkit-scrollbar{background-color:#fff}::-webkit-scrollbar-track{background-color:#fff}::-webkit-scrollbar-track-piece{background-color:#fff}::-webkit-scrollbar-thumb{background-color:#c31f3c;border:0px}::-webkit-scrollbar-corner{background-color:#c31f3c}#page-header{background-image:url('https://www.cours-de-chinois.com/theme/image.php/essential/theme/1489002274/bg/header');background-repeat:repeat}@font-face{font-family:'楷体';src:url('https://www.cours-de-chinois.com/00/fonts/kaiti.ttf') format('truetype'),
  5776. url('https://www.cours-de-chinois.com/00/fonts/kaiti.woff') format('woff')}.hanzi{font-family:'楷体';font-size:2em;line-height:2em;color:#d75645}.pinyin{font-family:DejaVu Serif;font-size:1.3em;color:#509a86}.soustitre{font-size:medium;text-decoration:underline;font-weight:bold;font-style:italic;color:#d75645;margin-top:20px}.titre{font-size:1.5em;text-align:center;color:#509a86;font-family:arial,helvetica,clean,sans-serif}h3.sectionname{font-size:1.5em;text-align:center;color:#2d83d5;margin:20px}h3.section-title{font-size:1.5em;text-align:center;color:#2d83d5;margin:20px}.question{font-weight:bold;color:red}.gram{border:solid 1px;background-color:#0FF;padding:10px;margin:10px}strong{color:#f24537}option{font-size:1.1em}audio{margin:5px}