display.css 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  1. /** theme: neo
  2. *
  3. * @package StatusNet
  4. * @author Samantha Doherty <sammy@status.net>
  5. * @copyright 2011 StatusNet, Inc.
  6. * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
  7. * @link http://status.net/
  8. */
  9. /* genericons */
  10. @font-face {
  11. font-family: 'Genericons';
  12. src: url('Genericons.eot');
  13. }
  14. @font-face {
  15. font-family: 'Genericons';
  16. src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAADgYAA0AAAAAWDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA3/AAAABoAAAAcbOWpBk9TLzIAAAGUAAAARQAAAGBVb3cYY21hcAAAAngAAACUAAABqq7WqvhjdnQgAAADDAAAAAQAAAAEAEQFEWdhc3AAADf0AAAACAAAAAj//wADZ2x5ZgAABEAAADAqAABJ0A3bTddoZWFkAAABMAAAACkAAAA2B8ZTM2hoZWEAAAFcAAAAGAAAACQQuQgFaG10eAAAAdwAAACZAAABNGKqU2Vsb2NhAAADEAAAAS4AAAEuB9f1Nm1heHAAAAF0AAAAIAAAACAA6AEZbmFtZQAANGwAAAFRAAAChXCWuFJwb3N0AAA1wAAAAjEAAAXmlxz2knjaY2BkYGAA4rplZ/Tj+W2+MnBzMIDAhRBmaWSag4EDQjGBKADj7gZyAAAAeNpjYGRg4GAAgh1gEsRmZEAFLAAWNADXAAEAAACWAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNg4WBg/MLAysDAasw6k4GBUQ5CM19nSGMSYmBgYmDjZIADAQSTISDNNYXhwEeGr+IcIO4ODogwI5ISBQZGAOtvCU0AAAB42kVPuxXCQAyTL+GRmmVoKdgA6FNRMoObdAyRnj3o6NkGLOl4+N75I381AUeUTPoNASSyoWVUBMYUYkmt/KOQVdG79IceFtwj8QpN4JxI+vL4LrYUTlL294GNerLNcGfiRMu6gfhOGMbSzTOz30lv9SbvMoe+TRfHFld08b4wQ/Mhk6ocD8rtKzrHrV/49A34cy/9BURAKJ4AAAB42t2NPw8BQRTEZ+/E2Xi7NlHIJsI1hGgodVqdVqfVqZRqH8QXvL25eq0/USh8AL/kzWReJhkAOV43hMKDW0rqmVu4Jh/BpY+tdNDBh2ndoabnnGtuueeR52YQI1AhILhQ1iDoWHLJDXc88NQgxl5ujS2sMjNZyUImMhYvfTFSdC/v3R+oNj4llSXJvgv4e+6zoCcQAEQFEQAAACwALAAsAFoAhADMAPIBAAEcAUYBlAHOAggCsgNMA6QD4AQSBMIFXAWoBgQGdgcIByoHageOB8gIJgkeCn4LOgvIDH4Myg2YDeoOLA5oDtIO9A8QDy4PeA+aD+AQNhCgEN4RFBFSEZwR9hJgEoISpBLuEwwTKBNEE3ITihPOFAYUWBSYFMgU3BT4FT4VTBViFaAVzhY6FmYWlhaoFsIW2hbuFwQXEhcgFzYXlBfEGAIYNhh4GLIY2hj8GSoZhBnAGfAaBhoUGioaQBpOGn4awBr4GyobgBuWG6wb3hwCHCwccByqHOgdFh02HWodmh3MHgQeHh5GHowfpB/OH9wf6B/2IAQgWCCOIOYhdiGuIfAiciKOIrQi6CL2IyojRCN2I5QjviQIJJAkxCToAAB42oV8CWBU1dX/PW+dyT57Mkkms2RmAkkmyazZCEPYE3ZCWALKJkhYI7IorT4XFERwQdEiAtaK1l0roMUln3WtSktBPltrP7CLyx9b21o/hczlf+59MyGA+jF579333n3vbuf+zu+cex5EICMIERbK04hIVBJ6BkhN87OqRL4IP6PIf2x+VhQwSZ4R2WWZXX5WVaCv+Vlg1yMmj8nvMXlGCG5aDvfSy+Vppx8bIb1HCFEEIhCFyBp/bzbJJxbiIAQ8No9s88TkmMcGuPkxbcKjQCTSRwQtpYkESErDFDmLj8pa+t9Zwg8UNyIA5lHxh++1YFluyVwgSO5yocBMwvFowKtYxRr4Kcw7fJjuoZfQPYcPw1vHduw4tkMl567MYzn6Du9gNwgWr4GmaoqGr3WQYjIY6yqz5lk8JNwiREOCN0+wukC0yTESdoHNmif4vCGIxmVNIN9iY/FAHzqwb/3o0ev36YezZ4nw8ye3d0amrRs2fXtnJzamTxM1DcgZrT8TO4jfzk3upb2d26cPWzct0rn9ye2sPgIxDOw/7DuTB7BKbGM/Cd/Vp/UREXsFMAWajHuBAJ5Tvmcb9g+wawprm0CIUcC+1s7gWQp/eI8/h32ZixmtimqSTSGIReNuu6zd1nOW9Nx2ElpOytqG1ytSn2rCvRWvb9hz8iQfA3xKYWPAxhXrY80Dnykcj8G5pAdwTDef2tK9Q8gkKNaajfOWU5uB7OgekCQCqyevSxGJsnG120xYo1g8ZmKDiicOG9bNFHVg/+MddwDTLZCwsVv2MMsWFA9B1qHuzmTP7p5kZ3dvZ/ch+vWhus4GfkElhzZSbd7uwD2NHaBN7OmZSLWOxnsCu+eBtvEEHqi28dChjaAl10wvwjyU5wHMw3qO9KqsbgXEh+0N87pVggk8CQ9rtH7BhyPk87J6xSOK1r1jR7dGk3S/Blv2nKT8HE+TPKFgk9klmoRe7eQeQTt3uqMbMEVEyIybjKW6mASw8sDFxikYj0WDmCzAZIsQiwaCLDcfe03Kjzc1xWe1t0PBjAULZnTVtPonjpbx9hnchIL4rbtujc1q7+7G+zM/p32fz+yq6blx1OWHRmMR2M6oASWPrOMzyyWYbVZBkVQlgELBimlRsOAWIRAMQZ6gBoKKGhLzIQ9wcjgUm9UlOxQ1TwhBMCQFB+N1u8MlOVxKwmq32qxKMFAewNqaWwRxDdgh68RLN7YteYHSe30+CLpiMxeMH1tbskQxGvMtUl64eUHiqptvvioxf2goK6sg32CUlpTUjpkwf2YsmmsPjR46yikYS73xUimnyGhyisZSpzcXFIc7MWp+M/h899DUC0vabnzphIGwPf16y8P0rTOvhFV3ofSrKcPnOhVLeXjC/E1T916RXzHm0joQZXOd3wvg9deZFEGomNSQKMlevWfK5vkTwn6zEurKypMLYtVSrq+4UFCznWZQCl31Hil3kGtwXpapfGJdVqFbibx8Bhoe3sIbh53IgIoQ3qcGYiKliC1hkiSTCPGHE4KoENXuj5sT5bILzIgrZkecJALBHGDd6xIccckhAMtUnhAsXsVnt7RIiUAVuCWCsEcQ9wgDPonsP+R56k90U/cH4phd7xbSU/RYXmPX6fuvXPZjePyTgiT9G+2Rl4w+8L/N9tKg8iiMu9p5pvFV+s+aV+GrW7Y+4dbci36t7B2/Zcmga+hBehXsgg1g+dnP6Bd0I12I2xc/+xlYtElQBTe20SNv9u5dBh29oVDxvfTXwubkw/Q369+D+PharTMMHzRc2u0qjXTkeJRiKIV/T6OHjtvHhMAJ8YJ9dJ/Q6G5pLb/mTu2Cl2OBvFDWXYB4XIV4/BFpwBNFtSPgSpLP7bdHwjjlUbwwgYchKF8MrxJ2yYES2iJEwnZHPJEHalzV2pcL1bO0p39L6TZ6mJ6tqpr24B1D173k87vraq99ZMKM9hnhW+CWj7MaF2xqn7Al8uNl1o6GFUrtqgnFtiXH3jt0/+phD8mBUXXitpVqbtE7N8qVYvinlyzofPSd7EGVbZsWNA5JFCWTS7y5en0J6g9VI8F+dPAhSls8Q1BHRByJgA8VSCnCIirN8wCC/g3ycujfKlv3yeOXXHLnjCpKU1XshoqIcIYgdL4JUm9OcwL+lRW/dM2IU7Qv1bCjW8Y7HNuxXPkTLNfN8EFkioGVEW2RsCfKQPTyckVpN4zNp2/Q3j/9yVE95pJr2hLdTqc6Z2FF1GmUvqFH+g6KY6EGhOjc6WPipYoo0r+Z/NVeUTASRJ9M2yyIzB6ykKzg2GA3s0HxeXFGF5jjgJILCoRRdrPBbgFLPNEixqIMCAwIHZGwI1Du80qKGo6E40MhbldURQWLiDgSd9jPXfPjUKti3ByLim2wDMZ9uW3Y6n2vfXr1Afrcl9u2fUn/ePo9eu0oMXDL9ZLwzb9W/Rl8kwSpIM+iOgqt4JDNcp6kChMawbiCfnbfLfTs4THFRf5lPq/NkmetqgX/09d0WPOt1o0TA0t9PrxoqxR88pCvD/5B1fDtzx24+tPX9q0etu1LGMdLT+WdohsWSqX399WEZEV4ODXMI+3t2w05Sk5d3ahIYWhmzCv4De7skvxCW3ZDJyxc1fXgClkQocwrykLfPYIJZqiC1w1ZmYtqReXNO1MN3bD6w8NM1lHXk2t5/+YjykfIUhxJnOhe1cRknGEqWLAbAy3gcIkOuwKsh1CIgngB0VUBNuRIrJhocbFDnA4JQW9IxX5PcNCOJDxehZ1GPCibQrN5rOXgPde86/S4nWWeH79ty6u/enJzz/Qh2TYNclRIPTftpqLGD7Qp4yyjfPFSj1XsRQJ2ls9KprZk2RLtaoNgTqDAnW821LT/YubUvTenHrj2r5N0yRQaYSr89VqxpcHTXA5TpN/uXvLUPFFIdt8+aW9vKubxCPZFk6ZdLkBhbm1hRWkwKBcASRfRh8+X2Mcuumx2fWlWaUGJtdBmjI5uuvX5Vc/Xbps/dRibG1w3IrAqLyE/MpM6nR0FmeplooaqCCkIXoqyaQcqEgSPOeixtSh4T7AJc+gBaHtImHzZ4qmJjiqo6pQL6MHJnZWjB+dm04OSBGOzbW5PTaS1fMrmxQ1AxP+5ef7YtnnV4+tqx4fO7BTMS9b5I+7ieOq/xevnbDWV+IqLLdmJpU+s5GOppcfSgnOyeQAapKc940oWpAwh8CGpsdrxAq+moMY89gKbirVOcByzmXSEYCCAlMBBv71hxGSY1Dp8yuRhUtPDm8KT670F9BsAMBiyvA3ekcMykKEPwmkiFvV9Im6c2Ng8fkJT48S+DfDmUweKKoOFqzx09f4DcKjS5hxUemkHnYGd+RgqqsmooyaxGrskfWoHggLO0mAgYQkJvGcZDmN/svlqZlKG9casSMjUPPYXZNlaZKlu7e+f3DY3Wj31qh0HFi54yju2wDvnbrX0p1KefeuiqTMCzXmOqxeueWH+yBve+vGcx25eMTY41ayqolVQffZpaxPl45bd84s/G0hi/qa9++ds+PiVXcub5yTpR/UbtscfuVp42uhZEr310NIpke3/1bDg9ueh7sDlz1zXFpq86qZ7J9093+YszJmYVWgy+u56cdX43fdtXT89rOuUjB5ekOE2BUKegM0MxhMWFzDNwhol6o2yO+wIYZCIB4JpzYKiw5gt0v4Ep1xMtjBfGWAnOQLkQl6T5hx3bWsvGVOydfJVv7l9ctMVu95bvfbI7msmDupebC6RBZMgy3kjRmu9PZc92F0/acclsQ5/Tnada/Tw+KxYgcHYY3HI++mpXQNZDP2cfs3eP3j9AnDG2pceAvHurifuWplMXPKj2+9uu+XoYEOexZDMstpME6+a9+zNk5uX3DZt+zd3x7piNbvWDW6dPuLq9srJFgv1T52/eSI4YO3hfrIikL3CXHWuvBcnVz7n4AXIswvK00fZCjO++oo+8lXqynRC3sv2X6XP8KjrbsK5shdPJBFtBR9qkiAKC9LWBP4sZocZoQ1TeMmsbABrQQ4aZnem7l+2wjt5tvWqjo3XPT3zSF3U2jy2vmeVoWBTcuSNKjHQh2iKDqGDoAxuuwbKOpZdufpeg5X+lj4/kf7z6adn31sKT7A2ZGy5fMSGi+afUVAImjB7+vgeuNWpIAOn/FzAfR9n0gTgA6IpFTiXvbqFg+iKgMtA2YSKCsWGkeCYyRfjjUpIw+HndLqpoLp53KabV8+Zs2zDpZcMb42+0d3eHqo2qRptop/Q6K6qKmf5DPq3uN1eVtbQeN0GYU3Kl0zOmrklowsy+OEg1WTIxfUnbqXA7o4XYI34bHRz/oN1syO4x00ol5WoPkrBam+CcHwghIhl9NWTzJxDM+Hv5s2n6OenNpvp39tjMom1t8e09O58FKHkpP5U30mRjGpEYw3tuKaRKfaItD/zTDufWmcBVFDOkm3kTrKD/ITcTx4gD5FHmGWJTbDVKuzPqtSh/aLUKaqV7RQbAxTsTiUfQPEGobYGAsHaQCygd28gGA3yGRiI4cUodkGsNh6L10VZn8fCCX7Uf0OhNgHxsANq7XW19ojd0f+zsa2W/Vkd1jo7mOSEERx+2ZYAk1/1J4KqEYKyP6aqOOr8n4B/QnqPh1SrqcKUagURUJxFdlWA8/4J0J8Z1bzwMmYXXgYB+t+RfhHgq8D1SWpd6swn4Eq98RDcTT/+RBj92WefQaUgf0I/Fhofkv4lS7RaUAWQ2DOsUIEVmX4Dvh9odXYOHGWvT9dU5PfxAPgQPijBUUkWQAYBT9nGHuMvYPuj2dm0Ot1CUX8jK4NlwydgIn3vlZ0wgz6y85W9f1yRehmir9w3YdeuXZiasfOVB/644nxZtaCee5l8wmQVWWEB2otubua1IClH01FA/eCwSwmcMlw/IKYisA4FhqmYA21CC2eDCiP1iKy10TrGd8rZJf5onIFwCBT9gnAOmJHmBLji4dmYWYBvYzfZOVNKIhquQY7XyJ3wlD2RPhUgXJ7QqRJ7JWK4hGUGA+ZEHK8nFElBuDfbJYkcYCyUkUN6FyOhnI8e3U2PL1++0Gra96P14N4wtn3lu3dNL0+GsEeNIgz72WuLHwTXPLf/cvrh7eLgwZ1brlzbMWvuU9e0Z3d3LKJfLb9ySEuWYefyFf/T1OJoD23cFOu02CIFVbHSqlmBQNRgMBcVVIaLndFqc7FDVirLKmpCY3LRJjTa7CMDgVFWm2w2Fnsr7JVdHq9fFDo3tkam1eTYzJMWra0vHxYxFRvNjg2PdEy/fRrdcAo2LWqavuPt1eNvmOeMj1m9ih58+GH62ei23OkzoPpZk/k++tnba6/7EEI6B9abyShwmg3fY1izcin9/d13nR07Jq/BNmP7u6tGbVoTxrZmCdC+rOnWDZHqa+5OZQ2/qX71YF+Jt/2ap+YKS19pGW9talmy9Efrf+XyTJnT9XF7pNoaHDJ33rTiyjI1O8/hGD1ocIfH4bEIQo7TXNzm97eYkN7WVwpQNrbU5RGg0ufrCFo9TotkLCpzz6wdtjRkyhl5ycpYtKPaYM+rGVKe2NA88apYfs7yB/tu/ubdm25cc+S+pVb38q2T76FPrt+wqtT5P3t2wfKf3Pc7lyTk3PIB/dPuffR3H17fL78G1FQkm3SRK8mtun+SkekYkmlQfZwGodgwz18ZuGR2hjIsMslG6ybBU0osLdcopR6IhlCKOOnkHAJ5khhPcwrGQ60utMviiDIZtqtR+z13FroSbmehu7nK77AUOiyWaZ7yeKk7N7z4jnfWLHx47ZSgoaA0mPBGNtzaNsSSV5yFU1xQwNBomnXP3Nj4sfeDAew5ZeXDWiIWn2XY2urC8mGV3j8f+tmBl5oc4REL6l0tcUu0oCw8tLO2aoakZZi8QKZZSpJDLomEZ7a0Bkrt9praSkt+a4k7UT1kZHD4dT2dYf/QznkxeygSCddY3ZV2VSqyhKqcan52npovIXlJLrlhVMfDyetOz3NFwoMToXJRNucb8wfXTq65du9WcVFTT/TK1bMbLD5HcsWgWZdOG1Hhx7I3Im7E1evIIuxxF07qPDmExqcpz4AzmadcQjyB6tYlYj/HQ4ov6A3kYTZwiWWghiSc/C0i2kLybrVo7MgZI5qceWWVy1auW3X59KTZjGrEYLK6/dHS6IqOkWaLZ8Tw+gKoV6zJoTPGTxlalyWUt0zpmj11mMUiFUSi7aOmjh5TUlwkmpxFRuNJ1dE4qDR7zPCRjzz89E/v3TDbqQ4ScwaHp825YdvB+TM3T01Y5NxcVaH/T1DtDrfL5yrNNgtFrpxcKPRW5pVXi8+m/ibI2ZJsqR6+dOS467vaqrz5BoRYJb+wItJeXT138rjGqpzst43uJSseeuCN2ROuaHILeSVFWYTzr1uxb65EmRxErsPesavc0RxkIiahmmdMVERbmhk5KI7AvICBgT/Mw2xte5qo9N9HosV0rXWATrSmOUz/fVuG3sTVYREYf8P+hVctnzjuig+fR/ptGl7Xtf7uSVvXtY2a//JD21dPraKLmry+IU0dU5Z0utzlbktBNNE1v3Kwp8RRVBP1eYuc9fVTp63atmRZfUMi1jVj4+yWeq+npfXyCdWhQqfDVlJWFff64tHp6w78ZMUqsXXxFQv33zC+MW/Isl0v/GF1x7QrNk66e31XXXtO1dTV2x96ef4c+uuOy2cMaa4IFjsdFqPRnI/vCHnL3e6WkM1eXl4dCtcitXIGB41tm7toRGswUGI1mzyu8NDBVXabxxOrLSxCm659/LiaoaEQtweQ5RGF8dQoYyg4P3XrBvdKJbIuzrlCQiWYuFbiHc88/0hU0IpWNHuwyM629liSsSCaHHbl6FmDtd66FfOSoCKieWaOKjAYYG+sXSLFdeUGT1DfY+7u9oraCkG75IFvNsumak9Jx84p0/b6A+26ifIebFUj6mruLQySWjKUjEG7bDPWMo7V0octikQHxwqwlmmr117OzDOFnfnj3DxR7ajjWJJ7Xqx2CayOOHNFKcSrMJd51GLVfWuAGpvzyIydh/ksCGgOuQXtItYVaPUE/aLdwc5dIL2VP9iV3/nCoc581+D8+tvuoP9oDYWGDQuFWmHE7NbW2a2Cp7JhUHXZ1NSWx8D36KP0o8cepx89+ij4Uh9X1EwrrRrUKFfjQAyt3lcfyrvydfolPU6/fH1NQWll0dqpdVNLDv51tmw226ChcEpd25IlbTUT60R6evyfniqZFo7PjouGfFdlfmdnfqUrvx6UUCsW39qq70OhIWW1gxqCQ1KLu/cvXXagu/vA8QPdwn01JeOGlDcIHaGWUHUy9XSiqzhcd9kLGydO3Pj8ZWjPRob5pq6tDswzwtv27Bx5zKC6JXctqR4faqbX5MytCMVns/nJUFNFqSE+ksDxYA4uZsaLfDlIGIIKRF+K4N3msKmyJ2MzBmOOhH5Tmmz32701ALPvnzNSmx0HtWZEjfzmli1vSfcjLVJn754zZ/dsWHI/XpaOzLb7bSEvLZv1k5mxrh+POHLYU1PjgU82vfTKpqXV1x7p2jVr5s6u39WGjrHrRK8jW5tBuc4n5Rn7gS+Q6f4HtkSGfJetkzkg4UIjIeFQkOln1sbQUPhDoL3bT/9A/+Dvbg/AEtnUMKLBJKt8yeKIvnx2hK1RpPaxDPRD8PMHdkilPl+pRHSf4cvIDVv7168chBhFkzEnYTNCzCHcBj2pL+h2WC5YKKYFCyxP/VPIp9tTX0APvR2u2J36MvXlbrWVvksPQnnqBfDR5+m7EIUx9CP6sLiX/hHGQvTMt/S9xavpq9CyejFvu0DIWWUktt1FRvK2q6KAqpiZRCrkgW6xMWue8Uec32ztKGFGxsiMJZ1VMkuLe2094RaQ35jRaI3OlGXFWlTjOm2QVboub7A721qWX9ZcIZz0yk5LaoWtVP6301pa9pG1WBRcouSy0H8W+3zFMDTbXqCS+fMppS1Wq63CZhYMtKEgV5TVygrZ5qiqKqErf2Evc5v7DIqMclKY58wz7Mq1+rzFwWJPjoXjFFt7YmttA63ZAQtN5HsXltIrSRzrBJRavl7H1pHQmHUg1xEjQi/z7TGLF7OnNE2T0BxGZoQcISNLWLLC2FIO97IZIbPIKuFUSBFKxHe6GaApmEwRtobXzs5JZv2Ky2EZ8ad9xhnrgLmM9ZVVxCY8kywmNB5NYh24QH5x1aoX6Rn6MT3z0sqVL8Fda96/r6vrvvfX7KJf79wJWX+EwV30GZWsfEnPxLKj3YIPvnRmZdfO458f39m1k35N38LsEqGz6H93wST4gy4fWCfC13lNeO5lOGq3iqxXPawzpW6+UqwxL8DJPZLG14fp5yf3MM605yTrk3PtyibFpEr3PSJnjNhwszBnni5W3B5PjxcbKh8rLCKj0jmNmyZgZ7fH+rgFLeI+1etE5h9I4t6paGfYFNK0M5iNZUixvbA/4KSE3YdezHl+XVxkMGnEutSi5a+KjEclLHqJniaoDUfQICqBuh+qqoRlKaFIibrsSV4GYdahw81drd9ZY+lXIBhUrFFxTqgInsEqCW4H2qeHvqvyhOT013VgTEAxykYlaUIdN5zhacQmprdM2pNOR3Az/VBPZ549FyrAasyP39MASvQ87B7faPqY2Qvku5oCMT0ggc+PaTBNvVq9GtvjRoQDB6DB0CJAAtSAN5+vf6qQsIeHIuzCn4SyWamT5U2NQW+OtV745jmhbL+/O7C/0GwufC51Yn8A036hnufy15TmGUORKdKL+1MnnvP79xe1thbuF8owecDf3T83Oc4XkBLsOxVQS7MoiHK3ZEZ2R9BqQQRDDYXYh4aG6d4X0vMH6iFr58q+lesPf3V4PdsBNvgfKzN3cOrseuFeeCd9c/16kvG3p8viLb2gOJIuKg+sdkvMY5NN8I+LykyN6n+nQdDEldR0Ubn023O1MvA+FgfEe5SQCu6L6zfTfrAeotZvZwn/R3UUcm6FI/V/1IvrNwKVBqK8T3KxTqWIbtUstoJBW9AIcayKaATe8UZgnuU4mhpx7kQVOO9C/JThDJUX0q+Q93x1GVXg9GWQA4Mhxw9r6Nbxr3/w2jh6K1wx/vVly16fmCLMbXeSvjqPY6uMT1J50erVi+E0nF68enVfJVwJqydMnTKB3kq34hFe3aM/cFKIcXQ+r84sxsXHZx0Bb5CtJyms7kgrE8xiTUDQ4oBggjUEbYkM3vs5c8QGJXS+KZEiDzynnBQA5vKW3P3zXdsv6Vj2ejus+X3oujPkOo028mbd/b9vp7bwasB73bc9sow3raVn6Mk9yxBy4DlP0Z6Twgm6l7Vp4nbvlAlw5QfwMX8DvMEauDf1Lm/4191LeBNf7Zm7nIMxCAy09DgU7H/mxsP6GQGVUS8kNdpLezVI8h0k5QvONZYnvXbL1wXOf4eB9PWKSa2vt69XE5N8JybVC841lofJqJbWKxbEsxiLHrJVGmJ+fcVNZT3IsAqRSo70O3Mj534y0QFH07GnPQYINEwhOM+mAV/TwUfPofDMCEX7EXTxrzfFTRABj5mN8wYoRd6wgxjZfLXgH8jFoBJafpD6qf8gLRfGPfecdC09kPoMxtHnBAe0geBIfcawRecLGnZtFp/tCLxB5gRHra9pfUQTccIoDDApc7ineqGXJs/xY8YXjNyfYgT8M3kYi0jhT8TfaUzz8KRetmNVJRLvv16lF58zkDzGdIwCm90OHIoaQfWjPGIf9fZpNClqqSfmClNTe7W5ybkajMf0XAVL79OgF1vO7vXN5fdy2a00f8K3syE2ZkKoVOQ5jPYgDCVT/ElWFegdiDc5OLc5g+ZxMJ6oUO4zhVGNOQFPsiBQBT4zM45QzQLR11DazpLDdPdvj8A2mAwlb6w4S2Y/9AX9hO5/ctXeVfgnZ0JRfgvzD4tkxRv0L/QpesWRJ6Edir54aHafxvNx3U5krMdZ9RXsDSeP/3GhPuE2KU7RFmQW/VOzGDwW9d3KvOiVU7891bq42eHwCd9UrrpiVSX9Xz7vfh+lf4sIs0ZpcxK+5LTueun9UWPHjjp9hM8qiLE1ECwvs25iQ2yI6LyGoQLaLglub3IkQ1BD9PUwaLA7WOODakgQOI1SvCwajv66nf7q1ekPbW0EtAoCsS3jWfATbmi+tsOQV6//dCa7Dr6pC77ijZVQlB4/FupoArQm/PEhJ4UytjDz+LGFM9kFKA+X0lree3osG48Rq8xEiOWBl3F6nFZ2Nw8V83n7A8L4XOM0mQeGcQTXWKpn4qRVOG80dmRhYSntaobtVzNsYDFggjaxZ9WkNNl6jTazM4FsZPMC7lCYbOSRQj32EMFTZVgfi5rRhChgxRfYxXKuOWZOokvokkkzd8K+G1988UZ8s0qYNllzFG/APZOOrtkFWSnni2B4kQWqMTyby/BMPsGmEJIJHyQcMucl9IR2Qj4xN0Vgr9aLY4UyaiD9XIoU4WCx8WJHA/mG6BtwRyPTbSmuCgdwBgsZhO8I4qzOY35uhwkHkTWBeUAcHlMZChiP3jCh6MOf/yxon9aM8P/+4ZtPPTZ/vbyp/rJRf05plvfHTFr45Ap2TSnF809DqzaOfIb+o4qetm9+A8Rbd4GdTrj8jUdG4/OW90f98vI1h7eVgoI3aYrZJCK2VdJ4a9i01FhMY7qeDH9YJ7D2cUn0p3OcQfOkD5/rIzyQkCHNVCFpYH2mcjuzjM1yzg/SB3BI6fVLc3q+CPX0P7BdoxZYIz2UTqzqG46CwYbhn7t7enb3yA/QMsq8pHtSJ/Vjyzx2F8WHHuphWc7jJirnswxfeJjewJkp87g8NJXwCO3n5iMicfqqyIPzBk5Gwl7FdUr63RmmnNCZMknjjvmCoz8dWaszZV39yFzxeLgSQrMRybPPxPII+7jyGPgH6cBRFqOaUUM0qZsDfJ/EyrH7OAj8CdAfpPphn06MJU6bmUbS33qGW5QswJcROkbEicps0RJuz+rqMBpvgrQfi/uYuH9ywOKlqh7a2Lq2KvTiFXtOFkqE22U7yjwbD0WqL9twck9LK5+bmgqqnI41tlsZ/w6yiREMRIeylUERablyoL39s7Yj7bSBnoA3oa3ts/ZjbTP2niV75V3tR/EWjKEN4Ga3juFZW2rHXiAMkIHpLpnRKPVc/4t6RWS9Qtyn+Dv57/KTXNcIWHjMAxKBL6hlOkxn4b/05/IT1EItnTBdg+ncD4kT7HeKpj+Dcx7JLZJaiUynP2cRvjB9OrXIT3TSn+OznfAFt+WTCqsHY3RMQQJCRKo3haymV2a6WEBqk+T5GJYkWT6sixGzcS+BkMSfxhQ2JlO9/bERIlaPRbqiBIs8VLmPyyHgDMWq6fdQttkkzdxL8wRZ4+HexCiyymuMlDEJOEMEPaib8/gCdiJrysX2n48EUbJrUOckuCVIMvYe2xIRm2/geWSAPfh950I/mUplUn3ahYn+4PJMdPn3pHjXCNwPwn0ZrM4XrcpnkIXhmKw7ZPhe940wRwnznvXxaxILztHSs13EW2kc4e9n+BW44P0RpnBtvtiAcsQYM4ThXFEae5GWKZCzMuYFzJSJFh4zjM8VvJ+ZuGd1H0LGD85wpljHYqbP5fQRPFZBYQQwBIKIz/AG8UMfDvJNn91xltzx2U0KBw7uCdePqXfupf/5RSn9N+SW/gKyGU0k+rxX0lYcw+c0ADC0GggCLuhHAQmrx8KaAeWGtxYbpwdTK8qhjVUdo0t1UBCwajp2AXPbMD2CB7d74yFHpSuNEeewp7wfe/R6fF/p6ShNkqmDPqznl8zhSIfO7yhT4N9CMF5l5B48E1va8qhcXyMQI0bgpGWR+8z+ZO6I1B9mCQE6S2AjRHHecY8cKvB9/MZ5Pqx8piZKeXAK7nwx/l0AMKjFPGcZy2bDcpWaYrORvZvF1+nzNj3mJj7iTEM0IatNSzOrWyCa4BaLwk2LZEZ0+4gYDof7DjN/FBMlTZfnM1ha4s4EszQFRMs96lx1LqniKyuqX1EtapARxaAlEJSDzH5MBBNyPCEmHIjKCYdod/gdqh3Hmgu3PazObaS/qWm2b3l7qLPl7S22plr6m8ZPDYZPG6Gutsm25e1h1mFv32pvqoU6dplu4vArnLrV3lxzLqf+gtzsJL6huUbP+qn+4lvfwheXcewmF/gYrGjPn/dVCXAnvwpxv5Ux4AQoF35fIoU3n9qyaYNwaEwf4anUyDEXfWySOrzl1OYxqZEbNrGjcGjDRfyh+JxeKc/YFQiobPaz6S7r3CGlHxgLQhgmTGgklB79qj6532E6mM3uc7Ki8yiTzhLZ1Yyql4kO1Yxb93MunpN9laN/mdP/vUcG5/VwKBFvnmbFkwzeD1h/yORFMmRh4ql/Y6OXmOIKov/bFDLg2xQsLf1tigg8eN7wvZhLBmCu7gRPY10adLFzDAiAp/UZi/tvMqDLqypyPGLvV9C6YpjLMdV4XjGe9G9AcUIaXIX+IoFXG6d+pmj+lQ/2v6hliseHsN2s9f3VuFDuLBfKnZRZpIux+N4IMrcL5U5YrKP9Xtqr7b1I4MK8mL52Bi00rcfOK8/x3V9PMc560RdUqYG89YKCzhw+z448r4zId5ehr1zjrHLw5WoGtOxXCpEYj+j6nvLhFX9Hx13P/Wz2TQsripyFRdERxc53TeaRU76vTkJD4+RVyWGXPDe6oKDEV1LsHVxdNazBW2q1VUfT3xnoNq8u1eynotwwRwXH3BPUjcPmhhMX5GUZjSxvCkdeIsxhz/Iy5kPdzJ+R8YMwpmMmdnwigoZBxIJb0Oe3oGUXKWZJhVGNFHt5J3TQ/3e8Ukt93sl9kVrnUDyTeV24H5NnTKf5mo6Kc+db5Sq2ksEs0BbBXgaJFnChtsbKrx/bFLzxhZfHPvDA2Jef31jRPBZF9rKRv3rzvpbBI++9d+TglvveenUk9zMsghPqTsWNM1j/0oz5v0RQLaKDObSDwtLj9AjUHD8iHTl+5MhxqDnT/Q2Qb+SGbcihG7ZBA7y5jb5J39wGb9KyFom0MJuM26dpP1ARW/0xCjFUtGjFXRQQHTsXwK47iRREFZGHgqvnvO4xpt91F63MYYR583CHVPZcDu7T73f6XlyP0h+uh+2Hy0/9XyVr5DvKLPuBMi2o/oPqD5XaB6/Nojv2d/1QySg+r3WxTAxF0zIqox7Dck1GgQUtmIKowpg/zSRwrycDYJGgHtrR9uLCsxyP5STzjtJeLsLsYz16bEfbOKrp5+l4CR3X83iM+MC3yhe8i3zH8+d8DyLrk4wu8vLgKNFnCvMAC44eEhfyUSvb21eOGr2sJdLg8zVEWpaN5leA95SMM49ZpGwT+1MDMI7zo2zmpYE0iPMSWby2J8iX6oF7RhhwSxqbWA31q1JklT9SxMy8FFePUvqThPatiZ6e8lmXhrWB3In7Gi4cUhbg6MbOkT0x/tmiwg3hPr7ffArspzazVVLkHdJ5Y6jpkbWapn/fwHSxPB3bUECcPP7Yw1FSUW08BMXnYa44BqGVUKQnfaiTFn+1cuW8Scvn/eVXdDKQ6xfOrKu7fM32y+a+q2ijRv5k8Y15atFNK+9/Rnh+yOjW0lLaQo+Nn3QbSfvRiZxZH/aJEdWTiFh8CY88Q/tSq6DJCnZA85IbVFxzpn3eGucW2QyDWD9nAkvAFGSBpZxdwP60PkbB7T3LsVLS6UrfO0KyNzUX3ExAjP1x44w3GEkOj9+24Qii7reYPBb24QSTtkEAumdY9RsBTXpNN25A+5aPme5uAd3FrH2rcSKM53KaGFMsPeN4YSMMGmdRGjczmLNNO19Pmsl/na/DHEFFHcrDR4OJGiEfaoShqmMolEGgBvKl4FBwJIJDhUBQdeBfvsgy4SnqugTCM8+YyBfK8BomyiAfEmoZqIl8Q7ASTxwJfKHkUGtkhYWfOmrkoQIS56ECPi2pmFXENzryUeouVJF5opglm1wCeQ2SbUq+r6iwPloRBJBlR64l1x8oHu4szHXIeaUOZ6RQzK0xFNoq8setlqweyWZoHt+sFOSE7O6RrqXz338qUOv21biUkuza9vJEbrDYa/F4jKXZ1vb4YDkvO1TgLMvzObPcTkNhKFinlDbmDwpWocFoAIOcJYPT9aMPNklZ2cPdWWqewZBvzW0OCvmWEXVeo8FjqKktExwl4Ypyk+CRBl+kuP8jKRZk2H0Tfv90VqTIYLGJpXF3QjX78qxOH2Sp/qzmuKwKdl+2scIp2p1Ge/b6dsEkZwnGLF9ps8dmNRlM4L8ZcgwGRTWLDrnINjjfXOINOEzmrITVYs8xFagWi5xvslgLnc3O2opKt6vSaTRPrC1oNWWZchzloQVT76Bnny3PuWVoa31JQaxFzjaquebiItXutch1xoJsydI4bERZl+wwORWuQ/eKbnWulPFBXsTj+/m875c33PDLG0Rx4EE6cQM/DvhLf1PI/C69DNVR5g3kG03sFfv9NXhiYHOFxEwg9iLq9yXZM1KSr2XhdeQa/KqB9CW5HyeZXucSOH9hl/V3DvQBVJBaUq9/C65HLiEn8+jfhKe//jEhY4sPgfSl8vSEl9LEDpGmkX/pfZY0jmK2cGPg6pu6d/B0n74WKbSnA0ZGrfE+yPRGtyb5vGtHMuQLdbY6qH30ju4HvWtG4QU7z7s/Q5iVftvi/P9XIK1LMos7mW/kgejapI8wA15EBU75FZGBBLOccKMkkwLOw/Q0x7cExwCN5OrrIUYRbWIItkh8xdTnDUIsGFDyQWGxXA7d3VgG51w0BD7DAv/t94MfeJSf+Os4tiNODySdXf5x/m5/vqDl+zGV70xqT8cCgZhf1agDaWeuvzsA5aJsGz1l42kaG9feHYc2LenMx8z6U92Y6nImU//Bh/wxQgZ+pzmCjCMdZDZZyNeM0jGBLZBgQYEeU/8VFmPLhnfABf6J4LnRZl4fPGZAvT/y54Kj2j/U7bH0sI9qPIsaL51kqznpJAuiSeli0Jc2084/zNHHnQvCg0iqPkqfj1zrBV977MG0nODpg3tOQkZsUJLoRyf3pNXK6fYBxnB7RnYE7JOTalLp5etpRF+XjxgFEdmugy2PZuas/Kivp1XMFuiqszqTpMf+OppHBuBPX4iSV8dahL4TApceNAenr97GXGLsXPhpegVPgBU4p+7EOeXhay0OHh2QcIHD5ItFYgM62Rax+UwtkOlmmd61mD5IF9IHF9816vXVmpbuO01b/Tr9sd5Nh2c+9ut3Hp3ZtsgC/9EePNcLD2o023KZmEo3WkjLBCETUB50j1cl+57aXAqsrUMgGmRLfOVBpf+COREI+nRvWDQRMPFa4k2X4G4RWFwcOytQ7TY//wSVO8vyBJUvEryX6501PxANXD+Lfr3zJ/Q/M2/AkwUzPXnvsbu9pffj6WWPfwHSF49fhsldJSltZ2rIrH9t6nrijqaKLb/kiwrD2hbTs1v5+5LHH1t3y+Z1jx/Tz7YCLB7bilkmzT0Mgn7tenwVvvJ6/YyePdzVqf1887zlka7krFsmZHxd2oC1bMGTRgtZ0116bN4zniJxxsDGkDIEgH4OwLiNPWLyVgHJQivB6lDtxCG/df99R+gV9Cn6lzdWCKT7pUUQPiRGIpSseANKYDJsO/LF8Zeeof+YwuvwBspCI/9/Nkp53BnnipxEWxMRRWDu1YAQjLjAHZcm7enpmRidGXmh1/rVM2fJM19Zex3vQ/ExUeuZKJCJPZGZUUomFRykXw6iX0LBICg4uPngwXRMs4gtHbimJpP0mtq5b9QdGQ8Od3yaBqbVdJ8M2HMCldkz6vRd1yH9XMZO4P2dnfluTv+xcAGGt8yXzoi1nmL9zb/ZI7xuRraKBqJHFv345xFRifHIBY9E1tKtULUW7ejoOqiiW9ceFZ5Ivf9+6njq+Pup94Un5E/oT35H93z4Icz7nYhmCP1R6ka4ha4VfgQ3Zv5PgUwZmXgITzGgCT/gJUePork/4MH0YtzA+uUPfFrklbzwHUczVbz4ZbSC1Q8Wp2P3uK1mR4ZfyfxPRpQutprNcdrDo82Z3KmBIMIyuwvhhN3BfNYKH9Oz3OzqZoPBE7PGDJp+wx591beP6GeUcWMOZFwtA0n/hyxN18zv0q9TnoYLvz8MoCE/47uiNvkn5QEP/2KAfy4QcTvsCd0cKfcNuByWHHZLmC0k6zf457L9dzLf9w/85EhcYfeYzB/T3//0ydqyImHwjo1gfNN2RemgQRvp/qeferZ+UKnRt/Wen0Kgp0RzBApr7qRXH/77oeLyunJDYM+bv4S564ou/IiJl3JmsbuwsCj75gpj1OExlK3L+2JQaa1j0rS6/CbXoGz/+OEFaBkGChPO6Z0JQ6W3PJxVOXFM3oD+EHnEaBGTaB//Txb4grvoy7ANWwIldJdQsqvvUmUIraYPfP4XSpSFp8/ApZ/B4/LjtBqOsg2OnXmJDmckQ3orNVyceWbH0aMca9L+ovQa8kCLkqlg3ag5L/qSmzNs9vErfP//ATHKtuMAAHjajZA9TgMxEIWfyY9EhBBFDuAKhSKON0m10EUKUgRt+vx4ky3wRruOktByFlpKuAT0nICOO/DWsUBICFhrPd+8Gc+MDeAYDxDYfxe4DSzQwEvgA9TxFriCU3EeuIqG2Aau4UTcB65Tf2amqB7S2/pTJQs08RT4AEd4DVzBFd4DV9EU08A1SHEXuE79EQPkMJjAcZ9DYood9xEy+pa0QcrYkjSkZsmlzbFgXKILBU3bYobjWiFGhysJuclnrkJBT1E11M+AQW4mzszldCdHmbFyk7qlHGbWDbN8YWRXadlaOreKO52EalKqqkiUNY6nL/14hsVTzHyzgqKxJk9nmSVf+/ukWOOGjpmna9rfrhDz/6nqPtJDGxHz2szXpD6LfZs1ll/d6fTakW53ddT/x6hjHywYzvyTa99BeVtOhrHJizSzUutIaa3l3zU/ABw5cLgAAAB42l3SZ5MVVRSF4fuOBEmCiZyDiInb5+zTPYOkgWEIEpUgQUkShpyVoCA5Jy3/LlBz3/ED/WVVdVU/1XvVanW1Bp83rdbRd0Hr/ee/wbdddPEBwxjOCEbyIaMYzRjGMo6PGM8EPuYTPuUzPmcik5jMFKYyjenMYCazmM0c5jKP+SzgCxbyJYv4iq/5hm/5jsW0qUhkgkJNQzc9LOF7lrKM5axgJb2sYjV9rKGftaxjPRv4gY1sYjNb2Mo2fuQntrODneziZ3azh73s4xd+ZT8HOMghDvMbRzjKMY4zwAlOcorTnOEs5zjPBS5yictc4Xf+4CrXuM4N/uQvbnKLv7nNHe5yj/s84CGPeMwTnvKM57zgJa94zT/8O/LymYH+qt02KzOZ2QyzmLXZmN1mz2AmvaSX9JJe0kt6SS/pJb005FV6lV6lV+lVepVepVfpVXqVXtJLekkv6SW9pJc6Xvau7F3Zu7J3Ze/K3pXbQ981Zuc/Qid0Qid0Qid0Qid04n+nc0/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hPJL2kl/SyXtbLelkv62W9rJf1sl7WC73QC73QC73QC73QC73QK3pFr+gVvaJX9Ipe0St6Ra/Wq/VqvVqv1qv1ar1ar9ar9Rq9Rq/Ra/QavUav6XjFnRV3VtxZcWfFnRV3VtpD3zVmt9lj9pqrzNVmn7nG7O+kuyzusrjL4i6LuyzusrjLUjVvAQpVcTgAAAAAAAAB//8AAnjaY2BgYGQAgjO2i86D6AshzNIwGgBAmQUAAAA=) format('woff'),
  17. url('Genericons.ttf') format('truetype'),
  18. url('Genericons.svg#genericonsregular') format('svg');
  19. font-weight: normal;
  20. font-style: normal;
  21. }
  22. @media screen and (-webkit-min-device-pixel-ratio:0) {
  23. @font-face {
  24. font-family: "Genericons";
  25. src: url("./Genericons.svg#Genericons") format("svg");
  26. }
  27. }
  28. /* font awesome */
  29. @font-face {
  30. font-family: 'fa';
  31. src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
  32. src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  33. font-weight: normal;
  34. font-style: normal;
  35. }
  36. @font-face {
  37. font-family: 'Lato';
  38. src: url('../fonts/Lato-Regular.eot?') format('eot'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.ttf') format('truetype');
  39. font-weight: normal;
  40. font-style: normal;
  41. }
  42. @font-face {
  43. font-family: 'Lato';
  44. src: url('../fonts/Lato-Bold.eot?') format('eot'), url('../fonts/Lato-Bold.woff') format('woff'), url('../fonts/Lato-Bold.ttf') format('truetype');
  45. font-weight: bold;
  46. font-style: normal;
  47. }
  48. @font-face {
  49. font-family: 'Lato';
  50. src: url('../fonts/Lato-Italic.eot?') format('eot'), url('../fonts/Lato-Italic.woff') format('woff'), url('../fonts/Lato-Italic.ttf') format('truetype');
  51. font-weight: normal;
  52. font-style: italic;
  53. }
  54. @media screen, projection, tv {
  55. /* general styles and layout */
  56. html, body {
  57. height:100%;
  58. }
  59. body {
  60. background-color: #E9EAED;
  61. color: #222;
  62. font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
  63. }
  64. input, textarea, select, option {
  65. font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
  66. }
  67. a {color: #006c9b;}
  68. a:hover {color: #006c9b;text-decoration:underline;}
  69. #aside_primary a {color: rgba(0,0,0,0.8);}
  70. abbr {border-bottom: none;}
  71. h1 {font-size: 1.6em;}
  72. h2 {font-size: 1.6em;}
  73. h3 {font-size: 1.4em;}
  74. h4 {font-size: 1.4em;}
  75. h5 {font-size: 1.2em;}
  76. h6 {font-size: 1em;}
  77. #wrap {
  78. padding-top: 46px;
  79. border:0 none;
  80. background-color: transparent;
  81. width:960px;
  82. }
  83. #header,
  84. #header-search input[type="submit"],
  85. .form_notice_placeholder,
  86. #site_nav_local_views li.current a,
  87. #site_nav_local_views li a:hover,
  88. #site_nav_object li.current a,
  89. #site_nav_object li a:hover,
  90. #showstream .entry-metadata .repeat,
  91. body#outbox #core ul.messages .notice:before,
  92. .form_user_subscribe input[type="submit"],
  93. #header:before,
  94. address {
  95. background-image: url("../icons-hires.png?v=2");
  96. background-size: 150px 2786px;
  97. background-repeat:no-repeat;
  98. }
  99. address {
  100. background-position: -10px -600px;
  101. cursor: pointer;
  102. display: block;
  103. height: 34px;
  104. left: 50%;
  105. margin-left: -466px;
  106. position: fixed;
  107. top: 6px;
  108. width: 89px;
  109. z-index: 1001;
  110. background-color:#0084B4;
  111. }
  112. address:hover {
  113. background-position: -10px -635px;
  114. }
  115. address a {
  116. height: 34px;
  117. width: 89px;
  118. display:block;
  119. }
  120. .logo {
  121. display: none;
  122. }
  123. #header {
  124. background-color: #fff;
  125. display: block;
  126. height: 30px;
  127. left: 0;
  128. padding-top: 16px;
  129. position: fixed;
  130. top: 0;
  131. width: 100%;
  132. z-index: 100;
  133. box-shadow:0 1px 2px rgba(0, 0, 0, 0.25)
  134. }
  135. #core {
  136. border-top: 0 none;
  137. border-left: 0 none;
  138. border-right: 0 none;
  139. min-height:calc(100vh - 46px);
  140. }
  141. #content_inner {
  142. width:544px;
  143. overflow-x:hidden;
  144. }
  145. #aside_primary_wrapper {
  146. background-color: transparent;
  147. }
  148. #content_wrapper {
  149. background-color:transparent;
  150. border:0 none;
  151. }
  152. #site_nav_local_views_wrapper {
  153. background-color: transparent;
  154. border:0 none;
  155. }
  156. #site_nav_local_views {
  157. padding: 13px 10px 40px;
  158. }
  159. #footer {
  160. display:none;
  161. }
  162. /* header elements */
  163. #site_nav_global_primary {
  164. top: 10px;
  165. left: 50%;
  166. margin-left:-320px;
  167. position:fixed;
  168. }
  169. #site_nav_global_primary li {
  170. margin-right: 0px;
  171. }
  172. #site_nav_global_primary li:last-child {
  173. margin-right: 10px;
  174. }
  175. #site_nav_global_primary a {
  176. padding: 2px 10px 2px 10px;
  177. height: 46px;
  178. line-height: 46px;
  179. box-sizing:border-box;
  180. display: block;
  181. float: left;
  182. color: #777777;
  183. border-bottom:0 none;
  184. transition:all 0.2s;
  185. }
  186. #site_nav_global_primary a:hover {
  187. color: #ED7EFF;
  188. border-bottom:3px solid #ED7EFF;
  189. text-decoration: none;
  190. }
  191. #site_nav_global_primary #nav_logout a:before,
  192. #site_nav_global_primary #nav_admin a:before,
  193. #site_nav_global_primary #nav_account a:before,
  194. #site_nav_global_primary #toggleqvitter a:before,
  195. #site_nav_global_primary #top_nav_doc_faq a:before {
  196. content: "\f085";
  197. display: inline-block;
  198. font: 18px/1 "fa";
  199. padding-right:10px;
  200. vertical-align:middle;
  201. padding-bottom:3px;
  202. -webkit-font-smoothing: antialiased;
  203. -moz-osx-font-smoothing: grayscale;
  204. }
  205. #site_nav_global_primary #nav_admin a:before {
  206. content: "\f12e";
  207. }
  208. #site_nav_global_primary #nav_logout a:before {
  209. content: "\f206";
  210. }
  211. #site_nav_global_primary #toggleqvitter a:before {
  212. content: "\f0c3";
  213. }
  214. #site_nav_global_primary #top_nav_doc_faq a:before {
  215. content: "\f1cd";
  216. }
  217. #header-search {
  218. top: 1px;
  219. margin-left: 6px;
  220. }
  221. #header-search #search-q {
  222. position: relative;
  223. width: 131px;
  224. height: 12px;
  225. margin-right: 10px;
  226. padding: 2px 22px 2px 6px;
  227. border-radius: 4px;
  228. border: none;
  229. font-size: 0.88em;
  230. }
  231. #header-search input[type="submit"] {
  232. background-color: transparent;
  233. border: 0 none;
  234. cursor: pointer;
  235. height: 18px;
  236. position: absolute;
  237. right: 25px;
  238. text-indent: -9999px;
  239. top: 4px;
  240. width: 20px;
  241. z-index: 2;
  242. background-position: 0px -293px;
  243. }
  244. /* hide site notice after 5 s */
  245. #site_notice {
  246. background-color: pink;
  247. border-radius: 0;
  248. bottom: 0;
  249. box-sizing: border-box;
  250. font-size: 20px;
  251. margin: 0;
  252. padding: 10px 20px 10px 40px;
  253. position: fixed;
  254. text-align: left;
  255. width: 100%;
  256. -moz-animation: hideSiteNotice 2s ease-in 5s forwards;
  257. -webkit-animation: hideSiteNotice 2s ease-in 5s forwards;
  258. -o-animation: hideSiteNotice 2s ease-in 5s forwards;
  259. animation: hideSiteNotice 2s ease-in 5s forwards;
  260. -webkit-animation-fill-mode: forwards;
  261. animation-fill-mode: forwards;
  262. }
  263. #site_notice:before {
  264. width:30px;
  265. height:30px;
  266. position:absolute;
  267. display:block;
  268. left:10px;
  269. top:10px;
  270. content: "\f071";
  271. font-family:fa;
  272. }
  273. @keyframes hideSiteNotice {
  274. to {
  275. bottom:-1000px;
  276. overflow:hidden;
  277. }
  278. }
  279. @-webkit-keyframes hideSiteNotice {
  280. to {
  281. bottom:-1000px;
  282. visibility:hidden;
  283. }
  284. }
  285. #header-search #search-q {
  286. background-color: rgba(0,0,0,0.03);
  287. border: 1px solid rgba(0,0,0,0.1);
  288. border-radius: 21px;
  289. box-sizing: border-box;
  290. color: rgba(0,0,0,0.8);
  291. display: block;
  292. font-size: 12px;
  293. height: 32px;
  294. line-height: 1;
  295. padding: 5px 27px 6px 12px;
  296. transition: all 0.2s ease-in-out 0s;
  297. width:100%;
  298. outline:none;
  299. margin-top:-4px;
  300. right:10px;
  301. width:163px;
  302. }
  303. #header-search #search-q:focus {
  304. box-shadow:none;
  305. text-shadow:none;
  306. background-color:#fff;
  307. color:#666;
  308. }
  309. #site_nav_global_primary ul {
  310. height:40px;
  311. position:absolute;
  312. top:-10px;
  313. right:190px;
  314. }
  315. #content {
  316. background-color: transparent;
  317. padding: 12px 40px 40px 0;
  318. }
  319. /* faq */
  320. body#doc #content_inner {
  321. background-color:#fff;
  322. padding:10px;
  323. border-radius:5px;
  324. }
  325. body#doc #content_inner h1 {
  326. padding-top:10px;
  327. font-size:25px;
  328. color:#333;
  329. text-transform:none;
  330. }
  331. body#doc #content_inner h2 {
  332. padding-top:50px;
  333. line-height: 27px;
  334. }
  335. body#doc #content_inner h2 a {
  336. font-size:0;
  337. }
  338. body#doc #content_inner h2 a:before {
  339. content:"\f0aa";
  340. font-family:"fa";
  341. font-size:20px;
  342. }
  343. body#doc #content_inner h2 a:hover {
  344. text-decoration:none;
  345. }
  346. body#doc #content_inner h2#faq-table-of-contents {
  347. padding-top:20px;
  348. }
  349. body#doc #content_inner li {
  350. padding-left:20px;
  351. font-weight:bold;
  352. }
  353. body#doc #content_inner p.indent {
  354. background-color: rgba(0, 0, 0, 0.1);
  355. border-left: 3px solid #ccc;
  356. margin-left: 50px;
  357. padding: 5px 5px 5px 10px;
  358. }
  359. body#doc #content_inner p.faq-credits {
  360. margin-top:40px;
  361. }
  362. /* input forms */
  363. .input_forms {
  364. background: none repeat scroll 0 0 #fff;
  365. border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  366. border-image: none;
  367. border-radius: 3px;
  368. border-style: solid;
  369. border-width: 1px;
  370. float: left;
  371. left: 0;
  372. margin-bottom: 10px;
  373. padding: 0;
  374. top: 0;
  375. width: 542px;
  376. }
  377. .input_form fieldset fieldset label {
  378. background: #f7f7f7;
  379. }
  380. .input_forms > label {
  381. margin: 4px 1ex;
  382. }
  383. #input_form_nav {
  384. margin: 2px;
  385. }
  386. #input_form_nav li a {
  387. display: block;
  388. float: left;
  389. font-family: "Helvetica Neue",Arial,sans-serif;
  390. font-size: 13px;
  391. font-weight: bold;
  392. line-height: 1em;
  393. background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%) repeat-x scroll 0 0 rgba(0, 0, 0, 0);
  394. border: 1px solid #cccccc;
  395. border-radius: 4px;
  396. color: rgba(0,0,0,0.8);
  397. padding: 5px 10px;
  398. cursor: pointer;
  399. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  400. }
  401. #input_form_nav li.current a {
  402. background: -moz-linear-gradient(top, #33bcef 0%, #019ad2 100%); /* FF3.6+ */
  403. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#33bcef), color-stop(100%,#019ad2)); /* Chrome,Safari4+ */
  404. background: -webkit-linear-gradient(top, #33bcef 0%,#019ad2 100%); /* Chrome10+,Safari5.1+ */
  405. background: -o-linear-gradient(top, #33bcef 0%,#019ad2 100%); /* Opera 11.10+ */
  406. background: -ms-linear-gradient(top, #33bcef 0%,#019ad2 100%); /* IE10+ */
  407. background: linear-gradient(to bottom, #33bcef 0%,#019ad2 100%); /* W3C */
  408. background-repeat: repeat-x;
  409. text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 1px;
  410. border-color:#096eb3;
  411. color:#fff;
  412. }
  413. #input_form_nav li:hover a {
  414. background: -moz-linear-gradient(top, #2daddc 0%, #0271bf 100%); /* FF3.6+ */
  415. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2daddc), color-stop(100%,#0271bf)); /* Chrome,Safari4+ */
  416. background: -webkit-linear-gradient(top, #2daddc 0%,#0271bf 100%); /* Chrome10+,Safari5.1+ */
  417. background: -o-linear-gradient(top, #2daddc 0%,#0271bf 100%); /* Opera 11.10+ */
  418. background: -ms-linear-gradient(top, #2daddc 0%,#0271bf 100%); /* IE10+ */
  419. background: linear-gradient(to bottom, #2daddc 0%,#0271bf 100%); /* W3C */
  420. background-repeat: repeat-x;
  421. text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 1px;
  422. border-color:#096eb3;
  423. color:#fff;
  424. }
  425. .input_form_nav_tab a, .input_form_nav_tab.current a {
  426. text-decoration: none;
  427. }
  428. .form_notice .error, .form_notice .success, .form_notice .notice-status {
  429. background-color: #33bcef;
  430. border: 0 none;
  431. border-radius: 0;
  432. color: rgba(255, 255, 255, 0.9);
  433. line-height: 1.2em;
  434. margin: 0;
  435. overflow: auto;
  436. padding: 5px 5px 5px 10px;
  437. position: relative;
  438. width: 527px;
  439. overflow:hidden;
  440. animation: rolldown 0.3s linear 1;
  441. }
  442. @keyframes rolldown {
  443. 0% {height: 0;}
  444. 100% {height: 17px;}
  445. }
  446. body #aside_primary .account_profile_block .user_profile_tags {
  447. display:none;
  448. }
  449. /* filter people by tags doesn't work anyway, and is confusing as peopletags and lists have been merged, it seems */
  450. #filter_tags {
  451. display:none;
  452. }
  453. /* already present in right margin */
  454. #content_inner > .entity_actions > #entity_remote_subscribe {
  455. display:none;
  456. }
  457. /* settings */
  458. #content_inner > .form_settings {
  459. background-color: #fff;
  460. border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  461. border-image: none;
  462. border-radius: 3px;
  463. border-style: solid;
  464. border-width: 1px;
  465. padding: 12px 12px 0;
  466. width: 518px;
  467. padding:20px;
  468. margin-bottom:20px;
  469. }
  470. #aside_primary #account_actions {
  471. background-color: rgba(255,192,203,0.5);
  472. border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  473. border-image: none;
  474. border-radius: 3px;
  475. border-style: solid;
  476. border-width: 1px;
  477. padding: 12px 12px 0;
  478. width: 150px;
  479. padding:20px;
  480. margin-bottom:20px;
  481. }
  482. /* profile lists */
  483. ul.profile_list > li {
  484. background-color: #fff;
  485. border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  486. border-image: none;
  487. border-radius: 3px;
  488. border-style: solid;
  489. border-width: 1px;
  490. padding: 12px 12px 0;
  491. width: 518px;
  492. padding-bottom:8px;
  493. }
  494. ul.profile_list li {
  495. margin-bottom: 8px;
  496. }
  497. .profile_list .h-card .p-nickname:before {
  498. content:"@";
  499. }
  500. #groupdirectory .profile_list .h-card .p-nickname:before {
  501. content:"!";
  502. }
  503. .profile_list .h-card .p-nickname {
  504. font-size:14px;
  505. font-weight:bold;
  506. }
  507. .profile_list .h-card .u-photo {
  508. margin-right: 10px;
  509. }
  510. .profile .entity_profile .p-name,
  511. .profile .entity_profile .p-locality,
  512. .profile .entity_profile .role,
  513. .profile .entity_profile > span,
  514. .profile .entity_profile .u-url[rel~="contact"] {
  515. display: inline;
  516. margin-left: 0;
  517. font-size:0.88em;
  518. color:#9197a3;
  519. }
  520. .entity_profile .p-name:before,
  521. .entity_profile .p-name:after {
  522. content: "";
  523. }
  524. .profile .entity_profile .u-url {
  525. font-size:0.88em;
  526. }
  527. .entity_profile .role:before {
  528. content: "(";
  529. }
  530. .entity_profile .role:after {
  531. content: ")";
  532. }
  533. .profile .entity_profile .p-locality:before {
  534. content:" · ";
  535. }
  536. /* profiles' profile blocks */
  537. #aside_primary .account_profile_block .profile_block_description {
  538. font-style:italic;
  539. padding:10px 0;
  540. }
  541. #aside_primary .account_profile_block .entity_actions .entity_edit {
  542. position:absolute;
  543. height:25px;
  544. width:auto;
  545. top:-5px;
  546. display:block;
  547. float:none;
  548. margin:0;
  549. padding:0;
  550. min-width:0;
  551. left: 100px;
  552. }
  553. #aside_primary .account_profile_block .entity_actions .entity_edit:hover {
  554. opacity:1;
  555. }
  556. #aside_primary .account_profile_block .entity_actions ul li a {
  557. background-color:transparent !important;
  558. }
  559. #aside_primary .account_profile_block .entity_send-a-message { /* not working anyway */
  560. display:none;
  561. }
  562. #aside_primary .section .entity_actions > p {
  563. background-color: transparent !important;
  564. display: block;
  565. float: none;
  566. height: 25px;
  567. margin: 0;
  568. min-width: 0;
  569. /* opacity: 0.5; */
  570. padding: 0;
  571. position: absolute;
  572. right: 0;
  573. top: -3px;
  574. width: auto;
  575. }
  576. #aside_primary .section .entity_actions > p:hover {
  577. /* opacity:1; */
  578. }
  579. #aside_primary .section a.entity_remote_subscribe {
  580. background-color:transparent !important;
  581. padding-right:2px;
  582. }
  583. .entity_subscribe .dialogbox,
  584. .entity_tag .dialogbox {
  585. width: 200px;
  586. }
  587. .form_settings fieldset {
  588. border: medium none;
  589. margin-bottom: 0;
  590. margin-top: 0;
  591. }
  592. #aside_primary .account_profile_block .entity_actions {
  593. opacity:1;
  594. }
  595. #aside_primary .account_profile_block .entity_actions li {
  596. margin-bottom:3px;
  597. }
  598. #aside_primary .account_profile_block .entity_actions input[type="submit"],
  599. #aside_primary .account_profile_block .entity_actions p {
  600. width:114px;
  601. text-align:center;
  602. }
  603. #aside_primary .account_profile_block .entity_actions input[type="submit"],
  604. #aside_primary .account_profile_block .entity_actions p,
  605. .form_user_subscribe input[type="submit"],
  606. .form_user_unsubscribe input[type="submit"],
  607. .form_user_block input[type="submit"] {
  608. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(221,221,221,1) 100%);
  609. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(221,221,221,1)));
  610. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);
  611. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);
  612. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);
  613. background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%);
  614. background-repeat: repeat-x;
  615. border: 1px solid #cccccc;
  616. border-radius: 4px;
  617. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  618. color: rgba(0,0,0,0.8);
  619. cursor: pointer;
  620. display: inline-block;
  621. font-family: "Helvetica Neue",Arial,sans-serif;
  622. font-size: 13px;
  623. font-weight: bold;
  624. line-height: 18px;
  625. margin: 0;
  626. padding: 0;
  627. position: relative;
  628. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  629. padding:5px 10px;
  630. margin-bottom:4px;
  631. box-sizing: border-box;
  632. margin-left:-4px;
  633. text-align:center;
  634. }
  635. #aside_primary .account_profile_block .entity_actions input[type="submit"]:hover,
  636. #aside_primary .account_profile_block .entity_actions p:hover,
  637. .form_user_subscribe input[type="submit"]:hover {
  638. background-color: #D8D8D8;
  639. background: -moz-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(216,216,216,1) 100%);
  640. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(248,248,248,1)), color-stop(100%,rgba(216,216,216,1)));
  641. background: -webkit-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  642. background: -o-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  643. background: -ms-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  644. background: linear-gradient(to bottom, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  645. border-color: #BBBBBB;
  646. text-decoration: none;
  647. }
  648. .form_user_subscribe input[type="submit"] {
  649. background: url("../icons-hires.png?v=1") no-repeat scroll 2px -219px / 150px 2786px, linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  650. padding: 5px 0 5px 30px !important;
  651. padding:5px 0 5px 30px !important;
  652. }
  653. .form_user_subscribe input[type="submit"]:hover {
  654. background: url("../icons-hires.png?v=1") 2px -219px / 150px 2786px no-repeat, linear-gradient(to bottom, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%) !important;
  655. padding:5px 0 5px 30px !important;
  656. }
  657. .form_user_unsubscribe input[type="submit"] {
  658. background-color: #019AD2 !important;
  659. background: -moz-linear-gradient(top, rgba(51,188,239,1) 0%, rgba(1,154,210,1) 100%) !important;
  660. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(51,188,239,1)), color-stop(100%,rgba(1,154,210,1))) !important;
  661. background: -webkit-linear-gradient(top, rgba(51,188,239,1) 0%,rgba(1,154,210,1) 100%) !important;
  662. background: -o-linear-gradient(top, rgba(51,188,239,1) 0%,rgba(1,154,210,1) 100%) !important;
  663. background: -ms-linear-gradient(top, rgba(51,188,239,1) 0%,rgba(1,154,210,1) 100%) !important;
  664. background: linear-gradient(to bottom, rgba(51,188,239,1) 0%,rgba(1,154,210,1) 100%) !important;
  665. background-repeat: repeat-x;
  666. border-color: #057ED0 !important;
  667. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
  668. color: #FFFFFF !important;
  669. text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25) !important;
  670. }
  671. .form_user_unsubscribe input[type="submit"]:hover,
  672. .form_user_block input[type="submit"]:hover {
  673. background-color: #c43c35 !important;
  674. background: -moz-linear-gradient(top, rgba(238,95,91,1) 0%, rgba(196,60,53,1) 100%) !important;
  675. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,95,91,1)), color-stop(100%,rgba(196,60,53,1))) !important;
  676. background: -webkit-linear-gradient(top, rgba(238,95,91,1) 0%,rgba(196,60,53,1) 100%) !important;
  677. background: -o-linear-gradient(top, rgba(238,95,91,1) 0%,rgba(196,60,53,1) 100%) !important;
  678. background: -ms-linear-gradient(top, rgba(238,95,91,1) 0%,rgba(196,60,53,1) 100%) !important;
  679. background: linear-gradient(to bottom, rgba(238,95,91,1) 0%,rgba(196,60,53,1) 100%) !important;
  680. background-repeat: repeat-x;
  681. border-color: #a93730 #a93730 #952f2a !important;
  682. color:#ffffff !important;
  683. text-shadow: none !important;
  684. }
  685. /* smaller button in userdirectory */
  686. #userdirectory .form_user_subscribe input[type="submit"],
  687. #userdirectory .form_user_unsubscribe input[type="submit"] {
  688. font-size:11px;
  689. width:110px;
  690. }
  691. .form_notice_placeholder .placeholder,
  692. .form_notice textarea ,
  693. .input_form .form_settings li input,
  694. .input_form .form_settings li textarea,
  695. .threaded-replies .placeholder { /* TODO combine all these declarations */
  696. border-radius: 4px;
  697. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  698. }
  699. .input_form .form_settings .submit {
  700. font-size: 1.1em;
  701. }
  702. /* site nav local views */
  703. #site_nav_local_views h3,
  704. #aside_primary h2 {
  705. color: rgba(0,0,0,0.4);
  706. font-size: 13px;
  707. font-weight: bold;
  708. letter-spacing: 0;
  709. margin-bottom: 5px;
  710. text-shadow: none;
  711. text-transform: uppercase;
  712. padding:0 10px;
  713. }
  714. #site_nav_local_views li,
  715. #site_nav_object li {
  716. display: block;
  717. margin: 0 0 3px;
  718. }
  719. #site_nav_local_views a,
  720. #site_nav_object a {
  721. display: block;
  722. width: 105px;
  723. padding: 0 10px;
  724. border-radius: 4px;
  725. word-wrap: break-word;
  726. color:rgba(0,0,0,0.7);
  727. border-radius:3px;
  728. white-space: nowrap;
  729. overflow: hidden;
  730. text-overflow: ellipsis;
  731. }
  732. #site_nav_object a {
  733. font-size:15px;
  734. }
  735. #site_nav_local_views li.current a {
  736. background-position:-3px -54px;
  737. color:rgba(0,0,0,0.8);
  738. }
  739. #site_nav_object li.current a {
  740. background-position:-3px -53px;
  741. color:rgba(0,0,0,0.8);
  742. }
  743. #site_nav_local_views li a:hover{
  744. background-position:-3px -79px;
  745. text-decoration:none;
  746. }
  747. #site_nav_object li a:hover {
  748. background-position:-3px -78px;
  749. text-decoration:none;
  750. }
  751. #site_nav_local_views .current a,
  752. #site_nav_object .current a {
  753. font-weight:bold;
  754. text-decoration:none;
  755. }
  756. /* aside primary */
  757. #aside_primary {
  758. width:205px;
  759. float: left;
  760. left: 802px;
  761. margin: 0 0 20px;
  762. overflow: hidden;
  763. padding: 13px 10px 40px;
  764. }
  765. #aside_primary .section {
  766. font-size: 0.88em;
  767. }
  768. #aside_primary h2 {
  769. padding:0;
  770. }
  771. .profile_block .entity_actions {
  772. float: right;
  773. width: 100px;
  774. }
  775. .profile_block .entity_moderation:hover ul,
  776. .profile_block .entity_role:hover ul {
  777. right: 20px;
  778. }
  779. .profile_block_name {
  780. font-size: 14px;
  781. font-weight: bold;
  782. }
  783. .profile_block_location {
  784. font-weight: bold;
  785. }
  786. .profile_block_description {
  787. line-height: 1.2em;
  788. }
  789. .section ul.entities {
  790. width: 240px;
  791. }
  792. .section .entities li {
  793. margin-right: 3.6px;
  794. margin-bottom: 5px;
  795. width: 24px;
  796. }
  797. #popular_notices .avatar {
  798. position: relative;
  799. top: 4px;
  800. margin-bottom: 6px;
  801. height:24px;
  802. width:24px;
  803. }
  804. #popular_notices .p-author {
  805. position:relative;
  806. }
  807. #aside_primary td {
  808. padding-right: 20px;
  809. padding-bottom: 14px;
  810. }
  811. #aside_primary td .nickname {
  812. line-height: 1.6em;
  813. }
  814. .section .avatar {
  815. box-shadow: none;
  816. border-radius: 5px;
  817. }
  818. .account_profile_block {
  819. position:relative;
  820. }
  821. .account_profile_block:before {
  822. border: 1px solid rgba(0, 0, 0, 0.2);
  823. border-radius: 5px;
  824. box-sizing: border-box;
  825. content: "";
  826. display: block;
  827. height: 96px;
  828. left: 0;
  829. position: absolute;
  830. top: 0;
  831. width: 96px;
  832. }
  833. .invite_button {
  834. background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%) repeat-x scroll 0 0 rgba(0, 0, 0, 0);
  835. border: 1px solid #cccccc;
  836. border-radius: 4px;
  837. color: rgba(0,0,0,0.8);
  838. cursor: pointer;
  839. display: inline-block;
  840. font-family: "Helvetica Neue",Arial,sans-serif;
  841. font-size: 13px;
  842. font-weight: bold;
  843. line-height: 18px;
  844. margin-bottom: 0;
  845. margin-right: 0;
  846. margin-top: 0;
  847. padding: 5px 20px;
  848. position: relative;
  849. text-align: center;
  850. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  851. width: 150px;
  852. }
  853. .invite_button:hover {
  854. background-color: #D8D8D8;
  855. background: -moz-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(216,216,216,1) 100%);
  856. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(248,248,248,1)), color-stop(100%,rgba(216,216,216,1)));
  857. background: -webkit-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  858. background: -o-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  859. background: -ms-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  860. background: linear-gradient(to bottom, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
  861. border-color: #BBBBBB;
  862. text-decoration: none;
  863. color: rgba(0,0,0,0.8);
  864. }
  865. /* notice form */
  866. .input_form {
  867. display: none;
  868. float: left;
  869. padding-bottom: 0;
  870. position: relative;
  871. width: 520px;
  872. }
  873. .form_notice_placeholder {
  874. /* background-position: 12px 12px; */
  875. background:none;
  876. height: 40px;
  877. opacity: 0.5;
  878. padding: 12px;
  879. }
  880. .form_notice_placeholder:after {
  881. content: "\f040";
  882. display: block;
  883. font: 25px/1 "fa";
  884. height: 50px;
  885. left: 18px;
  886. position: absolute;
  887. top: 19px;
  888. width: 50px;
  889. -webkit-font-smoothing: antialiased;
  890. -moz-osx-font-smoothing: grayscale;
  891. }
  892. .form_notice_placeholder:hover {
  893. opacity:0.7;
  894. }
  895. .form_notice_placeholder .placeholder {
  896. border: 0 none;
  897. color: #000;
  898. font-size: 1em;
  899. padding: 12px 4px 16px 40px;
  900. width: 508px;
  901. z-index: 97;
  902. font-size:15px;
  903. background:transparent;
  904. }
  905. .form_notice_placeholder .placeholder,
  906. .form_notice textarea,
  907. .input_form .form_settings li input,
  908. .input_form .form_settings li textarea,
  909. .threaded-replies .placeholder {
  910. border-radius: 0;
  911. box-shadow: none;
  912. }
  913. .form_notice textarea {
  914. outline:none;
  915. border:0 none;
  916. border-bottom:1px solid #e9eaed;
  917. box-shadow: none;
  918. display: block;
  919. float: none;
  920. resize: none;
  921. width:518px;
  922. padding:12px;
  923. height: 60px;
  924. }
  925. .form_notice label.notice_data-attach {
  926. background-image:none;
  927. display: block;
  928. left: 5px;
  929. position: absolute;
  930. top: 90px;
  931. }
  932. .form_notice label.notice_data-attach:before {
  933. content: "\f416";
  934. display: block;
  935. font: 35px/1 "Genericons";
  936. height: 35px;
  937. left: 0px;
  938. position: absolute;
  939. top: 0px;
  940. width: 35px;
  941. -webkit-font-smoothing: antialiased;
  942. -moz-osx-font-smoothing: grayscale;
  943. color:rgba(0,0,0,0.6);
  944. text-indent:0;
  945. text-align:left;
  946. }
  947. .checkbox-wrapper.checked label.checkbox,
  948. .checkbox-wrapper.unchecked label.checkbox {
  949. background-image:none;
  950. opacity: 0.6;
  951. padding-left: 30px;
  952. font-size:0;
  953. color:transparent;
  954. }
  955. .checkbox-wrapper.checked label.checkbox:before,
  956. .checkbox-wrapper.unchecked label.checkbox:before {
  957. content: "\f023";
  958. display: block;
  959. font: 20px/1 "fa";
  960. height: 35px;
  961. left: 0px;
  962. position: absolute;
  963. top: 0px;
  964. width: 35px;
  965. -webkit-font-smoothing: antialiased;
  966. -moz-osx-font-smoothing: grayscale;
  967. color:rgba(0,0,0,0.6);
  968. text-indent:0;
  969. text-align:left;
  970. }
  971. .checkbox-wrapper.unchecked label.checkbox:before {
  972. content: "\f09c";
  973. }
  974. .form_notice .count {
  975. right: -18px;
  976. top:65px;
  977. }
  978. .form_notice fieldset {
  979. background-color: #F6F7F8;
  980. height:130px;
  981. }
  982. .form_notice {
  983. margin-bottom: 0;
  984. }
  985. .form_notice .checkbox-wrapper {
  986. display: block;
  987. left: 35px;
  988. margin-left: 10px;
  989. overflow: hidden;
  990. position: absolute;
  991. top: 97px;
  992. width: 17px;
  993. }
  994. .form_notice .to-selector > label {
  995. display:none;
  996. }
  997. .to-selector select {
  998. display:block;
  999. position:absolute;
  1000. top:99px;
  1001. left:75px;
  1002. }
  1003. #notice_action-submit {
  1004. display: block;
  1005. margin-top: 0;
  1006. position: absolute;
  1007. right: -15px;
  1008. top: 92px;
  1009. }
  1010. /* reply form */
  1011. .threaded-replies .form_notice label.notice_data-attach {
  1012. left: 11px;
  1013. right: auto;
  1014. top: 101px;
  1015. }
  1016. .threaded-replies .form_notice .count {
  1017. right: 14px;
  1018. top: 77px;
  1019. }
  1020. .threaded-replies .form_notice textarea {
  1021. width: 495px;
  1022. border:1px solid #dcdee3;
  1023. }
  1024. .threaded-replies .form_notice .submit {
  1025. height:30px;
  1026. right: 10px !important;
  1027. top: 103px !important;
  1028. }
  1029. .threaded-replies .notice-reply {
  1030. clear: left;
  1031. padding: 10px 10px 3px;
  1032. position: relative;
  1033. }
  1034. /* DM's */
  1035. body#inbox,
  1036. body#outbox {
  1037. }
  1038. body#inbox .form_notice select[id="to"],
  1039. body#outbox .form_notice select[id="to"] {
  1040. float: none;
  1041. margin: -4px 0 10px 10px;
  1042. max-width: 450px;
  1043. position: absolute;
  1044. top: 98px;
  1045. left:0px;
  1046. }
  1047. body#inbox .form_notice label[for="to"],
  1048. body#outbox .form_notice label[for="to"] {
  1049. display:none;
  1050. }
  1051. body#inbox #form_notice-direct.form_notice textarea,
  1052. body#outbox #form_notice-direct.form_notice textarea {
  1053. width: 518px;
  1054. }
  1055. body#inbox #form_notice-direct.form_notice .count,
  1056. body#outbox #form_notice-direct.form_notice .count {
  1057. right: -17px;
  1058. top: 67px;
  1059. }
  1060. ul.messages > .notice {
  1061. padding-bottom:20px !important;
  1062. }
  1063. body#outbox #core ul.messages .notice:before {
  1064. background-position: -8px -150px;
  1065. content: " ";
  1066. display: block;
  1067. height: 40px;
  1068. left: 0;
  1069. position: absolute;
  1070. top: 17px;
  1071. width: 40px;
  1072. z-index: 10;
  1073. }
  1074. /* pagniation */
  1075. #pagination {
  1076. border-radius: 0;
  1077. height: 1.2em;
  1078. padding-bottom: 12px;
  1079. width: 533px;
  1080. background:transparent;
  1081. }
  1082. #pagination .nav_next {
  1083. border-radius: 25px;
  1084. display: block;
  1085. float: none;
  1086. font-size: 25px;
  1087. height: 50px;
  1088. line-height: 50px;
  1089. text-align: center;
  1090. width: 533px;
  1091. }
  1092. #pagination .nav_prev {
  1093. display:none;
  1094. }
  1095. #pagination .nav_next a {
  1096. border-radius: 50px;
  1097. display: block;
  1098. float: none;
  1099. font-size: 25px;
  1100. height: 50px;
  1101. line-height: 50px;
  1102. text-align: center;
  1103. width: 533px;
  1104. border:2px solid rgba(0,0,0,0.2);
  1105. padding:0;
  1106. color:rgba(0,0,0,0.2);
  1107. }
  1108. #pagination .nav_next a:hover {
  1109. border:2px solid rgba(0,0,0,0.5);
  1110. color:rgba(0,0,0,0.5);
  1111. text-decoration:none;
  1112. }
  1113. /* notices etc */
  1114. .notice .h-entry {
  1115. overflow:visible;
  1116. }
  1117. .notice.h-entry .attachments {
  1118. clear: both;
  1119. margin-top: -16px;
  1120. position: relative;
  1121. top: 0;
  1122. z-index: 1;
  1123. }
  1124. .notice .attachments .inline-attachment {
  1125. color: transparent;
  1126. font-size: 0;
  1127. line-height: 0;
  1128. list-style: none outside none;
  1129. margin-bottom: 0;
  1130. }
  1131. .notice .attachments .inline-attachment img {
  1132. color: transparent;
  1133. font-size: 0;
  1134. line-height: 0;
  1135. list-style: none outside none;
  1136. margin-bottom: 0;
  1137. padding-top:20px;
  1138. }
  1139. #content h1 {
  1140. color: rgba(0,0,0,0.4);
  1141. font-size: 13px;
  1142. font-weight: bold;
  1143. letter-spacing: 0;
  1144. margin-bottom: 5px;
  1145. padding: 0;
  1146. text-shadow: none;
  1147. text-transform: uppercase;
  1148. }
  1149. #page_notice {
  1150. clear: both;
  1151. margin-bottom: 18px;
  1152. color:rgba(0,0,0,0.4);
  1153. font-size:13px;
  1154. letter-spacing: 0.3px;
  1155. }
  1156. #content #content_inner > .threaded-notices > .notice,
  1157. #content #content_inner > .threaded-notices > .infscr-pages > .notice,
  1158. #content #content_inner > .notices > .infscr-pages > .notice,
  1159. #content #content_inner > .notices > .notice,
  1160. #content #notices_primary > .threaded-notices > .notice,
  1161. #content #notices_primary > .threaded-notices > .infscr-pages > .notice,
  1162. #content #notices_primary > .notices > .infscr-pages > .notice,
  1163. #content #notices_primary > .notices > .notice {
  1164. border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  1165. border-image: none;
  1166. border-radius: 3px;
  1167. border-style: solid;
  1168. border-width: 1px;
  1169. width:518px;
  1170. background-color:#fff;
  1171. padding:12px;
  1172. padding-bottom:0;
  1173. }
  1174. #content #content_inner > .threaded-notices > .notice:hover,
  1175. #content #content_inner > .threaded-notices > .infscr-pages > .notice:hover,
  1176. #content #content_inner > .notices > .infscr-pages > .notice:hover,
  1177. #content #content_inner > .notices > .notice:hover,
  1178. #content #notices_primary > .threaded-notices > .notice:hover,
  1179. #content #notices_primary > .threaded-notices > .infscr-pages > .notice:hover,
  1180. #content #notices_primary > .notices > .infscr-pages > .notice:hover,
  1181. #content #notices_primary > .notices > .notice:hover {
  1182. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.15) rgba(0,0,0,0.25);
  1183. }
  1184. #content .notice .p-author {
  1185. display: inline-block;
  1186. font-weight: bold;
  1187. height: 56px;
  1188. margin-right: 0;
  1189. white-space: nowrap;
  1190. padding-right:5px;
  1191. }
  1192. ul.messages .notice .p-author {
  1193. }
  1194. #content .notices > .notice > .threaded-replies .addressees {
  1195. display:none;
  1196. }
  1197. .notice .addressees:before {
  1198. content: "\f105\00a0";
  1199. color:#aaa;
  1200. font-family:fa;
  1201. font-weight:normal;
  1202. }
  1203. .notice .addressees {
  1204. }
  1205. .notice .addressees {
  1206. display: inline-block;
  1207. font-weight: bold;
  1208. margin-bottom: 4px;
  1209. white-space: nowrap;
  1210. }
  1211. .notice .addressees .group {
  1212. font-style:normal;
  1213. font-weight:bold;
  1214. }
  1215. .notice .addressees .addressee.group:before {
  1216. content: "!";
  1217. }
  1218. #popular_notices .notice .p-author {
  1219. display: inline;
  1220. }
  1221. #core .p-author .u-photo {
  1222. float: left;
  1223. margin-right: 8px;
  1224. border-radius: 5px;
  1225. }
  1226. #core #content .p-author:before {
  1227. border: 1px solid rgba(0, 0, 0, 0.2);
  1228. box-sizing: border-box;
  1229. content: "";
  1230. display: block;
  1231. height: 48px;
  1232. left: 12px;
  1233. position: absolute;
  1234. top: 12px;
  1235. width: 48px;
  1236. border-radius: 5px;
  1237. }
  1238. #core #content .peopletag-profile .p-author:before {
  1239. width:96px;
  1240. height:96px;
  1241. left: 0;
  1242. top: 0;
  1243. }
  1244. #content .notice .e-content,
  1245. .user_in #content .notice .e-content {
  1246. font-size: 15px;
  1247. margin-left: 0;
  1248. margin-top: 0;
  1249. position: relative;
  1250. white-space: normal;
  1251. z-index: 10;
  1252. }
  1253. .notice .attachment:not(.more) {
  1254. background: none;
  1255. padding-left:0;
  1256. }
  1257. #content #content_inner > .threaded-notices > .notice > .entry-metadata,
  1258. #content #content_inner > .notices > .notice > .entry-metadata,
  1259. #content #notices_primary > .threaded-notices > .notice > .entry-metadata,
  1260. #content #notices_primary > .notices > .notice > .entry-metadata {
  1261. color: #9197a3;
  1262. margin-bottom: 7px;
  1263. margin-left: 56px;
  1264. margin-top: 12px;
  1265. position: absolute;
  1266. top: 24px;
  1267. width: 468px;
  1268. z-index: 10;
  1269. }
  1270. #content #content_inner > .threaded-notices > .notice.notice-source-activity > .entry-metadata,
  1271. #content #content_inner > .notices > .notice.notice-source-activity > .entry-metadata,
  1272. #content #notices_primary > .threaded-notices > .notice.notice-source-activity > .entry-metadata,
  1273. #content #notices_primary > .notices > .notice.notice-source-activity > .entry-metadata {
  1274. margin-left: 0;
  1275. }
  1276. #content .threaded-notices > .notice > .entry-metadata a,
  1277. #content .notices > .notice > .entry-metadata a {
  1278. color:#9197a3;
  1279. }
  1280. #content .notices > .notice > .entry-metadata .conversation {
  1281. color:#006c9b;
  1282. font-style:italic;
  1283. }
  1284. #content .notices > .notice > .threaded-replies .entry-metadata .conversation,
  1285. #content .notices > .notice > .threaded-replies .entry-metadata .source {
  1286. display:none;
  1287. }
  1288. .entry-metadata span.source:before {
  1289. content:"\00a0·\00a0";
  1290. }
  1291. .e-content a.conversation:before {
  1292. content: " (";
  1293. }
  1294. .e-content a.conversation:after {
  1295. content: ")";
  1296. }
  1297. .notice-options .form_repeat.dialogbox {
  1298. margin-right: 0px;
  1299. border: 1px solid #aaa;
  1300. border-radius: 4px;
  1301. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  1302. z-index: 90;
  1303. min-width:160px;
  1304. }
  1305. .notice-options .form_repeat.dialogbox legend {
  1306. padding-top: 10px;
  1307. }
  1308. .notice-options .form_repeat.dialogbox input.submit_dialogbox {
  1309. min-width: 80px;
  1310. }
  1311. .user_in.realtime-popup .notice div.e-content {
  1312. max-width: 320px;
  1313. }
  1314. .realtime-popup .threaded-replies {
  1315. margin-left: 15px;
  1316. }
  1317. .realtime-popup .threaded-replies .form_notice textarea {
  1318. width: 385px !important;
  1319. }
  1320. .realtime-popup .threaded-replies .form_notice label.notice_data-attach {
  1321. top: 10px !important;
  1322. right: 10px !important;
  1323. }
  1324. .pagination {
  1325. height: 1.2em;
  1326. }
  1327. .entity_profile {
  1328. float: left;
  1329. width: 360px;
  1330. margin-top: 4px;
  1331. }
  1332. .entity_profile .entity_depiction {
  1333. margin-top: 4px;
  1334. }
  1335. .entity_actions {
  1336. width: 140px;
  1337. margin-top: 0;
  1338. margin-bottom: 0;
  1339. }
  1340. .entity_moderation:hover ul,
  1341. .entity_role:hover ul {
  1342. border-radius: 4px;
  1343. }
  1344. .entity_send-a-message .form_notice legend {
  1345. text-shadow:0 1px 0 rgba(255,255,255,0.4);
  1346. }
  1347. .entity_send-a-message .form_notice {
  1348. border: 1px solid #7B4E82;
  1349. }
  1350. .entity_send-a-message .form_notice #notice_action-submit {
  1351. color: #fff !important;
  1352. top: 46px;
  1353. }
  1354. .entity_subscribe .dialogbox, .entity_tag .dialogbox {
  1355. border: 1px solid #aaa;
  1356. border-radius: 4px;
  1357. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  1358. }
  1359. .entity_subscribe .dialogbox input.submit_dialogbox, .entity_tag .dialogbox input.submit_dialogbox {
  1360. color: #fff !important;
  1361. }
  1362. #filter_tags_item .submit {
  1363. left: 6px;
  1364. top: -3px;
  1365. }
  1366. #pagination {
  1367. height: 1.2em;
  1368. padding-bottom: 120px;
  1369. border-radius: 6px;
  1370. }
  1371. #pagination a {
  1372. color: #3e3e8c;
  1373. }
  1374. #footer a {
  1375. color: #3e3e8c;
  1376. }
  1377. #site_nav_global_secondary {
  1378. margin-bottom: 10px;
  1379. }
  1380. .error, .success, .notice-status {
  1381. border-radius: 6px;
  1382. }
  1383. #aside_primary a.timestamp {
  1384. color: rgba(0, 0, 0, 0.3);
  1385. }
  1386. /* replies */
  1387. .notice-reply-placeholder {
  1388. display:none !important;
  1389. }
  1390. .threaded-replies {
  1391. color: #222;
  1392. font-size: 13px;
  1393. }
  1394. .threaded-replies .notice-repeats, .threaded-replies .notice-faves {
  1395. font-size: 13px;
  1396. }
  1397. .threaded-replies {
  1398. background: none repeat scroll 0 0 #F6F7F8;
  1399. border-left: 0 none;
  1400. border-top: 1px solid #e1e2e3;
  1401. clear: both;
  1402. color: #222;
  1403. float: left;
  1404. margin-bottom: 0px;
  1405. margin-left: -12px;
  1406. padding-right: 2px;
  1407. padding-top: 0;
  1408. width: 540px;
  1409. }
  1410. #conversation .notices .notices {
  1411. background-color: rgba(200, 200, 200, 0.05);
  1412. float: left;
  1413. margin-left: -12px;
  1414. width: 540px;
  1415. }
  1416. .threaded-replies:empty {
  1417. display:none;
  1418. }
  1419. .threaded-replies .notice-faves:before,
  1420. .threaded-replies .notice-repeats:before,
  1421. .notice-reply-comments > a:before {
  1422. color: #006c9b;
  1423. content: "\f005";
  1424. display: inline-block;
  1425. font: 14px/1 "fa";
  1426. margin-right: 5px;
  1427. margin-top: -4px;
  1428. vertical-align: middle;
  1429. -webkit-font-smoothing: antialiased;
  1430. -moz-osx-font-smoothing: grayscale;
  1431. }
  1432. .threaded-replies .notice-repeats:before {
  1433. content: "\f079";
  1434. }
  1435. .notice-reply-comments > a:before {
  1436. font: 14px/1 "Genericons";
  1437. content: "\f431";
  1438. }
  1439. #content .notice .threaded-replies .notice,
  1440. #content .notice .threaded-replies .notice-data,
  1441. #content .notice .threaded-replies .notice-reply-comments {
  1442. background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  1443. border-bottom: 1px solid #e1e2e3;
  1444. line-height: 1.36em;
  1445. margin-bottom: 0;
  1446. margin-left: 10px;
  1447. margin-top: 0;
  1448. padding-bottom: 1ex;
  1449. padding-top: 1ex;
  1450. width: 522px;
  1451. }
  1452. #content .notice .threaded-replies .notice:nth-last-child(2),
  1453. #content .notice .threaded-replies .notice-data:nth-last-child(2),
  1454. #content .notice .threaded-replies .notice-reply-comments:nth-last-child(2) {
  1455. border-bottom: 0 none;
  1456. }
  1457. .threaded-replies .notice .p-author {
  1458. float: left;
  1459. font-size: 13px;
  1460. height: auto;
  1461. margin-left: 40px;
  1462. padding-right: 5px;
  1463. position: relative;
  1464. z-index: 20;
  1465. }
  1466. #core #content .threaded-replies .p-author:before {
  1467. height: 32px;
  1468. left: -40px;
  1469. top: 3px;
  1470. width: 32px;
  1471. z-index: 10;
  1472. }
  1473. .threaded-replies .notice.h-entry .attachments,
  1474. .threaded-replies .notice .notice-faves,
  1475. .threaded-replies .notice .notice-repeats {
  1476. padding-left: 40px;
  1477. }
  1478. .threaded-replies .notice .addressees,
  1479. .threaded-replies .notice .addressees li {
  1480. display: inline;
  1481. }
  1482. #content .threaded-replies .notice .p-author .u-photo {
  1483. float: none;
  1484. height: 32px;
  1485. margin-left: -40px;
  1486. position: absolute;
  1487. top: 10px;
  1488. width: 32px;
  1489. top: 3px;
  1490. }
  1491. #content .notice .threaded-replies .notice div.e-content {
  1492. margin: 0;
  1493. font-size:13px;
  1494. padding-left: 40px;
  1495. padding-top:0;
  1496. }
  1497. .notice-options {
  1498. margin-bottom: 8px;
  1499. margin-top: 8px;
  1500. margin-right: 0px;
  1501. height:20px;
  1502. }
  1503. #content .threaded-replies .entry-metadata,
  1504. #content .threaded-replies .notice-options {
  1505. margin-bottom: 2px;
  1506. margin-top: 2px;
  1507. margin-left:40px;
  1508. }
  1509. #content .threaded-replies .notice-options {
  1510. bottom:0;
  1511. right:0px;
  1512. height:25px;
  1513. }
  1514. #content .threaded-replies .notice-faves,
  1515. #content .threaded-replies .notice-repeats {
  1516. color:#9197a3;
  1517. font-size:12px;
  1518. }
  1519. #content .threaded-notices .notice-options input.submit,
  1520. #content .threaded-notices .notice-options a,
  1521. #content .notices .notice-options input.submit,
  1522. #content .notices .notice-options a {
  1523. opacity: 1;
  1524. background-image:none;
  1525. }
  1526. #content .threaded-notices .notice-options input.submit:hover,
  1527. #content .threaded-notices .notice-options a:hover,
  1528. #content .notices .notice-options input.submit:hover,
  1529. #content .notices .notice-options a:hover {
  1530. opacity: 1;
  1531. }
  1532. #content .threaded-replies .notice-options input.submit,
  1533. #content .threaded-replies .notice-options a {
  1534. opacity: 1;
  1535. }
  1536. #content .threaded-replies .notice-options input.submit:hover,
  1537. #content .threaded-replies .notice-options a:hover {
  1538. opacity: 1;
  1539. }
  1540. .notice-options form:not(.dialogbox),
  1541. .notice-options a,
  1542. .notice-options .repeated {
  1543. float: left;
  1544. margin-left: 10px;
  1545. margin-right:0;
  1546. background-image:none;
  1547. position:relative;
  1548. }
  1549. #content .threaded-notices .notice-options form:not(.dialogbox),
  1550. #content .threaded-notices .notice-options a,
  1551. #content .notices .notice-options form:not(.dialogbox),
  1552. #content .notices .notice-options a {
  1553. position:relative;
  1554. }
  1555. #content .threaded-notices .notice-options form:not(.dialogbox) input,
  1556. #content .threaded-notices .notice-options a,
  1557. #content .notices .notice-options form:not(.dialogbox) input,
  1558. #content .notices .notice-options a,
  1559. #content .threaded-notices .notice-options span,
  1560. #content .notices .notice-options span {
  1561. position:relative;
  1562. height:25px;
  1563. width:25px;
  1564. opacity:1;
  1565. }
  1566. .notice-options .notice_delete:before,
  1567. .notice-options .notice_reply:before,
  1568. .notice-options .form_favor:before,
  1569. .notice-options .form_disfavor:before,
  1570. .notice-options .form_repeat:not(.dialogbox):before,
  1571. .notice-options .repeated:before {
  1572. content: "\f005";
  1573. display: block;
  1574. font: 20px/1 "fa";
  1575. height: 20px;
  1576. left: 0px;
  1577. position: absolute;
  1578. top: 0px;
  1579. width: 20px;
  1580. -webkit-font-smoothing: antialiased;
  1581. -moz-osx-font-smoothing: grayscale;
  1582. color:#ccc;
  1583. text-indent:0;
  1584. text-align:left;
  1585. }
  1586. .notice-options .form_disfavor:before {
  1587. color:#ff9b00;
  1588. }
  1589. .notice-options .notice_reply:before {
  1590. content: "\f112";
  1591. margin-top:1px;
  1592. }
  1593. .notice-options .repeated:before,
  1594. .notice-options .form_repeat:not(.dialogbox):before {
  1595. content: "\f079";
  1596. }
  1597. .notice-options .repeated:before {
  1598. color:#609928;
  1599. }
  1600. .notice-options .notice_delete:before {
  1601. font: 25px/1 "Genericons";
  1602. content: "\f407";
  1603. margin-top:-3px;
  1604. }
  1605. .threaded-replies .notice-options .notice_delete,
  1606. .threaded-replies .notice-options .notice_reply,
  1607. .threaded-replies .notice-options .form_favor,
  1608. .threaded-replies .notice-options .form_disfavor,
  1609. .threaded-replies .notice-options .form_repeat,
  1610. .threaded-replies .notice-options .repeated {
  1611. margin-left:5px;
  1612. }
  1613. .threaded-replies .notice-options .notice_reply:before,
  1614. .threaded-replies .notice-options .form_favor:before,
  1615. .threaded-replies .notice-options .form_disfavor:before,
  1616. .threaded-replies .notice-options .form_repeat:not(.dialogbox):before,
  1617. .threaded-replies .notice-options .repeated:before {
  1618. font: 17px/1 "fa";
  1619. }
  1620. .threaded-replies .notice-options .notice_delete:before {
  1621. font: 22px/1 "Genericons";
  1622. margin-top:-2px;
  1623. margin-left:-2px;
  1624. }
  1625. #content .threaded-notices .threaded-replies .notice-options form:not(.dialogbox) input,
  1626. #content .threaded-notices .threaded-replies .notice-options a,
  1627. #content .notices .threaded-replies .notice-options form:not(.dialogbox) input,
  1628. #content .notices .threaded-replies .notice-options a,
  1629. #content .notices .threaded-replies .notice-options span {
  1630. height:20px;
  1631. width:20px;
  1632. }
  1633. .notice-options .notice_delete:before,
  1634. .notice-options .notice_reply:before,
  1635. .notice-options .form_favor:before,
  1636. .notice-options .form_disfavor:before,
  1637. .notice-options .form_repeat:before,
  1638. .notice-options .repeated:before {
  1639. opacity:0.3;
  1640. transition:opacity 0.3s;
  1641. }
  1642. .notice:hover > .notice-options .notice_delete:before,
  1643. .notice:hover > .notice-options .notice_reply:before,
  1644. .notice:hover > .notice-options .form_favor:before,
  1645. .notice:hover > .notice-options .form_disfavor:before,
  1646. .notice:hover > .notice-options .form_repeat:before,
  1647. .notice:hover > .notice-options .repeated:before {
  1648. opacity:1;
  1649. }
  1650. #showstream .entry-metadata .repeat {
  1651. background-image:none;
  1652. /* background-position: -1px -1642px; */
  1653. color: transparent;
  1654. display: block;
  1655. font-size: 0;
  1656. height: 30px;
  1657. left: -65px;
  1658. /* overflow: hidden; */
  1659. position: absolute;
  1660. top: -35px;
  1661. width: 30px;
  1662. }
  1663. #showstream .entry-metadata .repeat:before {
  1664. content: "\f079";
  1665. background-color: #609928;
  1666. border-radius: 25px;
  1667. box-sizing: border-box;
  1668. color: #fff;
  1669. display: block;
  1670. font-family: "fa";
  1671. font-size: 14px;
  1672. height: 25px;
  1673. left: 0px;
  1674. line-height: 25px;
  1675. position: absolute;
  1676. text-align: center;
  1677. text-indent: 0;
  1678. top: 2px;
  1679. width: 25px;
  1680. -webkit-font-smoothing: antialiased;
  1681. -moz-osx-font-smoothing: grayscale;
  1682. box-shadow:1px 1px 5px rgba(255,255,255,0.5);
  1683. }
  1684. #notices_primary .notices:not(.threaded-notices) .repeat.h-entry {
  1685. display:none;
  1686. }
  1687. /* loading */
  1688. #infscr-loading {
  1689. font-size:20px;
  1690. color: rgba(0,0,0,0.4);
  1691. }
  1692. #infscr-loading img {
  1693. display:none;
  1694. }
  1695. /* menu icons */
  1696. #nav_local_default li a {
  1697. line-height:22px;
  1698. }
  1699. #nav_local_default a {
  1700. padding-left:32px;
  1701. }
  1702. #nav_profile a:before,
  1703. #nav_timeline_replies a:before,
  1704. #nav_timeline_personal a:before,
  1705. #nav_local_default li:first-child ul.nav li:nth-child(4) a:before, /* messages... */
  1706. #nav_timeline_favorites a:before,
  1707. #nav_timeline_public a:before,
  1708. #nav_groups a:before,
  1709. #nav_recent-tags a:before,
  1710. #nav_timeline_favorited a:before,
  1711. #nav_directory a:before,
  1712. #nav_lists a:before {
  1713. content: "\f409";
  1714. display: inline;
  1715. font-family:'Genericons';
  1716. font-size:20px;
  1717. line-height:22px;
  1718. position:absolute;
  1719. display:block;
  1720. box-sizing:border-box;
  1721. height:22px;
  1722. width:22px;
  1723. margin-left:-22px;
  1724. -webkit-font-smoothing: antialiased;
  1725. -moz-osx-font-smoothing: grayscale;
  1726. color:rgba(0,0,0,0.4);
  1727. }
  1728. .nav li.current a:before {
  1729. color:rgba(0,0,0,0.6) !important;
  1730. font-weight:normal !important;
  1731. }
  1732. #nav_profile a:before {
  1733. content: "\f304";
  1734. margin-top:-1px;
  1735. }
  1736. #nav_timeline_replies a:before {
  1737. content: "\f086";
  1738. font-family:'fa';
  1739. font-size:14px;
  1740. margin-left:-19px;
  1741. }
  1742. #nav_local_default li:first-child ul.nav li:nth-child(4) a:before {
  1743. content: "\f0e0";
  1744. font-family:'fa';
  1745. font-size:12px;
  1746. margin-left:-18px;
  1747. }
  1748. #nav_timeline_favorites a:before {
  1749. content: "\f005";
  1750. font-family:'fa';
  1751. font-size:14px;
  1752. margin-left:-18px;
  1753. }
  1754. #nav_timeline_public a:before {
  1755. content: "\f475";
  1756. }
  1757. #nav_groups a:before {
  1758. content: "\f0c0";
  1759. font-family:'fa';
  1760. font-size:12px;
  1761. margin-left:-18px;
  1762. }
  1763. #nav_recent-tags a:before {
  1764. content: "\f02c";
  1765. font-family:'fa';
  1766. font-size:12px;
  1767. margin-left:-18px;
  1768. }
  1769. #nav_timeline_favorited a:before {
  1770. content: "\f140";
  1771. font-family:'fa';
  1772. font-size:14px;
  1773. margin-left:-17px;
  1774. }
  1775. #nav_directory a:before {
  1776. content: "\f1ae";
  1777. font-family: "fa";
  1778. font-size: 15px;
  1779. margin-left: -16px;
  1780. margin-top: -1px;
  1781. }
  1782. #nav_lists a:before {
  1783. content: "\f0c9";
  1784. font-family: "fa";
  1785. font-size: 15px;
  1786. margin-left: -18px;
  1787. }
  1788. .form_group_join,
  1789. .form_group_leave,
  1790. .form_group_delete {
  1791. position:relative;
  1792. }
  1793. .entity_edit a,
  1794. .entity_remote_subscribe,
  1795. #export_data a,
  1796. .peopletags_edit_button,
  1797. .form_group_join input.submit,
  1798. .form_group_leave input.submit,
  1799. .form_group_delete input.submit {
  1800. background-image:none !important;
  1801. }
  1802. .entity_edit a:before,
  1803. .entity_remote_subscribe:before,
  1804. #export_data a:before,
  1805. .peopletags_edit_button:before,
  1806. .form_group_join:before,
  1807. .form_group_leave:before,
  1808. .form_group_delete:before {
  1809. content: "\f14b";
  1810. display: inline;
  1811. font-family:'fa';
  1812. font-size:18px;
  1813. line-height:20px;
  1814. position:absolute;
  1815. display:block;
  1816. box-sizing:border-box;
  1817. height:20px;
  1818. width:20px;
  1819. margin-left:-22px;
  1820. -webkit-font-smoothing: antialiased;
  1821. -moz-osx-font-smoothing: grayscale;
  1822. color:rgba(0,0,0,0.6);
  1823. }
  1824. .entity_edit a:hover:before,
  1825. .entity_remote_subscribe:hover:before,
  1826. .peopletags_edit_button:hover:before,
  1827. .form_group_join:hover:before,
  1828. .form_group_leave:hover:before,
  1829. .form_group_delete:hover:before {
  1830. color:rgba(0,0,0,0.8);
  1831. }
  1832. .entity_remote_subscribe:before {
  1833. content: "\f0fe";
  1834. }
  1835. #export_data a:before {
  1836. content: "\f143";
  1837. margin-left: -25px;
  1838. margin-top: -2px;
  1839. }
  1840. #export_data a {
  1841. padding-left:25px !important;
  1842. }
  1843. #export_data a:hover:before {
  1844. color:#ff6600;
  1845. }
  1846. .peopletags_edit_button {
  1847. position:relative;
  1848. }
  1849. .peopletags_edit_button:before {
  1850. margin-left: -2px;
  1851. top: -2px;
  1852. }
  1853. .form_group_join:before,
  1854. .form_group_leave:before,
  1855. .form_group_delete:before {
  1856. content: "\f0fe";
  1857. margin-left:4px;
  1858. top:4px;
  1859. }
  1860. .form_group_leave:before {
  1861. content: "\f146";
  1862. }
  1863. .form_group_delete:before {
  1864. content: "\f071";
  1865. }
  1866. #export_data li a.foaf,
  1867. #export_data li a.json,
  1868. #export_data li:nth-child(2) {
  1869. display:none;
  1870. }
  1871. .group_profile_block .entity_actions li a,
  1872. .group_profile_block .entity_actions input.submit {
  1873. background-color:transparent !important;
  1874. }
  1875. #gnusocial-version {
  1876. border: 1px solid rgba(0, 0, 0, 0.3);
  1877. border-radius: 15px;
  1878. box-sizing: border-box;
  1879. float: left;
  1880. font-size: 11px;
  1881. padding: 15px;
  1882. width: 100%;
  1883. }
  1884. #gnusocial-version a,
  1885. #gnusocial-version p {
  1886. margin:0;
  1887. color:rgba(0,0,0,0.5);
  1888. }
  1889. .form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit,
  1890. .entity_subscribe .dialogbox input.submit_dialogbox,
  1891. .entity_tag .dialogbox input.submit_dialogbox,
  1892. .form_repeat.dialogbox input.submit_dialogbox
  1893. { /* TODO combine all these declarations */
  1894. font-family: "Helvetica Neue",Arial,sans-serif;
  1895. font-size: 13px;
  1896. font-weight: 700;
  1897. color: #FFFFFF;
  1898. line-height: 16px;
  1899. background: -moz-linear-gradient(top, #33bcef 0%, #019ad2 100%); /* FF3.6+ */
  1900. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#33bcef), color-stop(100%,#019ad2)); /* Chrome,Safari4+ */
  1901. background: -webkit-linear-gradient(top, #33bcef 0%,#019ad2 100%); /* Chrome10+,Safari5.1+ */
  1902. background: -o-linear-gradient(top, #33bcef 0%,#019ad2 100%); /* Opera 11.10+ */
  1903. background: -ms-linear-gradient(top, #33bcef 0%,#019ad2 100%); /* IE10+ */
  1904. background: linear-gradient(to bottom, #33bcef 0%,#019ad2 100%); /* W3C */
  1905. background-repeat: repeat-x;
  1906. padding-top: 5px;
  1907. padding-right: 10px;
  1908. padding-bottom: 5px;
  1909. padding-left: 10px;
  1910. border-top-width: 1px;
  1911. border-right-width: 1px;
  1912. border-bottom-width: 1px;
  1913. border-left-width: 1px;
  1914. border-top-color: #057ED0;
  1915. border-right-color: #057ED0;
  1916. border-bottom-color: #057ED0;
  1917. border-left-color: #057ED0;
  1918. border-top-style: solid;
  1919. border-right-style: solid;
  1920. border-bottom-style: solid;
  1921. border-left-style: solid;
  1922. border-top-left-radius: 4px;
  1923. border-top-right-radius: 4px;
  1924. border-bottom-left-radius: 4px;
  1925. border-bottom-right-radius: 4px;
  1926. box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px 0px inset;
  1927. border-image-outset: 0 0 0 0;
  1928. border-image-repeat: stretch stretch;
  1929. border-image-slice: 100% 100% 100% 100%;
  1930. border-image-source: none;
  1931. border-image-width: 1 1 1 1;
  1932. cursor: pointer;
  1933. text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 1px;
  1934. }
  1935. .form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover,
  1936. .entity_subscribe .dialogbox input.submit_dialogbox:hover,
  1937. .entity_tag .dialogbox input.submit_dialogbox:hover,
  1938. .form_repeat.dialogbox input.submit_dialogbox:hover
  1939. {
  1940. background: -moz-linear-gradient(top, #2daddc 0%, #0271bf 100%); /* FF3.6+ */
  1941. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2daddc), color-stop(100%,#0271bf)); /* Chrome,Safari4+ */
  1942. background: -webkit-linear-gradient(top, #2daddc 0%,#0271bf 100%); /* Chrome10+,Safari5.1+ */
  1943. background: -o-linear-gradient(top, #2daddc 0%,#0271bf 100%); /* Opera 11.10+ */
  1944. background: -ms-linear-gradient(top, #2daddc 0%,#0271bf 100%); /* IE10+ */
  1945. background: linear-gradient(to bottom, #2daddc 0%,#0271bf 100%); /* W3C */
  1946. background-repeat: repeat-x;
  1947. border-color:#096eb3;
  1948. color:#fff;
  1949. }
  1950. .form_settings input#cancel, #form_action-no {
  1951. background: #f2f2f2;
  1952. color: #d7621c;
  1953. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  1954. }
  1955. .form_settings input#cancel:hover, #form_action-no:hover {
  1956. background: #fff;
  1957. color: #d7621c;
  1958. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  1959. }
  1960. .form_settings fieldset fieldset {
  1961. margin-bottom: 30px;
  1962. padding-top: 25px;
  1963. }
  1964. #invite #content p {
  1965. margin-bottom: 15px;
  1966. }
  1967. #invite #content ul {
  1968. list-style-type: none;
  1969. margin-bottom: 25px;
  1970. margin-left: 25px;
  1971. }
  1972. #invite #content li {
  1973. background: url(../images/resultset_next.png) no-repeat 0px 3px;
  1974. padding-left: 20px;
  1975. margin-bottom: 10px;
  1976. }
  1977. #invite #content #form_invite ul, #invite #content #form_invite li {
  1978. margin-left: 0px;
  1979. padding-left: 0px;
  1980. background: none;
  1981. }
  1982. #form_invite input[type=text], #form_invite textarea {
  1983. width: 250px;
  1984. padding: 5px;
  1985. border: 1px solid #a6a6a6;
  1986. border-radius: 4px;
  1987. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  1988. }
  1989. #form_invite textarea {
  1990. clear: left;
  1991. width: 508px;
  1992. height: 48px;
  1993. }
  1994. #form_invite a.add_row, #form_invite a.remove_row {
  1995. display: block;
  1996. height: 16px;
  1997. width: 16px;
  1998. overflow: hidden;
  1999. background-image: url('../../base/images/icons/icons-01.gif');
  2000. background-repeat: no-repeat;
  2001. }
  2002. #form_invite a.remove_row {
  2003. background-position: 0px -1252px;
  2004. display: inline-block;
  2005. position: relative;
  2006. top: 4px;
  2007. left: 10px;
  2008. line-height: 4em;
  2009. }
  2010. #form_invite a.add_row {
  2011. clear: both;
  2012. position: relative;
  2013. top: 10px;
  2014. background-position: 0px -1186px;
  2015. width: 120px;
  2016. padding-left: 20px;
  2017. line-height: 1.2em;
  2018. }
  2019. #form_invite label[for=personal] {
  2020. display: block;
  2021. margin-top: 25px;
  2022. }
  2023. #content thead th {
  2024. text-align:left;
  2025. }
  2026. #content tbody th {
  2027. vertical-align:top;
  2028. text-align:left;
  2029. font-weight:normal;
  2030. padding-top:11px;
  2031. padding-right:18px;
  2032. }
  2033. #content tbody tr {
  2034. border-top: 1px dotted #bbb;
  2035. }
  2036. #content td {
  2037. padding:11px 18px 11px 0;
  2038. vertical-align:top;
  2039. }
  2040. #content td:last-child {
  2041. padding-right:0;
  2042. }
  2043. /* Search */
  2044. #form_search {
  2045. padding-bottom: 10px;
  2046. margin-bottom: 20px;
  2047. background: url('../images/brdr_black_dot.png') repeat-x bottom left;
  2048. }
  2049. #form_search fieldset {
  2050. margin-bottom: 0px;
  2051. }
  2052. #form_search ul.form_data #q {
  2053. margin-left: 10px;
  2054. width: 210px;
  2055. }
  2056. #form_search input.submit {
  2057. height: 30px;
  2058. margin-left: 5px;
  2059. }
  2060. #noticesearch .entity_actions {
  2061. margin: 0px;
  2062. }
  2063. #noticesearch p.error {
  2064. margin-top: 60px;
  2065. }
  2066. /* Limited-scope */
  2067. .limited-scope .e-content .timestamp {
  2068. padding-left: 20px;
  2069. position: relative;
  2070. }
  2071. .limited-scope .e-content .timestamp:before {
  2072. content: url(../images/lock.png);
  2073. position: absolute;
  2074. top: -2px;
  2075. left: 0px;
  2076. }
  2077. .limited-scope li .e-content .timestamp {
  2078. padding-left: 0px;
  2079. }
  2080. .limited-scope li .e-content .timestamp:before {
  2081. content: none;
  2082. }
  2083. .limited-scope li.limited-scope .e-content .timestamp {
  2084. padding-left: 20px;
  2085. }
  2086. .limited-scope li.limited-scope .e-content .timestamp:before {
  2087. content: url(../images/lock.png);
  2088. position: absolute;
  2089. top: -2px;
  2090. left: 0px;
  2091. }
  2092. /* Blog */
  2093. label[for=blog-entry-content] {
  2094. display: none !important;
  2095. }
  2096. #input_form_blog td {
  2097. padding-top: 0px;
  2098. padding-bottom: 0px;
  2099. }
  2100. #input_form_blog td.mceToolbar {
  2101. padding-top: 4px;
  2102. }
  2103. h4.blog-entry-title {
  2104. margin-bottom: 8px;
  2105. line-height: 1.2em;
  2106. }
  2107. /* Onboard specific styles */
  2108. /* TODO move to plugin */
  2109. #cboxOverlay{
  2110. background: url(../images/lightbox_bg.png) repeat 0 0 !important;
  2111. }
  2112. #cboxContent{
  2113. background: #fff url(../logo.png) no-repeat 10px bottom !important;
  2114. }
  2115. .onboard_iframe {
  2116. background: none;
  2117. padding: 10px;
  2118. }
  2119. .onboard_iframe #wrap {
  2120. width: auto;
  2121. background: none;
  2122. }
  2123. .onboard_welcome p {
  2124. margin-bottom: 10px;
  2125. }
  2126. .onboard_welcome ul {
  2127. list-style-type: none;
  2128. margin-bottom: 10px;
  2129. }
  2130. .onboard_welcome ul li {
  2131. background: url(../images/resultset_next.png) no-repeat 0px 3px;
  2132. padding-left: 20px;
  2133. margin-left: 10px;
  2134. }
  2135. #aside_primary #onboard_section {
  2136. background: #f2f2f2;
  2137. width: 196px;
  2138. padding: 10px;
  2139. border-radius: 4px;
  2140. border: 1px solid #516499;
  2141. background: #fafafa;
  2142. }
  2143. #onboard_section H2 {
  2144. border-top-left-radius: 4px;
  2145. border-top-right-radius: 4px;
  2146. position: relative;
  2147. top: -11px;
  2148. left: -11px;
  2149. padding: 2px 0px 2px 10px;
  2150. margin-right: -22px;
  2151. margin-bottom: 5px;
  2152. color: #fff;
  2153. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  2154. background: #364A84;
  2155. background: -moz-linear-gradient(top, #516499 0%, #364a84 100%);
  2156. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#516499), color-stop(100%,#364a84));
  2157. background: -webkit-linear-gradient(top, #516499 0%,#364a84 100%);
  2158. background: -o-linear-gradient(top, #516499 0%,#364a84 100%);
  2159. background: -ms-linear-gradient(top, #516499 0%,#364a84 100%);
  2160. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#516499', endColorstr='#364a84',GradientType=0 );
  2161. background: linear-gradient(top, #516499 0%,#364a84 100%);
  2162. }
  2163. #onboard_section ul {
  2164. list-style-type: none;
  2165. }
  2166. #onboard_section .onboard-step-incomplete {
  2167. background: url(../images/resultset_next.png) no-repeat 0px 1px;
  2168. padding-left: 20px;
  2169. margin-bottom: 10px;
  2170. }
  2171. #onboard_section .onboard-step-complete {
  2172. background: url(../images/tick.png) no-repeat 0px 1px;
  2173. padding-left: 20px;
  2174. margin-bottom: 10px;
  2175. text-decoration: line-through;
  2176. color:rgba(0,0,0,0.5);
  2177. }
  2178. /* Billing specific styles */
  2179. /* TODO move to plugin */
  2180. #content table.billing_info {
  2181. margin-top: 10px;
  2182. background:rgba(240, 240, 240, 0.4);
  2183. }
  2184. #content table.billing_info th {
  2185. text-align: right;
  2186. width: 50%;
  2187. }
  2188. .invalid {
  2189. border: solid 2px red !important;
  2190. }
  2191. #payment_history table {
  2192. width: 100%;
  2193. }
  2194. #billingadminpanel .form_settings input {
  2195. margin-right: 0px;
  2196. }
  2197. /* Directory specific styles */
  2198. /* TODO separate base styles and move to plugin */
  2199. div#profile_directory div.alpha_nav > a {
  2200. border-left: 1px solid #ccc !important;
  2201. padding-left: 3.5px !important;
  2202. padding-right: 4px !important;
  2203. margin-right: 0px;
  2204. float: left;
  2205. line-height: 1.4em;
  2206. }
  2207. div#profile_directory div.alpha_nav > a.first {
  2208. border-left: none !important;
  2209. }
  2210. div#profile_directory div.alpha_nav a.current {
  2211. background-color: #ECECF2 !important;
  2212. }
  2213. table.profile_list {
  2214. margin-top: 25px;
  2215. }
  2216. .profile_list th {
  2217. font-size: 0.8em;
  2218. }
  2219. .profile_list th#created {
  2220. width: 100px;
  2221. }
  2222. .profile_list th#subscriptions {
  2223. width: 90px;
  2224. }
  2225. .profile_list th.current {
  2226. background: none !important;
  2227. }
  2228. .profile_list th.current.reverse {
  2229. background: none !important;
  2230. }
  2231. .profile_list th.current a {
  2232. padding-right: 25px;
  2233. background: url(../images/bluearrow_down.png) no-repeat top right;
  2234. }
  2235. .profile_list th.current.reverse a {
  2236. background: url(../images/bluearrow_up.png) no-repeat top right;
  2237. }
  2238. table.profile_list tr.alt {
  2239. background-color: #fafafa !important;
  2240. border: none !important;
  2241. }
  2242. td.entity_profile {
  2243. width: auto;
  2244. min-width: 250px;
  2245. }
  2246. /* SNOD CompanyLogo styling */
  2247. /* TODO move to plugin */
  2248. #site_nav_local_views a.company_logo {
  2249. width: 138px;
  2250. padding: 0px;
  2251. font-weight: bold;
  2252. text-transform: none;
  2253. line-height: 1em;
  2254. margin-bottom: 20px;
  2255. position: relative;
  2256. top: -4px;
  2257. }
  2258. #site_nav_local_views a.company_logo:hover {
  2259. background: none;
  2260. color: blue;
  2261. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  2262. }
  2263. .company_logo img {
  2264. max-width: 138px;
  2265. margin-bottom: 4px;
  2266. }
  2267. .company_logo span {
  2268. display: block;
  2269. }
  2270. a.company_logo:hover span {
  2271. text-decoration: underline;
  2272. }
  2273. }/*end of @media screen, projection, tv*/