
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_92a29c1db59a43d2eecd8d5c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7edc472dcbdb6eeefea49d94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_49450a0871c81fe85d2a2316.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d730ac72d6cc2794a1a71f1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_292c16571a31cf7da01ddbf6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_34b783c7164dc792fc772c5a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.759856px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759995px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.055375px;}
.ls5{letter-spacing:0.149087px;}
.ls9{letter-spacing:0.149154px;}
.ls8{letter-spacing:0.321005px;}
.ls6{letter-spacing:0.321144px;}
.ls4{letter-spacing:0.321212px;}
.ls7{letter-spacing:0.321216px;}
.ls3{letter-spacing:0.321279px;}
.ls0{letter-spacing:39.250786px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-14.970850px;}
.ws0{word-spacing:-9.438126px;}
.ws2{word-spacing:0.000000px;}
._8a{margin-left:-2933.130778px;}
._93{margin-left:-2931.309680px;}
._88{margin-left:-2930.218686px;}
._5d{margin-left:-2928.727432px;}
._84{margin-left:-2927.123435px;}
._5f{margin-left:-2925.941175px;}
._79{margin-left:-2924.155731px;}
._dc{margin-left:-2922.269332px;}
._ee{margin-left:-2921.143436px;}
._97{margin-left:-2920.068604px;}
._72{margin-left:-2917.089677px;}
._62{margin-left:-2915.943367px;}
._7a{margin-left:-2913.986378px;}
._5e{margin-left:-2912.160666px;}
._c4{margin-left:-2911.116070px;}
._9b{margin-left:-2910.100279px;}
._91{margin-left:-2907.155518px;}
._7e{margin-left:-2905.068890px;}
._a9{margin-left:-2903.432196px;}
._a3{margin-left:-2902.353539px;}
._e2{margin-left:-2901.162408px;}
._12{margin-left:-2899.280410px;}
._1c{margin-left:-2897.143340px;}
._5b{margin-left:-2896.107690px;}
._58{margin-left:-2894.036617px;}
._d{margin-left:-2892.190414px;}
._64{margin-left:-2889.899911px;}
._20{margin-left:-2888.528166px;}
._a7{margin-left:-2886.302622px;}
._77{margin-left:-2882.944428px;}
._76{margin-left:-2881.936572px;}
._90{margin-left:-2880.934117px;}
._66{margin-left:-2879.797916px;}
._6b{margin-left:-2878.178955px;}
._13{margin-left:-2876.752418px;}
._a1{margin-left:-2875.744157px;}
._48{margin-left:-2874.299159px;}
._55{margin-left:-2872.319631px;}
._23{margin-left:-2870.633798px;}
._1d{margin-left:-2868.894052px;}
._57{margin-left:-2867.073755px;}
._1e{margin-left:-2864.572115px;}
._4f{margin-left:-2863.166888px;}
._3c{margin-left:-2861.250987px;}
._2d{margin-left:-2858.600164px;}
._6e{margin-left:-2857.484562px;}
._38{margin-left:-2856.320008px;}
._b9{margin-left:-2854.870444px;}
._de{margin-left:-2853.032339px;}
._4e{margin-left:-2851.634605px;}
._35{margin-left:-2850.243508px;}
._61{margin-left:-2848.256677px;}
._1a{margin-left:-2845.952525px;}
._32{margin-left:-2844.520760px;}
._b{margin-left:-2842.956811px;}
._9c{margin-left:-2841.565170px;}
._ae{margin-left:-2840.151644px;}
._27{margin-left:-2839.075188px;}
._3d{margin-left:-2836.911749px;}
._36{margin-left:-2835.711563px;}
._17{margin-left:-2834.054380px;}
._85{margin-left:-2832.265916px;}
._b8{margin-left:-2830.490284px;}
._b7{margin-left:-2829.119371px;}
._7b{margin-left:-2827.873081px;}
._33{margin-left:-2826.522896px;}
._7f{margin-left:-2825.150535px;}
._6a{margin-left:-2821.340963px;}
._4c{margin-left:-2819.967715px;}
._6f{margin-left:-2818.801311px;}
._4b{margin-left:-2816.462053px;}
._9f{margin-left:-2814.594916px;}
._25{margin-left:-2812.937258px;}
._60{margin-left:-2811.840987px;}
._cf{margin-left:-2810.482734px;}
._54{margin-left:-2808.089488px;}
._86{margin-left:-2806.745139px;}
._47{margin-left:-2805.076062px;}
._3a{margin-left:-2803.680091px;}
._69{margin-left:-2802.660597px;}
._49{margin-left:-2800.805746px;}
._59{margin-left:-2799.531914px;}
._b4{margin-left:-2797.872967px;}
._a5{margin-left:-2795.614901px;}
._2{margin-left:-2794.235215px;}
._8{margin-left:-2791.886456px;}
._37{margin-left:-2790.676372px;}
._14{margin-left:-2787.289914px;}
._b0{margin-left:-2785.504262px;}
._7c{margin-left:-2783.762393px;}
._56{margin-left:-2782.265544px;}
._3b{margin-left:-2780.564269px;}
._a0{margin-left:-2779.154385px;}
._65{margin-left:-2777.277246px;}
._96{margin-left:-2773.300057px;}
._42{margin-left:-2768.201908px;}
._e0{margin-left:-2765.835888px;}
._50{margin-left:-2762.994119px;}
._40{margin-left:-2760.541145px;}
._aa{margin-left:-2759.098843px;}
._ea{margin-left:-2757.896914px;}
._82{margin-left:-2755.854945px;}
._41{margin-left:-2754.135426px;}
._f8{margin-left:-2750.972787px;}
._fa{margin-left:-2749.594290px;}
._b5{margin-left:-2747.693670px;}
._2c{margin-left:-2745.688088px;}
._10{margin-left:-2741.478196px;}
._1b{margin-left:-2740.099202px;}
._8f{margin-left:-2738.819320px;}
._bc{margin-left:-2736.364642px;}
._f{margin-left:-2735.289394px;}
._f2{margin-left:-2734.199796px;}
._45{margin-left:-2732.467195px;}
._c{margin-left:-2730.298162px;}
._70{margin-left:-2728.830770px;}
._8b{margin-left:-2726.005396px;}
._18{margin-left:-2724.144787px;}
._2b{margin-left:-2721.808988px;}
._bb{margin-left:-2718.096606px;}
._d8{margin-left:-2717.087604px;}
._11{margin-left:-2714.820400px;}
._2a{margin-left:-2713.566990px;}
._63{margin-left:-2708.970914px;}
._73{margin-left:-2705.115883px;}
._9d{margin-left:-2697.100516px;}
._5c{margin-left:-2695.358538px;}
._46{margin-left:-2691.773108px;}
._a4{margin-left:-2690.435913px;}
._43{margin-left:-2686.285106px;}
._cc{margin-left:-2681.596845px;}
._4d{margin-left:-2679.688706px;}
._2e{margin-left:-2678.032638px;}
._b3{margin-left:-2669.424022px;}
._e5{margin-left:-2666.394655px;}
._3e{margin-left:-2664.170119px;}
._74{margin-left:-2662.277040px;}
._53{margin-left:-2658.570567px;}
._be{margin-left:-2654.185355px;}
._ad{margin-left:-2653.125472px;}
._a2{margin-left:-2645.431244px;}
._98{margin-left:-2639.969050px;}
._31{margin-left:-2638.496707px;}
._6c{margin-left:-2637.377865px;}
._3f{margin-left:-2630.442510px;}
._4a{margin-left:-2628.256467px;}
._ba{margin-left:-2621.305913px;}
._30{margin-left:-2612.409186px;}
._100{margin-left:-2610.144035px;}
._e{margin-left:-2607.799827px;}
._87{margin-left:-2605.874243px;}
._cb{margin-left:-2554.024979px;}
._dd{margin-left:-2549.399949px;}
._104{margin-left:-2548.028532px;}
._d4{margin-left:-2524.119088px;}
._7{margin-left:-2487.648310px;}
._da{margin-left:-2486.445181px;}
._c6{margin-left:-2431.714465px;}
._fc{margin-left:-2424.041778px;}
._89{margin-left:-2344.865903px;}
._d2{margin-left:-2306.050399px;}
._fe{margin-left:-2304.614577px;}
._f1{margin-left:-2293.721985px;}
._f4{margin-left:-2283.561619px;}
._d7{margin-left:-2269.912919px;}
._34{margin-left:-2250.922772px;}
._fb{margin-left:-2245.640654px;}
._ca{margin-left:-2230.300343px;}
._d0{margin-left:-2221.657800px;}
._102{margin-left:-2212.533172px;}
._e8{margin-left:-2203.798389px;}
._e6{margin-left:-2200.986598px;}
._92{margin-left:-2188.468916px;}
._c8{margin-left:-2156.915652px;}
._bd{margin-left:-2143.632683px;}
._d6{margin-left:-2117.786367px;}
._e3{margin-left:-2103.348337px;}
._83{margin-left:-2086.478187px;}
._ff{margin-left:-2070.658697px;}
._ce{margin-left:-2043.370639px;}
._f3{margin-left:-2020.544962px;}
._71{margin-left:-2015.300389px;}
._f6{margin-left:-1983.999987px;}
._6{margin-left:-1977.091036px;}
._95{margin-left:-1966.111688px;}
._c3{margin-left:-1959.027232px;}
._eb{margin-left:-1929.497234px;}
._105{margin-left:-1914.742755px;}
._c1{margin-left:-1900.799899px;}
._ed{margin-left:-1839.542948px;}
._e1{margin-left:-1819.748238px;}
._d5{margin-left:-1802.951454px;}
._df{margin-left:-1753.157021px;}
._ef{margin-left:-1724.129763px;}
._f5{margin-left:-1699.954057px;}
._a8{margin-left:-1669.625797px;}
._26{margin-left:-1651.745798px;}
._28{margin-left:-1633.238209px;}
._e9{margin-left:-1571.317930px;}
._d1{margin-left:-1552.879429px;}
._78{margin-left:-1550.908804px;}
._24{margin-left:-1533.400351px;}
._e7{margin-left:-1520.023050px;}
._db{margin-left:-1517.638313px;}
._103{margin-left:-1481.536075px;}
._ec{margin-left:-1480.078702px;}
._f9{margin-left:-1470.927208px;}
._d3{margin-left:-1461.077122px;}
._f7{margin-left:-1429.028610px;}
._e4{margin-left:-1424.865395px;}
._101{margin-left:-1388.602559px;}
._c9{margin-left:-1318.578936px;}
._2f{margin-left:-1180.708775px;}
._21{margin-left:-1163.409104px;}
._68{margin-left:-1149.047448px;}
._ab{margin-left:-1007.078490px;}
._b1{margin-left:-1000.597557px;}
._51{margin-left:-989.078501px;}
._b6{margin-left:-969.499472px;}
._b2{margin-left:-945.065991px;}
._8e{margin-left:-939.359043px;}
._6d{margin-left:-933.139459px;}
._9e{margin-left:-931.608648px;}
._c5{margin-left:-867.567266px;}
._16{margin-left:-860.474007px;}
._94{margin-left:-842.363897px;}
._15{margin-left:-764.355850px;}
._c0{margin-left:-762.666733px;}
._44{margin-left:-740.905934px;}
._fd{margin-left:-701.403635px;}
._cd{margin-left:-677.790959px;}
._39{margin-left:-674.406344px;}
._8c{margin-left:-652.660638px;}
._c2{margin-left:-634.685837px;}
._f0{margin-left:-586.296852px;}
._29{margin-left:-581.062299px;}
._99{margin-left:-579.131241px;}
._bf{margin-left:-544.208383px;}
._9a{margin-left:-540.799747px;}
._22{margin-left:-533.235069px;}
._c7{margin-left:-525.517867px;}
._ac{margin-left:-512.050415px;}
._d9{margin-left:-502.566079px;}
._52{margin-left:-484.480442px;}
._9{margin-left:-479.304699px;}
._80{margin-left:-476.597616px;}
._a6{margin-left:-474.875306px;}
._67{margin-left:-469.168359px;}
._af{margin-left:-410.301628px;}
._5a{margin-left:-395.330778px;}
._a{margin-left:-385.266960px;}
._8d{margin-left:-269.403405px;}
._106{margin-left:-239.610859px;}
._81{margin-left:-224.490855px;}
._0{margin-left:-156.810837px;}
._7d{margin-left:-8.299486px;}
._1f{margin-left:-7.244260px;}
._5{margin-left:-5.465640px;}
._19{margin-left:-4.380978px;}
._4{margin-left:-3.194598px;}
._1{margin-left:-1.745340px;}
._3{width:1.136201px;}
._75{width:3.124215px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.761620px;}
.fs3{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y86{bottom:116.280052px;}
.yab{bottom:122.580093px;}
.y54{bottom:122.760064px;}
.yc0{bottom:124.020058px;}
.y103{bottom:125.820099px;}
.ye2{bottom:130.320099px;}
.y66{bottom:132.480079px;}
.y98{bottom:134.460091px;}
.y11a{bottom:135.540047px;}
.y112{bottom:135.900055px;}
.y85{bottom:138.060036px;}
.yaa{bottom:144.360077px;}
.y53{bottom:144.540047px;}
.ybf{bottom:145.800041px;}
.y28{bottom:147.600083px;}
.ye1{bottom:152.100083px;}
.y65{bottom:154.260064px;}
.y111{bottom:154.440033px;}
.y119{bottom:157.320099px;}
.ya9{bottom:165.960091px;}
.y52{bottom:166.320099px;}
.ybe{bottom:167.400055px;}
.y97{bottom:168.120072px;}
.y102{bottom:169.200096px;}
.y84{bottom:171.720085px;}
.y110{bottom:173.160049px;}
.ye0{bottom:173.700096px;}
.y64{bottom:176.040047px;}
.y27{bottom:181.260064px;}
.y51{bottom:188.100083px;}
.ybd{bottom:189.180039px;}
.y101{bottom:190.980079px;}
.ydf{bottom:195.480079px;}
.y63{bottom:197.820099px;}
.ya8{bottom:199.800041px;}
.y96{bottom:201.960091px;}
.y26{bottom:203.040047px;}
.y10f{bottom:205.200096px;}
.y83{bottom:205.380066px;}
.yf1{bottom:207.540047px;}
.y50{bottom:209.700096px;}
.ybc{bottom:210.960091px;}
.y100{bottom:212.760064px;}
.yde{bottom:217.260064px;}
.y62{bottom:219.600083px;}
.y95{bottom:223.560036px;}
.y25{bottom:224.640060px;}
.y10e{bottom:226.980079px;}
.y82{bottom:227.160049px;}
.ya7{bottom:233.460091px;}
.ydd{bottom:239.040047px;}
.ybb{bottom:240.300041px;}
.y61{bottom:241.200096px;}
.y4f{bottom:243.540047px;}
.y94{bottom:245.340088px;}
.y24{bottom:246.420043px;}
.y81{bottom:248.940033px;}
.ya6{bottom:255.240074px;}
.ydc{bottom:260.640060px;}
.y60{bottom:262.980079px;}
.y4e{bottom:265.320099px;}
.y93{bottom:267.120072px;}
.y23{bottom:268.200096px;}
.y80{bottom:270.720085px;}
.ya5{bottom:277.020058px;}
.ydb{bottom:282.420043px;}
.yf0{bottom:284.760064px;}
.y4d{bottom:286.920043px;}
.y92{bottom:288.900055px;}
.y22{bottom:289.980079px;}
.y7f{bottom:292.320099px;}
.y5f{bottom:296.640060px;}
.ya4{bottom:298.620072px;}
.y10d{bottom:304.200096px;}
.yef{bottom:306.540047px;}
.y4c{bottom:308.700096px;}
.y91{bottom:310.500068px;}
.y7e{bottom:314.100083px;}
.yda{bottom:316.260064px;}
.ya3{bottom:320.400055px;}
.y21{bottom:323.640060px;}
.y10c{bottom:325.980079px;}
.yee{bottom:328.140060px;}
.y4b{bottom:330.480079px;}
.y90{bottom:332.280052px;}
.y7d{bottom:335.880066px;}
.ya2{bottom:342.180039px;}
.yff{bottom:345.420043px;}
.yd9{bottom:349.920043px;}
.y4a{bottom:352.260064px;}
.y8f{bottom:354.060036px;}
.y20{bottom:357.480079px;}
.y7c{bottom:357.660049px;}
.y10b{bottom:359.640060px;}
.y5e{bottom:364.140060px;}
.yfe{bottom:367.200096px;}
.yd8{bottom:371.700096px;}
.y49{bottom:373.860077px;}
.y8e{bottom:375.840088px;}
.y1f{bottom:379.080093px;}
.y7b{bottom:379.260064px;}
.y10a{bottom:381.420043px;}
.yed{bottom:383.580093px;}
.y5d{bottom:385.920043px;}
.yd7{bottom:393.480079px;}
.y48{bottom:395.640060px;}
.y8d{bottom:397.440033px;}
.ya1{bottom:397.620072px;}
.y1e{bottom:400.860077px;}
.y7a{bottom:401.040047px;}
.y109{bottom:403.200096px;}
.y5c{bottom:407.700096px;}
.yd6{bottom:415.080093px;}
.y47{bottom:417.420043px;}
.y8c{bottom:419.220085px;}
.ya0{bottom:419.400055px;}
.y1d{bottom:422.640060px;}
.y79{bottom:422.820099px;}
.y5b{bottom:429.480079px;}
.yd5{bottom:436.860077px;}
.yec{bottom:439.200096px;}
.y1c{bottom:444.420043px;}
.y78{bottom:444.600083px;}
.y8b{bottom:448.560036px;}
.y46{bottom:451.080093px;}
.y9f{bottom:453.060036px;}
.y118{bottom:456.300041px;}
.yd4{bottom:458.640060px;}
.yeb{bottom:460.800041px;}
.y1b{bottom:466.020058px;}
.y77{bottom:466.200096px;}
.y45{bottom:472.860077px;}
.y9e{bottom:474.840088px;}
.y117{bottom:478.080093px;}
.yd3{bottom:480.420043px;}
.yea{bottom:482.580093px;}
.y1a{bottom:487.800041px;}
.y76{bottom:487.980079px;}
.y44{bottom:494.640060px;}
.y9d{bottom:496.620072px;}
.yfd{bottom:499.860077px;}
.yd2{bottom:502.020058px;}
.y19{bottom:509.580093px;}
.y108{bottom:514.080093px;}
.y43{bottom:516.420043px;}
.y9c{bottom:518.400055px;}
.yfc{bottom:521.640060px;}
.y75{bottom:521.820099px;}
.yd1{bottom:523.800041px;}
.y18{bottom:531.360077px;}
.y116{bottom:533.520058px;}
.y107{bottom:535.860077px;}
.y42{bottom:538.020058px;}
.y9b{bottom:540.000068px;}
.yfb{bottom:543.240074px;}
.y74{bottom:543.420043px;}
.yd0{bottom:545.580093px;}
.ye9{bottom:550.080093px;}
.y17{bottom:552.960091px;}
.y115{bottom:555.300041px;}
.y106{bottom:557.640060px;}
.y41{bottom:559.800041px;}
.y73{bottom:565.200096px;}
.ycf{bottom:567.360077px;}
.y9a{bottom:569.160049px;}
.ye8{bottom:571.860077px;}
.y16{bottom:574.740074px;}
.yfa{bottom:577.080093px;}
.y105{bottom:579.240074px;}
.y40{bottom:581.580093px;}
.y72{bottom:586.980079px;}
.ye7{bottom:593.640060px;}
.yf9{bottom:598.680039px;}
.yce{bottom:601.020058px;}
.y3f{bottom:603.360077px;}
.y15{bottom:608.580093px;}
.y71{bottom:608.760064px;}
.y114{bottom:610.740074px;}
.ye6{bottom:615.240074px;}
.yf8{bottom:620.460091px;}
.ycd{bottom:622.800041px;}
.y3e{bottom:624.960091px;}
.yba{bottom:627.300041px;}
.y70{bottom:630.360077px;}
.y113{bottom:632.520058px;}
.ye5{bottom:637.020058px;}
.y14{bottom:642.240074px;}
.ycc{bottom:644.580093px;}
.y3d{bottom:646.740074px;}
.yb9{bottom:649.080093px;}
.y6f{bottom:652.140060px;}
.yf7{bottom:654.300041px;}
.ye4{bottom:658.800041px;}
.y13{bottom:664.020058px;}
.ycb{bottom:666.180039px;}
.y3c{bottom:668.520058px;}
.yb8{bottom:670.680039px;}
.y6e{bottom:673.920043px;}
.yf6{bottom:675.900055px;}
.ye3{bottom:680.580093px;}
.y12{bottom:685.620072px;}
.yca{bottom:687.960056px;}
.y3b{bottom:690.300076px;}
.yb7{bottom:692.460056px;}
.y6d{bottom:695.700061px;}
.y11{bottom:707.400055px;}
.yf5{bottom:709.740074px;}
.y3a{bottom:711.900055px;}
.yb6{bottom:714.240074px;}
.yc9{bottom:721.620072px;}
.y10{bottom:729.180073px;}
.y6c{bottom:729.360077px;}
.yf4{bottom:731.520058px;}
.y5a{bottom:733.680073px;}
.yb5{bottom:736.020058px;}
.yc8{bottom:743.400055px;}
.y39{bottom:745.740074px;}
.yf{bottom:750.960056px;}
.y6b{bottom:751.140060px;}
.yf3{bottom:753.120072px;}
.yb4{bottom:757.620072px;}
.yc7{bottom:765.180073px;}
.y38{bottom:767.520058px;}
.ye{bottom:772.740074px;}
.y6a{bottom:772.920078px;}
.yb3{bottom:779.400055px;}
.yc6{bottom:786.960056px;}
.y37{bottom:789.120072px;}
.yd{bottom:794.340054px;}
.y69{bottom:794.520058px;}
.yb2{bottom:801.180073px;}
.yc5{bottom:808.740074px;}
.y36{bottom:810.900055px;}
.yc{bottom:816.120072px;}
.y68{bottom:816.300076px;}
.yb1{bottom:822.960056px;}
.yc4{bottom:830.340054px;}
.y35{bottom:832.680073px;}
.yb{bottom:837.900055px;}
.yb0{bottom:844.740074px;}
.y67{bottom:845.640060px;}
.yc3{bottom:852.120072px;}
.y34{bottom:854.460056px;}
.ya{bottom:859.680073px;}
.y121{bottom:861.840054px;}
.yf2{bottom:864.180073px;}
.y99{bottom:866.340054px;}
.y59{bottom:876.060070px;}
.yc2{bottom:885.780052px;}
.y33{bottom:888.120072px;}
.y9{bottom:893.340054px;}
.y120{bottom:895.680073px;}
.y58{bottom:897.840054px;}
.y104{bottom:907.560070px;}
.y32{bottom:909.900055px;}
.y11f{bottom:917.280052px;}
.y57{bottom:919.620072px;}
.y8{bottom:927.000068px;}
.y31{bottom:931.680073px;}
.y56{bottom:941.400055px;}
.yaf{bottom:943.560070px;}
.y11e{bottom:951.120072px;}
.y30{bottom:953.280053px;}
.y7{bottom:960.840054px;}
.y55{bottom:963.000068px;}
.yae{bottom:965.340054px;}
.y11d{bottom:972.720051px;}
.y2f{bottom:975.060070px;}
.y6{bottom:982.620072px;}
.yc1{bottom:984.780069px;}
.yad{bottom:987.120072px;}
.y2e{bottom:996.840070px;}
.y11c{bottom:1006.560070px;}
.yac{bottom:1008.720068px;}
.y5{bottom:1016.280069px;}
.y8a{bottom:1018.620072px;}
.y11b{bottom:1028.340070px;}
.y2d{bottom:1030.500068px;}
.y4{bottom:1038.060070px;}
.y89{bottom:1040.220068px;}
.y2c{bottom:1052.280069px;}
.y88{bottom:1062.000068px;}
.y3{bottom:1071.720068px;}
.y2b{bottom:1074.060070px;}
.y87{bottom:1083.780069px;}
.y2a{bottom:1095.660067px;}
.y2{bottom:1105.560070px;}
.y29{bottom:1117.440067px;}
.y1{bottom:1139.220068px;}
.h3{height:65.886904px;}
.h2{height:67.827608px;}
.h4{height:71.615971px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:72.540003px;}
.x1{left:108.000000px;}
.x3{left:135.000000px;}
.x7{left:144.000000px;}
.x4{left:162.000000px;}
.x8{left:180.000000px;}
.x5{left:783.539978px;}
.x6{left:785.159981px;}
@media print{
.v2{vertical-align:-21.119872pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.049222pt;}
.ls5{letter-spacing:0.132522pt;}
.ls9{letter-spacing:0.132582pt;}
.ls8{letter-spacing:0.285338pt;}
.ls6{letter-spacing:0.285462pt;}
.ls4{letter-spacing:0.285522pt;}
.ls7{letter-spacing:0.285526pt;}
.ls3{letter-spacing:0.285582pt;}
.ls0{letter-spacing:34.889587pt;}
.ws1{word-spacing:-13.307422pt;}
.ws0{word-spacing:-8.389445pt;}
.ws2{word-spacing:0.000000pt;}
._8a{margin-left:-2607.227358pt;}
._93{margin-left:-2605.608604pt;}
._88{margin-left:-2604.638832pt;}
._5d{margin-left:-2603.313273pt;}
._84{margin-left:-2601.887498pt;}
._5f{margin-left:-2600.836600pt;}
._79{margin-left:-2599.249539pt;}
._dc{margin-left:-2597.572740pt;}
._ee{margin-left:-2596.571943pt;}
._97{margin-left:-2595.616537pt;}
._72{margin-left:-2592.968602pt;}
._62{margin-left:-2591.949660pt;}
._7a{margin-left:-2590.210114pt;}
._5e{margin-left:-2588.587258pt;}
._c4{margin-left:-2587.658729pt;}
._9b{margin-left:-2586.755804pt;}
._91{margin-left:-2584.138238pt;}
._7e{margin-left:-2582.283457pt;}
._a9{margin-left:-2580.828618pt;}
._a3{margin-left:-2579.869812pt;}
._e2{margin-left:-2578.811029pt;}
._12{margin-left:-2577.138142pt;}
._1c{margin-left:-2575.238524pt;}
._5b{margin-left:-2574.317947pt;}
._58{margin-left:-2572.476993pt;}
._d{margin-left:-2570.835923pt;}
._64{margin-left:-2568.799921pt;}
._20{margin-left:-2567.580592pt;}
._a7{margin-left:-2565.602331pt;}
._77{margin-left:-2562.617269pt;}
._76{margin-left:-2561.721397pt;}
._90{margin-left:-2560.830326pt;}
._66{margin-left:-2559.820370pt;}
._6b{margin-left:-2558.381293pt;}
._13{margin-left:-2557.113261pt;}
._a1{margin-left:-2556.217028pt;}
._48{margin-left:-2554.932586pt;}
._55{margin-left:-2553.173006pt;}
._23{margin-left:-2551.674487pt;}
._1d{margin-left:-2550.128046pt;}
._57{margin-left:-2548.510005pt;}
._1e{margin-left:-2546.286324pt;}
._4f{margin-left:-2545.037234pt;}
._3c{margin-left:-2543.334211pt;}
._2d{margin-left:-2540.977923pt;}
._6e{margin-left:-2539.986278pt;}
._38{margin-left:-2538.951119pt;}
._b9{margin-left:-2537.662617pt;}
._de{margin-left:-2536.028746pt;}
._4e{margin-left:-2534.786316pt;}
._35{margin-left:-2533.549785pt;}
._61{margin-left:-2531.783713pt;}
._1a{margin-left:-2529.735577pt;}
._32{margin-left:-2528.462898pt;}
._b{margin-left:-2527.072721pt;}
._9c{margin-left:-2525.835706pt;}
._ae{margin-left:-2524.579239pt;}
._27{margin-left:-2523.622389pt;}
._3d{margin-left:-2521.699333pt;}
._36{margin-left:-2520.632501pt;}
._17{margin-left:-2519.159449pt;}
._85{margin-left:-2517.569703pt;}
._b8{margin-left:-2515.991364pt;}
._b7{margin-left:-2514.772774pt;}
._7b{margin-left:-2513.664961pt;}
._33{margin-left:-2512.464796pt;}
._7f{margin-left:-2511.244920pt;}
._6a{margin-left:-2507.858634pt;}
._4c{margin-left:-2506.637969pt;}
._6f{margin-left:-2505.601165pt;}
._4b{margin-left:-2503.521825pt;}
._9f{margin-left:-2501.862148pt;}
._25{margin-left:-2500.388674pt;}
._60{margin-left:-2499.414211pt;}
._cf{margin-left:-2498.206874pt;}
._54{margin-left:-2496.079545pt;}
._86{margin-left:-2494.884568pt;}
._47{margin-left:-2493.400944pt;}
._3a{margin-left:-2492.160081pt;}
._69{margin-left:-2491.253864pt;}
._49{margin-left:-2489.605108pt;}
._59{margin-left:-2488.472812pt;}
._b4{margin-left:-2486.998193pt;}
._a5{margin-left:-2484.991023pt;}
._2{margin-left:-2483.764636pt;}
._8{margin-left:-2481.676849pt;}
._37{margin-left:-2480.601220pt;}
._14{margin-left:-2477.591034pt;}
._b0{margin-left:-2476.003789pt;}
._7c{margin-left:-2474.455460pt;}
._56{margin-left:-2473.124928pt;}
._3b{margin-left:-2471.612683pt;}
._a0{margin-left:-2470.359453pt;}
._65{margin-left:-2468.690886pt;}
._96{margin-left:-2465.155606pt;}
._42{margin-left:-2460.623918pt;}
._e0{margin-left:-2458.520789pt;}
._50{margin-left:-2455.994773pt;}
._40{margin-left:-2453.814351pt;}
._aa{margin-left:-2452.532305pt;}
._ea{margin-left:-2451.463924pt;}
._82{margin-left:-2449.648840pt;}
._41{margin-left:-2448.120378pt;}
._f8{margin-left:-2445.309144pt;}
._fa{margin-left:-2444.083814pt;}
._b5{margin-left:-2442.394373pt;}
._2c{margin-left:-2440.611634pt;}
._10{margin-left:-2436.869508pt;}
._1b{margin-left:-2435.643735pt;}
._8f{margin-left:-2434.506063pt;}
._bc{margin-left:-2432.324127pt;}
._f{margin-left:-2431.368350pt;}
._f2{margin-left:-2430.399819pt;}
._45{margin-left:-2428.859729pt;}
._c{margin-left:-2426.931700pt;}
._70{margin-left:-2425.627351pt;}
._8b{margin-left:-2423.115908pt;}
._18{margin-left:-2421.462032pt;}
._2b{margin-left:-2419.385767pt;}
._bb{margin-left:-2416.085872pt;}
._d8{margin-left:-2415.188981pt;}
._11{margin-left:-2413.173689pt;}
._2a{margin-left:-2412.059547pt;}
._63{margin-left:-2407.974146pt;}
._73{margin-left:-2404.547452pt;}
._9d{margin-left:-2397.422681pt;}
._5c{margin-left:-2395.874256pt;}
._46{margin-left:-2392.687207pt;}
._a4{margin-left:-2391.498589pt;}
._43{margin-left:-2387.808983pt;}
._cc{margin-left:-2383.641640pt;}
._4d{margin-left:-2381.945516pt;}
._2e{margin-left:-2380.473456pt;}
._b3{margin-left:-2372.821353pt;}
._e5{margin-left:-2370.128582pt;}
._3e{margin-left:-2368.151217pt;}
._74{margin-left:-2366.468480pt;}
._53{margin-left:-2363.173837pt;}
._be{margin-left:-2359.275871pt;}
._ad{margin-left:-2358.333753pt;}
._a2{margin-left:-2351.494439pt;}
._98{margin-left:-2346.639156pt;}
._31{margin-left:-2345.330406pt;}
._6c{margin-left:-2344.335880pt;}
._3f{margin-left:-2338.171120pt;}
._4a{margin-left:-2336.227971pt;}
._ba{margin-left:-2330.049700pt;}
._30{margin-left:-2322.141498pt;}
._100{margin-left:-2320.128031pt;}
._e{margin-left:-2318.044291pt;}
._87{margin-left:-2316.332661pt;}
._cb{margin-left:-2270.244426pt;}
._dd{margin-left:-2266.133288pt;}
._104{margin-left:-2264.914251pt;}
._d4{margin-left:-2243.661412pt;}
._7{margin-left:-2211.242942pt;}
._da{margin-left:-2210.173494pt;}
._c6{margin-left:-2161.523969pt;}
._fc{margin-left:-2154.703803pt;}
._89{margin-left:-2084.325247pt;}
._d2{margin-left:-2049.822577pt;}
._fe{margin-left:-2048.546291pt;}
._f1{margin-left:-2038.863987pt;}
._f4{margin-left:-2029.832551pt;}
._d7{margin-left:-2017.700373pt;}
._34{margin-left:-2000.820242pt;}
._fb{margin-left:-1996.125026pt;}
._ca{margin-left:-1982.489193pt;}
._d0{margin-left:-1974.806933pt;}
._102{margin-left:-1966.696152pt;}
._e8{margin-left:-1958.931901pt;}
._e6{margin-left:-1956.432531pt;}
._92{margin-left:-1945.305703pt;}
._c8{margin-left:-1917.258357pt;}
._bd{margin-left:-1905.451274pt;}
._d6{margin-left:-1882.476770pt;}
._e3{margin-left:-1869.642967pt;}
._83{margin-left:-1854.647277pt;}
._ff{margin-left:-1840.585508pt;}
._ce{margin-left:-1816.329457pt;}
._f3{margin-left:-1796.039967pt;}
._71{margin-left:-1791.378124pt;}
._f6{margin-left:-1763.555544pt;}
._6{margin-left:-1757.414254pt;}
._95{margin-left:-1747.654834pt;}
._c3{margin-left:-1741.357540pt;}
._eb{margin-left:-1715.108653pt;}
._105{margin-left:-1701.993560pt;}
._c1{margin-left:-1689.599910pt;}
._ed{margin-left:-1635.149287pt;}
._e1{margin-left:-1617.553989pt;}
._d5{margin-left:-1602.623515pt;}
._df{margin-left:-1558.361796pt;}
._ef{margin-left:-1532.559790pt;}
._f5{margin-left:-1511.070273pt;}
._a8{margin-left:-1484.111820pt;}
._26{margin-left:-1468.218487pt;}
._28{margin-left:-1451.767297pt;}
._e9{margin-left:-1396.727048pt;}
._d1{margin-left:-1380.337271pt;}
._78{margin-left:-1378.585603pt;}
._24{margin-left:-1363.022535pt;}
._e7{margin-left:-1351.131600pt;}
._db{margin-left:-1349.011834pt;}
._103{margin-left:-1316.920955pt;}
._ec{margin-left:-1315.625513pt;}
._f9{margin-left:-1307.490851pt;}
._d3{margin-left:-1298.735220pt;}
._f7{margin-left:-1270.247653pt;}
._e4{margin-left:-1266.547018pt;}
._101{margin-left:-1234.313386pt;}
._c9{margin-left:-1172.070165pt;}
._2f{margin-left:-1049.518911pt;}
._21{margin-left:-1034.141425pt;}
._68{margin-left:-1021.375509pt;}
._ab{margin-left:-895.180880pt;}
._b1{margin-left:-889.420051pt;}
._51{margin-left:-879.180889pt;}
._b6{margin-left:-861.777308pt;}
._b2{margin-left:-840.058658pt;}
._8e{margin-left:-834.985816pt;}
._6d{margin-left:-829.457297pt;}
._9e{margin-left:-828.096576pt;}
._c5{margin-left:-771.170904pt;}
._16{margin-left:-764.865784pt;}
._94{margin-left:-748.767908pt;}
._15{margin-left:-679.427422pt;}
._c0{margin-left:-677.925985pt;}
._44{margin-left:-658.583052pt;}
._fd{margin-left:-623.469898pt;}
._cd{margin-left:-602.480853pt;}
._39{margin-left:-599.472306pt;}
._8c{margin-left:-580.142789pt;}
._c2{margin-left:-564.165188pt;}
._f0{margin-left:-521.152758pt;}
._29{margin-left:-516.499821pt;}
._99{margin-left:-514.783325pt;}
._bf{margin-left:-483.740785pt;}
._9a{margin-left:-480.710886pt;}
._22{margin-left:-473.986728pt;}
._c7{margin-left:-467.126993pt;}
._ac{margin-left:-455.155925pt;}
._d9{margin-left:-446.725404pt;}
._52{margin-left:-430.649282pt;}
._9{margin-left:-426.048622pt;}
._80{margin-left:-423.642326pt;}
._a6{margin-left:-422.111383pt;}
._67{margin-left:-417.038541pt;}
._af{margin-left:-364.712558pt;}
._5a{margin-left:-351.405136pt;}
._a{margin-left:-342.459520pt;}
._8d{margin-left:-239.469694pt;}
._106{margin-left:-212.987430pt;}
._81{margin-left:-199.547426pt;}
._0{margin-left:-139.387410pt;}
._7d{margin-left:-7.377321pt;}
._1f{margin-left:-6.439342pt;}
._5{margin-left:-4.858346pt;}
._19{margin-left:-3.894203pt;}
._4{margin-left:-2.839643pt;}
._1{margin-left:-1.551413pt;}
._3{width:1.009956pt;}
._75{width:2.777080pt;}
.fs1{font-size:37.121440pt;}
.fs3{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:103.360047pt;}
.yab{bottom:108.960083pt;}
.y54{bottom:109.120057pt;}
.yc0{bottom:110.240052pt;}
.y103{bottom:111.840088pt;}
.ye2{bottom:115.840088pt;}
.y66{bottom:117.760071pt;}
.y98{bottom:119.520081pt;}
.y11a{bottom:120.480042pt;}
.y112{bottom:120.800049pt;}
.y85{bottom:122.720032pt;}
.yaa{bottom:128.320069pt;}
.y53{bottom:128.480042pt;}
.ybf{bottom:129.600037pt;}
.y28{bottom:131.200074pt;}
.ye1{bottom:135.200074pt;}
.y65{bottom:137.120057pt;}
.y111{bottom:137.280030pt;}
.y119{bottom:139.840088pt;}
.ya9{bottom:147.520081pt;}
.y52{bottom:147.840088pt;}
.ybe{bottom:148.800049pt;}
.y97{bottom:149.440064pt;}
.y102{bottom:150.400086pt;}
.y84{bottom:152.640076pt;}
.y110{bottom:153.920044pt;}
.ye0{bottom:154.400086pt;}
.y64{bottom:156.480042pt;}
.y27{bottom:161.120057pt;}
.y51{bottom:167.200074pt;}
.ybd{bottom:168.160035pt;}
.y101{bottom:169.760071pt;}
.ydf{bottom:173.760071pt;}
.y63{bottom:175.840088pt;}
.ya8{bottom:177.600037pt;}
.y96{bottom:179.520081pt;}
.y26{bottom:180.480042pt;}
.y10f{bottom:182.400086pt;}
.y83{bottom:182.560059pt;}
.yf1{bottom:184.480042pt;}
.y50{bottom:186.400086pt;}
.ybc{bottom:187.520081pt;}
.y100{bottom:189.120057pt;}
.yde{bottom:193.120057pt;}
.y62{bottom:195.200074pt;}
.y95{bottom:198.720032pt;}
.y25{bottom:199.680054pt;}
.y10e{bottom:201.760071pt;}
.y82{bottom:201.920044pt;}
.ya7{bottom:207.520081pt;}
.ydd{bottom:212.480042pt;}
.ybb{bottom:213.600037pt;}
.y61{bottom:214.400086pt;}
.y4f{bottom:216.480042pt;}
.y94{bottom:218.080079pt;}
.y24{bottom:219.040039pt;}
.y81{bottom:221.280030pt;}
.ya6{bottom:226.880066pt;}
.ydc{bottom:231.680054pt;}
.y60{bottom:233.760071pt;}
.y4e{bottom:235.840088pt;}
.y93{bottom:237.440064pt;}
.y23{bottom:238.400086pt;}
.y80{bottom:240.640076pt;}
.ya5{bottom:246.240052pt;}
.ydb{bottom:251.040039pt;}
.yf0{bottom:253.120057pt;}
.y4d{bottom:255.040039pt;}
.y92{bottom:256.800049pt;}
.y22{bottom:257.760071pt;}
.y7f{bottom:259.840088pt;}
.y5f{bottom:263.680054pt;}
.ya4{bottom:265.440064pt;}
.y10d{bottom:270.400086pt;}
.yef{bottom:272.480042pt;}
.y4c{bottom:274.400086pt;}
.y91{bottom:276.000061pt;}
.y7e{bottom:279.200074pt;}
.yda{bottom:281.120057pt;}
.ya3{bottom:284.800049pt;}
.y21{bottom:287.680054pt;}
.y10c{bottom:289.760071pt;}
.yee{bottom:291.680054pt;}
.y4b{bottom:293.760071pt;}
.y90{bottom:295.360047pt;}
.y7d{bottom:298.560059pt;}
.ya2{bottom:304.160035pt;}
.yff{bottom:307.040039pt;}
.yd9{bottom:311.040039pt;}
.y4a{bottom:313.120057pt;}
.y8f{bottom:314.720032pt;}
.y20{bottom:317.760071pt;}
.y7c{bottom:317.920044pt;}
.y10b{bottom:319.680054pt;}
.y5e{bottom:323.680054pt;}
.yfe{bottom:326.400086pt;}
.yd8{bottom:330.400086pt;}
.y49{bottom:332.320069pt;}
.y8e{bottom:334.080079pt;}
.y1f{bottom:336.960083pt;}
.y7b{bottom:337.120057pt;}
.y10a{bottom:339.040039pt;}
.yed{bottom:340.960083pt;}
.y5d{bottom:343.040039pt;}
.yd7{bottom:349.760071pt;}
.y48{bottom:351.680054pt;}
.y8d{bottom:353.280030pt;}
.ya1{bottom:353.440064pt;}
.y1e{bottom:356.320069pt;}
.y7a{bottom:356.480042pt;}
.y109{bottom:358.400086pt;}
.y5c{bottom:362.400086pt;}
.yd6{bottom:368.960083pt;}
.y47{bottom:371.040039pt;}
.y8c{bottom:372.640076pt;}
.ya0{bottom:372.800049pt;}
.y1d{bottom:375.680054pt;}
.y79{bottom:375.840088pt;}
.y5b{bottom:381.760071pt;}
.yd5{bottom:388.320069pt;}
.yec{bottom:390.400086pt;}
.y1c{bottom:395.040039pt;}
.y78{bottom:395.200074pt;}
.y8b{bottom:398.720032pt;}
.y46{bottom:400.960083pt;}
.y9f{bottom:402.720032pt;}
.y118{bottom:405.600037pt;}
.yd4{bottom:407.680054pt;}
.yeb{bottom:409.600037pt;}
.y1b{bottom:414.240052pt;}
.y77{bottom:414.400086pt;}
.y45{bottom:420.320069pt;}
.y9e{bottom:422.080079pt;}
.y117{bottom:424.960083pt;}
.yd3{bottom:427.040039pt;}
.yea{bottom:428.960083pt;}
.y1a{bottom:433.600037pt;}
.y76{bottom:433.760071pt;}
.y44{bottom:439.680054pt;}
.y9d{bottom:441.440064pt;}
.yfd{bottom:444.320069pt;}
.yd2{bottom:446.240052pt;}
.y19{bottom:452.960083pt;}
.y108{bottom:456.960083pt;}
.y43{bottom:459.040039pt;}
.y9c{bottom:460.800049pt;}
.yfc{bottom:463.680054pt;}
.y75{bottom:463.840088pt;}
.yd1{bottom:465.600037pt;}
.y18{bottom:472.320069pt;}
.y116{bottom:474.240052pt;}
.y107{bottom:476.320069pt;}
.y42{bottom:478.240052pt;}
.y9b{bottom:480.000061pt;}
.yfb{bottom:482.880066pt;}
.y74{bottom:483.040039pt;}
.yd0{bottom:484.960083pt;}
.ye9{bottom:488.960083pt;}
.y17{bottom:491.520081pt;}
.y115{bottom:493.600037pt;}
.y106{bottom:495.680054pt;}
.y41{bottom:497.600037pt;}
.y73{bottom:502.400086pt;}
.ycf{bottom:504.320069pt;}
.y9a{bottom:505.920044pt;}
.ye8{bottom:508.320069pt;}
.y16{bottom:510.880066pt;}
.yfa{bottom:512.960083pt;}
.y105{bottom:514.880066pt;}
.y40{bottom:516.960083pt;}
.y72{bottom:521.760071pt;}
.ye7{bottom:527.680054pt;}
.yf9{bottom:532.160035pt;}
.yce{bottom:534.240052pt;}
.y3f{bottom:536.320069pt;}
.y15{bottom:540.960083pt;}
.y71{bottom:541.120057pt;}
.y114{bottom:542.880066pt;}
.ye6{bottom:546.880066pt;}
.yf8{bottom:551.520081pt;}
.ycd{bottom:553.600037pt;}
.y3e{bottom:555.520081pt;}
.yba{bottom:557.600037pt;}
.y70{bottom:560.320069pt;}
.y113{bottom:562.240052pt;}
.ye5{bottom:566.240052pt;}
.y14{bottom:570.880066pt;}
.ycc{bottom:572.960083pt;}
.y3d{bottom:574.880066pt;}
.yb9{bottom:576.960083pt;}
.y6f{bottom:579.680054pt;}
.yf7{bottom:581.600037pt;}
.ye4{bottom:585.600037pt;}
.y13{bottom:590.240052pt;}
.ycb{bottom:592.160035pt;}
.y3c{bottom:594.240052pt;}
.yb8{bottom:596.160035pt;}
.y6e{bottom:599.040039pt;}
.yf6{bottom:600.800049pt;}
.ye3{bottom:604.960083pt;}
.y12{bottom:609.440064pt;}
.yca{bottom:611.520050pt;}
.y3b{bottom:613.600068pt;}
.yb7{bottom:615.520050pt;}
.y6d{bottom:618.400055pt;}
.y11{bottom:628.800049pt;}
.yf5{bottom:630.880066pt;}
.y3a{bottom:632.800049pt;}
.yb6{bottom:634.880066pt;}
.yc9{bottom:641.440064pt;}
.y10{bottom:648.160065pt;}
.y6c{bottom:648.320069pt;}
.yf4{bottom:650.240052pt;}
.y5a{bottom:652.160065pt;}
.yb5{bottom:654.240052pt;}
.yc8{bottom:660.800049pt;}
.y39{bottom:662.880066pt;}
.yf{bottom:667.520050pt;}
.y6b{bottom:667.680054pt;}
.yf3{bottom:669.440064pt;}
.yb4{bottom:673.440064pt;}
.yc7{bottom:680.160065pt;}
.y38{bottom:682.240052pt;}
.ye{bottom:686.880066pt;}
.y6a{bottom:687.040070pt;}
.yb3{bottom:692.800049pt;}
.yc6{bottom:699.520050pt;}
.y37{bottom:701.440064pt;}
.yd{bottom:706.080048pt;}
.y69{bottom:706.240052pt;}
.yb2{bottom:712.160065pt;}
.yc5{bottom:718.880066pt;}
.y36{bottom:720.800049pt;}
.yc{bottom:725.440064pt;}
.y68{bottom:725.600068pt;}
.yb1{bottom:731.520050pt;}
.yc4{bottom:738.080048pt;}
.y35{bottom:740.160065pt;}
.yb{bottom:744.800049pt;}
.yb0{bottom:750.880066pt;}
.y67{bottom:751.680054pt;}
.yc3{bottom:757.440064pt;}
.y34{bottom:759.520050pt;}
.ya{bottom:764.160065pt;}
.y121{bottom:766.080048pt;}
.yf2{bottom:768.160065pt;}
.y99{bottom:770.080048pt;}
.y59{bottom:778.720063pt;}
.yc2{bottom:787.360047pt;}
.y33{bottom:789.440064pt;}
.y9{bottom:794.080048pt;}
.y120{bottom:796.160065pt;}
.y58{bottom:798.080048pt;}
.y104{bottom:806.720063pt;}
.y32{bottom:808.800049pt;}
.y11f{bottom:815.360047pt;}
.y57{bottom:817.440064pt;}
.y8{bottom:824.000061pt;}
.y31{bottom:828.160065pt;}
.y56{bottom:836.800049pt;}
.yaf{bottom:838.720063pt;}
.y11e{bottom:845.440064pt;}
.y30{bottom:847.360047pt;}
.y7{bottom:854.080048pt;}
.y55{bottom:856.000061pt;}
.yae{bottom:858.080048pt;}
.y11d{bottom:864.640046pt;}
.y2f{bottom:866.720063pt;}
.y6{bottom:873.440064pt;}
.yc1{bottom:875.360062pt;}
.yad{bottom:877.440064pt;}
.y2e{bottom:886.080063pt;}
.y11c{bottom:894.720063pt;}
.yac{bottom:896.640061pt;}
.y5{bottom:903.360062pt;}
.y8a{bottom:905.440064pt;}
.y11b{bottom:914.080063pt;}
.y2d{bottom:916.000061pt;}
.y4{bottom:922.720063pt;}
.y89{bottom:924.640061pt;}
.y2c{bottom:935.360062pt;}
.y88{bottom:944.000061pt;}
.y3{bottom:952.640061pt;}
.y2b{bottom:954.720063pt;}
.y87{bottom:963.360062pt;}
.y2a{bottom:973.920060pt;}
.y2{bottom:982.720063pt;}
.y29{bottom:993.280060pt;}
.y1{bottom:1012.640061pt;}
.h3{height:58.566137pt;}
.h2{height:60.291207pt;}
.h4{height:63.658641pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:64.480003pt;}
.x1{left:96.000000pt;}
.x3{left:120.000000pt;}
.x7{left:128.000000pt;}
.x4{left:144.000000pt;}
.x8{left:160.000000pt;}
.x5{left:696.479980pt;}
.x6{left:697.919983pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  