
    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_d6c7ca76ed2d571043f33a22.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_a5d241992c1471c1e66b3aeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_7f9554845fd1b41322dedee9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_f8b86bceb2c3a1cbbeb4bd9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_fbb37e2a0173b44600decb74.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_d78a0a60b7a821968036deaa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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:ff7;src:url('chunks/assets/font_72ecd4f520367b8ff000c92f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731445;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:ff8;src:url('chunks/assets/font_5c81aef0f8e14cb2a9ab16aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:73.906637px;}
.ls2{letter-spacing:110.368159px;}
.ls1{letter-spacing:169.310832px;}
.ls3{letter-spacing:421.942263px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._1c8{margin-left:-2684.068587px;}
._ac{margin-left:-2666.042913px;}
._89{margin-left:-2663.009127px;}
._136{margin-left:-2657.020873px;}
._196{margin-left:-2655.791438px;}
._c3{margin-left:-2653.578450px;}
._12b{margin-left:-2650.838565px;}
._110{margin-left:-2649.433497px;}
._169{margin-left:-2647.852799px;}
._e8{margin-left:-2637.104020px;}
._222{margin-left:-2633.169828px;}
._22f{margin-left:-2632.080895px;}
._a5{margin-left:-2628.893167px;}
._216{margin-left:-2622.561553px;}
._15f{margin-left:-2620.278316px;}
._20b{margin-left:-2619.189545px;}
._103{margin-left:-2615.009303px;}
._193{margin-left:-2613.323222px;}
._cb{margin-left:-2609.406633px;}
._e3{margin-left:-2607.263990px;}
._18c{margin-left:-2603.376840px;}
._128{margin-left:-2601.292359px;}
._152{margin-left:-2598.499748px;}
._1f0{margin-left:-2596.146254px;}
._1f1{margin-left:-2590.420597px;}
._d1{margin-left:-2583.430491px;}
._1a3{margin-left:-2579.601562px;}
._140{margin-left:-2576.791426px;}
._18e{margin-left:-2574.455604px;}
._120{margin-left:-2572.260091px;}
._219{margin-left:-2570.292978px;}
._100{margin-left:-2569.274395px;}
._50{margin-left:-2567.588222px;}
._213{margin-left:-2566.323660px;}
._6f{margin-left:-2564.391694px;}
._b5{margin-left:-2562.529994px;}
._22d{margin-left:-2561.089777px;}
._39{margin-left:-2559.930599px;}
._1c0{margin-left:-2556.734152px;}
._174{margin-left:-2551.886570px;}
._22b{margin-left:-2549.585925px;}
._c0{margin-left:-2547.987511px;}
._233{margin-left:-2546.740571px;}
._76{margin-left:-2545.036861px;}
._139{margin-left:-2542.613120px;}
._211{margin-left:-2541.453936px;}
._1b1{margin-left:-2540.400202px;}
._b0{margin-left:-2539.276078px;}
._22e{margin-left:-2537.168477px;}
._c6{margin-left:-2534.990621px;}
._108{margin-left:-2533.199157px;}
._17f{margin-left:-2531.583330px;}
._f7{margin-left:-2530.002616px;}
._178{margin-left:-2528.878570px;}
._27{margin-left:-2526.033347px;}
._17a{margin-left:-2524.944375px;}
._1b4{margin-left:-2522.058458px;}
._21b{margin-left:-2518.551312px;}
._5a{margin-left:-2517.286749px;}
._9f{margin-left:-2515.038635px;}
._16f{margin-left:-2511.666473px;}
._69{margin-left:-2508.224051px;}
._14f{margin-left:-2506.959577px;}
._de{margin-left:-2505.870563px;}
._1ec{margin-left:-2504.149353px;}
._1e4{margin-left:-2502.006621px;}
._f1{margin-left:-2499.582900px;}
._226{margin-left:-2498.529073px;}
._1a8{margin-left:-2496.983587px;}
._239{margin-left:-2495.718970px;}
._5e{margin-left:-2494.384116px;}
._230{margin-left:-2493.365449px;}
._201{margin-left:-2491.538968px;}
._82{margin-left:-2490.379672px;}
._167{margin-left:-2489.115111px;}
._184{margin-left:-2486.252433px;}
._1c3{margin-left:-2485.245625px;}
._1ce{margin-left:-2483.213815px;}
._206{margin-left:-2481.422355px;}
._30{margin-left:-2480.228050px;}
._1b7{margin-left:-2477.979940px;}
._1bb{margin-left:-2476.047971px;}
._a8{margin-left:-2474.186248px;}
._11b{margin-left:-2471.973266px;}
._1ae{margin-left:-2469.965521px;}
._109{margin-left:-2468.284963px;}
._10f{margin-left:-2465.790965px;}
._176{margin-left:-2464.210262px;}
._1a5{margin-left:-2462.945805px;}
._1bf{margin-left:-2461.505503px;}
._1bd{margin-left:-2459.819423px;}
._142{margin-left:-2457.641561px;}
._13c{margin-left:-2456.412136px;}
._126{margin-left:-2454.199145px;}
._11d{margin-left:-2452.969708px;}
._1c2{margin-left:-2451.880780px;}
._22c{margin-left:-2450.440584px;}
._1f8{margin-left:-2449.035518px;}
._149{margin-left:-2447.770952px;}
._1a2{margin-left:-2446.471268px;}
._165{margin-left:-2444.504164px;}
._17c{margin-left:-2442.923508px;}
._ec{margin-left:-2441.167126px;}
._223{margin-left:-2436.425102px;}
._14a{margin-left:-2432.877221px;}
._15b{margin-left:-2430.874993px;}
._1b3{margin-left:-2429.645555px;}
._231{margin-left:-2428.416201px;}
._197{margin-left:-2427.292070px;}
._e7{margin-left:-2425.676243px;}
._161{margin-left:-2424.025286px;}
._15c{margin-left:-2422.971478px;}
._228{margin-left:-2421.812274px;}
._ee{margin-left:-2419.704699px;}
._227{margin-left:-2418.053740px;}
._14c{margin-left:-2416.086647px;}
._1f3{margin-left:-2414.295234px;}
._1b{margin-left:-2412.819859px;}
._bc{margin-left:-2411.660672px;}
._194{margin-left:-2408.569498px;}
._133{margin-left:-2406.936217px;}
._9b{margin-left:-2405.337857px;}
._1ac{margin-left:-2404.003023px;}
._1e3{margin-left:-2401.755002px;}
._135{margin-left:-2400.666012px;}
._d8{margin-left:-2397.223767px;}
._7a{margin-left:-2395.642882px;}
._19e{margin-left:-2393.710948px;}
._244{margin-left:-2391.497938px;}
._214{margin-left:-2388.863517px;}
._237{margin-left:-2387.739354px;}
._19f{margin-left:-2384.823854px;}
._208{margin-left:-2383.093903px;}
._1de{margin-left:-2379.835970px;}
._1b6{margin-left:-2377.798600px;}
._48{margin-left:-2376.112427px;}
._10b{margin-left:-2373.794131px;}
._191{margin-left:-2371.545923px;}
._186{margin-left:-2368.314273px;}
._1b8{margin-left:-2364.555711px;}
._20d{margin-left:-2363.220895px;}
._1be{margin-left:-2362.184691px;}
._200{margin-left:-2358.022161px;}
._190{margin-left:-2356.239560px;}
._1e7{margin-left:-2355.176892px;}
._f9{margin-left:-2353.666447px;}
._232{margin-left:-2346.254686px;}
._1e6{margin-left:-2344.674007px;}
._114{margin-left:-2342.069107px;}
._11c{margin-left:-2340.564154px;}
._177{margin-left:-2338.526805px;}
._102{margin-left:-2336.384074px;}
._95{margin-left:-2330.939428px;}
._124{margin-left:-2328.199568px;}
._249{margin-left:-2326.864732px;}
._245{margin-left:-2321.344335px;}
._138{margin-left:-2319.804275px;}
._1f5{margin-left:-2318.574824px;}
._21e{margin-left:-2317.556145px;}
._f4{margin-left:-2313.780188px;}
._220{margin-left:-2311.127999px;}
._23c{margin-left:-2307.580204px;}
._130{margin-left:-2306.201495px;}
._14d{margin-left:-2303.821614px;}
._21d{margin-left:-2302.100409px;}
._229{margin-left:-2298.095963px;}
._12a{margin-left:-2297.007010px;}
._1da{margin-left:-2295.250671px;}
._21c{margin-left:-2293.143178px;}
._182{margin-left:-2290.649070px;}
._24b{margin-left:-2285.687224px;}
._15a{margin-left:-2284.115505px;}
._1e9{margin-left:-2281.129797px;}
._205{margin-left:-2279.759918px;}
._1f2{margin-left:-2277.845463px;}
._1f7{margin-left:-2275.439400px;}
._146{margin-left:-2273.059492px;}
._13a{margin-left:-2267.729024px;}
._1d3{margin-left:-2264.549957px;}
._23e{margin-left:-2263.425879px;}
._12c{margin-left:-2262.161362px;}
._1ff{margin-left:-2259.170002px;}
._151{margin-left:-2256.611275px;}
._1cf{margin-left:-2253.730878px;}
._210{margin-left:-2252.536567px;}
._203{margin-left:-2251.236885px;}
._209{margin-left:-2245.405868px;}
._116{margin-left:-2237.572610px;}
._1c6{margin-left:-2234.077544px;}
._198{margin-left:-2225.717423px;}
._13f{margin-left:-2220.465871px;}
._1ba{margin-left:-2217.023607px;}
._188{margin-left:-2212.983901px;}
._1fa{margin-left:-2207.539255px;}
._23f{margin-left:-2204.526950px;}
._1f6{margin-left:-2202.463462px;}
._24f{margin-left:-2201.216492px;}
._248{margin-left:-2197.554397px;}
._1c9{margin-left:-2195.350260px;}
._1e1{margin-left:-2192.821136px;}
._e0{margin-left:-2185.444542px;}
._1a0{margin-left:-2180.105304px;}
._17e{margin-left:-2175.117354px;}
._212{margin-left:-2173.887962px;}
._cd{margin-left:-2169.637515px;}
._23d{margin-left:-2163.209301px;}
._16a{margin-left:-2159.134594px;}
._1ab{margin-left:-2156.394719px;}
._217{margin-left:-2125.553449px;}
._24a{margin-left:-2093.579092px;}
._24d{margin-left:-2013.393804px;}
._242{margin-left:-1856.183591px;}
._5{margin-left:-130.952444px;}
._7{margin-left:-99.478895px;}
._a{margin-left:-75.873734px;}
._115{margin-left:-74.649077px;}
._d{margin-left:-71.697868px;}
._101{margin-left:-68.602478px;}
._0{margin-left:-66.288374px;}
._3{margin-left:-62.964641px;}
._10{margin-left:-59.052246px;}
._19{margin-left:-56.664195px;}
._247{margin-left:-55.640738px;}
._14{margin-left:-53.720930px;}
._17{margin-left:-50.582489px;}
._23b{margin-left:-42.382484px;}
._2{margin-left:-31.473549px;}
._8{margin-left:-26.977326px;}
._b{margin-left:-25.471475px;}
._e{margin-left:-20.975113px;}
._15{margin-left:-17.984885px;}
._1{margin-left:-9.343709px;}
._11{margin-left:-7.701804px;}
._145{margin-left:-6.603823px;}
._6{margin-left:-4.425968px;}
._18f{margin-left:-2.950618px;}
._12{margin-left:-1.515970px;}
._16e{width:3.477547px;}
._1a{width:4.496221px;}
._2f{width:8.957316px;}
._4f{width:13.488663px;}
._16{width:14.612719px;}
._f{width:17.059837px;}
._246{width:19.635841px;}
._c{width:20.694426px;}
._9{width:21.866404px;}
._b4{width:23.025578px;}
._13{width:24.228958px;}
._26{width:26.871970px;}
._20f{width:27.890621px;}
._25{width:31.473548px;}
._12f{width:35.091601px;}
._4{width:36.470347px;}
._132{width:39.517592px;}
._81{width:40.887512px;}
._5d{width:44.821708px;}
._162{width:45.875395px;}
._11f{width:49.423306px;}
._170{width:50.934004px;}
._a2{width:52.479310px;}
._93{width:54.376176px;}
._98{width:56.343273px;}
._1d8{width:57.607857px;}
._9a{width:59.153411px;}
._23a{width:61.164335px;}
._1d7{width:62.314816px;}
._aa{width:63.509125px;}
._80{width:64.984470px;}
._24e{width:66.178731px;}
._17b{width:67.864795px;}
._7f{width:68.918619px;}
._24c{width:70.622809px;}
._86{width:72.431292px;}
._7d{width:73.976913px;}
._243{width:75.601743px;}
._144{width:76.646522px;}
._6a{width:77.911039px;}
._218{width:79.175596px;}
._9d{width:80.440231px;}
._da{width:81.599386px;}
._fb{width:83.390831px;}
._4e{width:85.006683px;}
._d0{width:87.114219px;}
._20{width:88.308573px;}
._8f{width:90.345946px;}
._1e2{width:91.751105px;}
._3f{width:92.804839px;}
._33{width:94.842167px;}
._53{width:97.301016px;}
._238{width:98.495279px;}
._78{width:99.689633px;}
._7c{width:101.375716px;}
._181{width:102.657915px;}
._a0{width:103.834632px;}
._ae{width:105.380231px;}
._1cb{width:106.662501px;}
._18{width:107.909310px;}
._85{width:108.963134px;}
._d2{width:110.368181px;}
._17d{width:111.667910px;}
._59{width:112.827052px;}
._18d{width:114.144303px;}
._2a{width:115.285901px;}
._38{width:116.339725px;}
._db{width:117.815070px;}
._1ee{width:118.921260px;}
._75{width:120.273874px;}
._68{width:121.819450px;}
._20c{width:122.873229px;}
._c1{width:124.278343px;}
._63{width:125.332167px;}
._b6{width:126.385969px;}
._11e{width:127.510025px;}
._36{width:128.563826px;}
._192{width:129.687882px;}
._150{width:130.741774px;}
._87{width:131.795485px;}
._61{width:133.270831px;}
._8e{width:134.394886px;}
._49{width:136.361983px;}
._104{width:138.188550px;}
._160{width:140.015230px;}
._6e{width:141.068919px;}
._8c{width:142.263273px;}
._fc{width:143.317052px;}
._c4{width:144.441108px;}
._1dc{width:145.494649px;}
._92{width:146.829793px;}
._8a{width:147.883550px;}
._66{width:149.358850px;}
._236{width:150.676108px;}
._97{width:151.747467px;}
._56{width:153.363274px;}
._14b{width:154.838597px;}
._148{width:155.892444px;}
._5f{width:157.297490px;}
._cf{width:159.264610px;}
._46{width:160.739955px;}
._b9{width:161.793689px;}
._ba{width:162.847469px;}
._a9{width:164.814588px;}
._2d{width:166.781707px;}
._67{width:168.257007px;}
._94{width:170.294380px;}
._168{width:171.313075px;}
._4d{width:172.331753px;}
._dc{width:173.385532px;}
._91{width:174.720393px;}
._4b{width:176.757698px;}
._166{width:177.793983px;}
._8b{width:178.795026px;}
._3b{width:180.762123px;}
._eb{width:182.659033px;}
._154{width:184.204564px;}
._113{width:185.732761px;}
._a3{width:186.874151px;}
._74{width:188.279310px;}
._1c5{width:189.333089px;}
._d3{width:190.421994px;}
._37{width:192.283690px;}
._bd{width:193.759035px;}
._158{width:195.160841px;}
._1e{width:196.217883px;}
._117{width:197.271707px;}
._111{width:199.238804px;}
._3c{width:200.643873px;}
._143{width:202.330001px;}
._ef{width:203.664817px;}
._32{width:204.788805px;}
._175{width:205.983136px;}
._2b{width:207.247698px;}
._ca{width:208.582537px;}
._fd{width:209.776823px;}
._173{width:210.865683px;}
._22{width:212.165440px;}
._16d{width:213.219265px;}
._ce{width:214.273044px;}
._40{width:216.240141px;}
._3e{width:217.364151px;}
._11a{width:218.839496px;}
._1d{width:220.174334px;}
._6c{width:221.719955px;}
._e9{width:223.757261px;}
._a6{width:224.811063px;}
._cc{width:226.567422px;}
._24{width:227.691477px;}
._15d{width:228.745189px;}
._7b{width:229.799036px;}
._1ad{width:230.975776px;}
._1c{width:232.187698px;}
._d5{width:234.154772px;}
._10a{width:235.629983px;}
._60{width:237.175671px;}
._62{width:239.142768px;}
._ad{width:241.039656px;}
._f8{width:242.233920px;}
._23{width:243.709220px;}
._64{width:245.254796px;}
._b7{width:246.659888px;}
._4a{width:248.064979px;}
._52{width:249.189035px;}
._19b{width:250.277940px;}
._96{width:251.296549px;}
._3a{width:252.701708px;}
._9e{width:254.106732px;}
._18a{width:255.142961px;}
._57{width:256.635901px;}
._b8{width:258.111246px;}
._1ea{width:259.340700px;}
._79{width:260.570050px;}
._ea{width:262.308874px;}
._21{width:264.012492px;}
._125{width:265.698462px;}
._47{width:267.244151px;}
._31{width:268.508735px;}
._d4{width:270.194796px;}
._1d0{width:271.204785px;}
._5c{width:272.653689px;}
._45{width:274.691017px;}
._fa{width:276.166362px;}
._be{width:277.782259px;}
._164{width:278.993995px;}
._1f{width:280.100556px;}
._90{width:282.067608px;}
._72{width:284.034704px;}
._d7{width:285.510050px;}
._2e{width:286.634105px;}
._3d{width:288.671478px;}
._ff{width:289.760320px;}
._f5{width:291.007354px;}
._83{width:292.675925px;}
._44{width:294.572723px;}
._43{width:296.539865px;}
._dd{width:297.839510px;}
._131{width:299.841687px;}
._51{width:301.036064px;}
._a7{width:302.160209px;}
._42{width:303.881330px;}
._13e{width:305.462121px;}
._c7{width:306.515901px;}
._b3{width:307.710142px;}
._55{width:309.115211px;}
._c9{width:310.590556px;}
._e1{width:312.698160px;}
._bb{width:314.032931px;}
._99{width:315.648805px;}
._bf{width:317.053874px;}
._171{width:318.669705px;}
._58{width:320.636778px;}
._159{width:322.849577px;}
._71{width:323.938713px;}
._14e{width:325.484199px;}
._189{width:326.520451px;}
._f3{width:327.591893px;}
._10d{width:328.926508px;}
._d9{width:330.050764px;}
._157{width:331.174822px;}
._107{width:332.931156px;}
._b1{width:334.546940px;}
._5b{width:336.514059px;}
._fe{width:338.516283px;}
._f0{width:340.448253px;}
._a4{width:341.572308px;}
._1a4{width:343.627231px;}
._7e{width:344.663460px;}
._19d{width:346.612953px;}
._4c{width:348.246364px;}
._122{width:349.440651px;}
._10e{width:350.916107px;}
._70{width:352.040073px;}
._118{width:353.164106px;}
._73{width:355.482493px;}
._15e{width:357.379359px;}
._ab{width:358.433093px;}
._147{width:359.767954px;}
._f2{width:361.102814px;}
._137{width:362.999658px;}
._13b{width:364.615375px;}
._e2{width:365.950235px;}
._65{width:368.549636px;}
._195{width:369.691093px;}
._df{width:371.219155px;}
._105{width:372.975626px;}
._34{width:374.450926px;}
._a1{width:375.574982px;}
._121{width:376.980073px;}
._1fc{width:378.578308px;}
._1aa{width:380.000931px;}
._77{width:381.406018px;}
._b2{width:383.021781px;}
._134{width:384.356709px;}
._225{width:385.726627px;}
._1b5{width:386.780067px;}
._af{width:388.290880px;}
._10c{width:389.783714px;}
._54{width:390.820004px;}
._1e5{width:392.295394px;}
._1f4{width:393.665441px;}
._d6{width:394.894705px;}
._215{width:396.159337px;}
._16b{width:397.564156px;}
._187{width:399.952909px;}
._235{width:401.393198px;}
._c2{width:402.727986px;}
._9c{width:404.378944px;}
._141{width:406.346198px;}
._35{width:408.383368px;}
._1dd{width:409.507379px;}
._29{width:410.842217px;}
._241{width:412.106779px;}
._155{width:413.160516px;}
._204{width:414.179237px;}
._112{width:415.496502px;}
._88{width:417.375811px;}
._1b9{width:419.167185px;}
._1b2{width:420.221097px;}
._1c1{width:421.942263px;}
._1d4{width:423.025713px;}
._183{width:424.049844px;}
._1f9{width:425.226483px;}
._129{width:426.298045px;}
._41{width:427.913785px;}
._156{width:429.248578px;}
._6d{width:432.410006px;}
._c5{width:433.885351px;}
._106{width:436.906205px;}
._1d6{width:438.732928px;}
._84{width:440.559452px;}
._20a{width:441.577880px;}
._123{width:444.353094px;}
._1eb{width:446.004071px;}
._153{width:448.252267px;}
._1af{width:452.572770px;}
._8d{width:453.626550px;}
._28{width:454.891157px;}
._6b{width:455.944914px;}
._c8{width:458.403785px;}
._1ca{width:459.457609px;}
._1e0{width:460.511356px;}
._1db{width:461.916643px;}
._1ef{width:463.251298px;}
._199{width:466.342448px;}
._180{width:468.801236px;}
._234{width:470.188635px;}
._1d2{width:471.506077px;}
._19a{width:474.913370px;}
._ed{width:476.880489px;}
._119{width:479.321699px;}
._21f{width:480.410787px;}
._21a{width:482.518391px;}
._1a9{width:484.262615px;}
._e4{width:485.486535px;}
._12e{width:488.191273px;}
._1cd{width:489.192178px;}
._221{width:490.901586px;}
._179{width:494.373645px;}
._e6{width:495.989452px;}
._e5{width:497.324200px;}
._20e{width:500.134383px;}
._18b{width:501.960948px;}
._22a{width:503.787563px;}
._1fd{width:507.387975px;}
._224{width:508.775512px;}
._1d5{width:511.182269px;}
._1c7{width:512.288231px;}
._1a6{width:513.626265px;}
._207{width:514.975613px;}
._1d1{width:516.924937px;}
._163{width:518.330006px;}
._127{width:519.383876px;}
._1fb{width:522.299074px;}
._1a7{width:527.322449px;}
._13d{width:533.293970px;}
._1fe{width:537.702252px;}
._1b0{width:544.815616px;}
._202{width:548.565210px;}
._16c{width:549.733368px;}
._1c4{width:557.320675px;}
._1bc{width:560.130813px;}
._19c{width:568.315314px;}
._1a1{width:576.974073px;}
._172{width:588.723971px;}
._1d9{width:596.188304px;}
._1df{width:605.619901px;}
._240{width:611.626620px;}
._185{width:620.443473px;}
._f6{width:625.396297px;}
._1e8{width:627.925353px;}
._1cc{width:673.168619px;}
._1ed{width:716.198890px;}
._2c{width:722.556828px;}
._12d{width:752.748281px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(56,118,29);}
.fc2{color:rgb(153,0,0);}
.fc4{color:rgb(255,153,0);}
.fc1{color:rgb(180,95,6);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.934629px;}
.fs4{font-size:65.914603px;}
.fs5{font-size:71.939540px;}
.fs0{font-size:83.899489px;}
.fs6{font-size:89.924425px;}
.fs3{font-size:101.884374px;}
.fs2{font-size:107.909310px;}
.fs1{font-size:125.894195px;}
.y0{bottom:0.000000px;}
.ya6{bottom:2.005361px;}
.y60{bottom:2.005721px;}
.y1f{bottom:2.005793px;}
.y3d{bottom:2.005814px;}
.y1d{bottom:2.005883px;}
.y1{bottom:2.005901px;}
.y10e{bottom:2.006081px;}
.y26a{bottom:2.006765px;}
.y289{bottom:60.697662px;}
.y2c3{bottom:60.697897px;}
.y131{bottom:60.698433px;}
.y154{bottom:60.698568px;}
.y1bc{bottom:60.698614px;}
.y177{bottom:60.698703px;}
.y1df{bottom:60.698749px;}
.y19a{bottom:60.698839px;}
.y202{bottom:60.698885px;}
.y269{bottom:60.698931px;}
.y5f{bottom:60.698934px;}
.y82{bottom:60.698980px;}
.y1e{bottom:60.698988px;}
.ya5{bottom:60.699007px;}
.y3e{bottom:60.699011px;}
.y224{bottom:60.699020px;}
.yc8{bottom:60.699106px;}
.y247{bottom:60.699155px;}
.y2a5{bottom:60.699201px;}
.yea{bottom:60.699242px;}
.y10d{bottom:60.699377px;}
.y153{bottom:114.653223px;}
.y176{bottom:114.653358px;}
.y1de{bottom:114.653404px;}
.y199{bottom:114.653494px;}
.y201{bottom:114.653540px;}
.y1c{bottom:115.777680px;}
.y3c{bottom:121.398020px;}
.y10c{bottom:121.398364px;}
.y246{bottom:124.770308px;}
.y2c2{bottom:125.893105px;}
.ya4{bottom:130.390436px;}
.y5e{bottom:133.762512px;}
.y2a4{bottom:140.507129px;}
.y268{bottom:141.630913px;}
.y1b{bottom:143.879063px;}
.y152{bottom:145.002716px;}
.y175{bottom:145.002852px;}
.y1dd{bottom:145.002898px;}
.y198{bottom:145.002987px;}
.y200{bottom:145.003033px;}
.y223{bottom:145.003169px;}
.ye9{bottom:145.003390px;}
.y130{bottom:149.498802px;}
.y3b{bottom:149.499403px;}
.y10b{bottom:151.747858px;}
.y245{bottom:155.119802px;}
.y2c1{bottom:156.242598px;}
.y81{bottom:157.367737px;}
.yc7{bottom:159.615974px;}
.y5d{bottom:160.739839px;}
.ya3{bottom:160.739930px;}
.y288{bottom:166.358862px;}
.y1bb{bottom:166.359813px;}
.y267{bottom:171.980407px;}
.y1a{bottom:171.980446px;}
.y151{bottom:176.476265px;}
.y174{bottom:176.476400px;}
.y1dc{bottom:176.476447px;}
.y197{bottom:176.476536px;}
.y1ff{bottom:176.476582px;}
.y222{bottom:176.476717px;}
.y3a{bottom:176.476730px;}
.ye8{bottom:176.476939px;}
.y12f{bottom:180.972351px;}
.y10a{bottom:183.221406px;}
.y5c{bottom:184.345001px;}
.y244{bottom:186.593350px;}
.y2c0{bottom:187.716147px;}
.y80{bottom:188.841285px;}
.yc6{bottom:189.965467px;}
.y2a3{bottom:189.965562px;}
.ya2{bottom:192.213479px;}
.y287{bottom:197.832410px;}
.y1ba{bottom:197.833362px;}
.y39{bottom:204.578113px;}
.y19{bottom:205.702105px;}
.y150{bottom:206.825759px;}
.y173{bottom:206.825894px;}
.y1db{bottom:206.825940px;}
.y196{bottom:206.826029px;}
.y1fe{bottom:206.826075px;}
.y266{bottom:206.826121px;}
.y221{bottom:206.826211px;}
.ye7{bottom:206.826433px;}
.y12e{bottom:211.321844px;}
.y109{bottom:214.694955px;}
.y2bf{bottom:218.065641px;}
.y243{bottom:218.066899px;}
.y7f{bottom:220.314834px;}
.y2a2{bottom:220.315056px;}
.yc5{bottom:221.439016px;}
.ya1{bottom:223.687027px;}
.y286{bottom:228.181904px;}
.y1b9{bottom:228.182856px;}
.y5b{bottom:232.679379px;}
.y38{bottom:232.679496px;}
.y14f{bottom:238.299307px;}
.y172{bottom:238.299443px;}
.y1da{bottom:238.299489px;}
.y195{bottom:238.299578px;}
.y1fd{bottom:238.299624px;}
.y220{bottom:238.299760px;}
.ye6{bottom:238.299981px;}
.y18{bottom:239.423764px;}
.y12d{bottom:242.795393px;}
.y108{bottom:245.044449px;}
.y242{bottom:248.416393px;}
.y2be{bottom:249.539189px;}
.y7e{bottom:250.664328px;}
.yc4{bottom:252.912565px;}
.ya0{bottom:254.036521px;}
.y285{bottom:259.655453px;}
.y1b8{bottom:259.656404px;}
.y265{bottom:259.656721px;}
.y37{bottom:259.656823px;}
.y5a{bottom:264.152928px;}
.y14e{bottom:269.772856px;}
.y171{bottom:269.772991px;}
.y1d9{bottom:269.773038px;}
.y194{bottom:269.773127px;}
.y1fc{bottom:269.773173px;}
.y21f{bottom:269.773308px;}
.y2a1{bottom:269.773490px;}
.ye5{bottom:269.773530px;}
.y17{bottom:273.145424px;}
.y12c{bottom:274.268942px;}
.yc3{bottom:274.269616px;}
.y107{bottom:276.517997px;}
.y241{bottom:279.889941px;}
.y7d{bottom:282.137876px;}
.y9f{bottom:285.510070px;}
.y36{bottom:287.758206px;}
.y284{bottom:290.004946px;}
.y1b7{bottom:291.129953px;}
.y264{bottom:291.130270px;}
.y59{bottom:295.626477px;}
.y2bd{bottom:298.997623px;}
.y14d{bottom:300.122350px;}
.y170{bottom:300.122485px;}
.y1d8{bottom:300.122531px;}
.y193{bottom:300.122620px;}
.y1fb{bottom:300.122666px;}
.y21e{bottom:300.122802px;}
.ye4{bottom:300.123023px;}
.yc2{bottom:301.246943px;}
.y12b{bottom:304.618435px;}
.y16{bottom:306.867083px;}
.y106{bottom:306.867491px;}
.y240{bottom:310.239435px;}
.y7c{bottom:312.487370px;}
.y9e{bottom:315.859563px;}
.y35{bottom:315.859589px;}
.y2a0{bottom:319.231923px;}
.y1b6{bottom:321.479447px;}
.y263{bottom:322.603819px;}
.y58{bottom:325.975970px;}
.y2bc{bottom:329.347117px;}
.y14c{bottom:331.595898px;}
.y16f{bottom:331.596034px;}
.y1d7{bottom:331.596080px;}
.y192{bottom:331.596169px;}
.y1fa{bottom:331.596215px;}
.y21d{bottom:331.596351px;}
.yc1{bottom:331.596437px;}
.ye3{bottom:331.596572px;}
.y12a{bottom:336.091984px;}
.y105{bottom:338.341040px;}
.y283{bottom:339.463380px;}
.y15{bottom:340.588743px;}
.y23f{bottom:341.712984px;}
.y34{bottom:342.836917px;}
.y7b{bottom:343.960919px;}
.y9d{bottom:347.333112px;}
.y29f{bottom:349.581417px;}
.y1b5{bottom:352.952995px;}
.y262{bottom:352.953312px;}
.y57{bottom:357.449519px;}
.y2bb{bottom:360.820665px;}
.y14b{bottom:361.945392px;}
.y16e{bottom:361.945527px;}
.y1d6{bottom:361.945573px;}
.y191{bottom:361.945663px;}
.y1f9{bottom:361.945709px;}
.y21c{bottom:361.945844px;}
.yc0{bottom:361.945930px;}
.ye2{bottom:361.946066px;}
.y129{bottom:366.441478px;}
.y104{bottom:369.814588px;}
.y282{bottom:370.936929px;}
.y33{bottom:370.938299px;}
.y23e{bottom:373.186532px;}
.y14{bottom:374.310402px;}
.y7a{bottom:374.310412px;}
.y9c{bottom:377.682605px;}
.y29e{bottom:381.054966px;}
.y1b4{bottom:383.302489px;}
.y261{bottom:384.426861px;}
.y56{bottom:387.799012px;}
.y14a{bottom:393.418941px;}
.y16d{bottom:393.419076px;}
.y1d5{bottom:393.419122px;}
.y190{bottom:393.419211px;}
.y1f8{bottom:393.419257px;}
.y21b{bottom:393.419393px;}
.ybf{bottom:393.419479px;}
.ye1{bottom:393.419614px;}
.y128{bottom:397.915026px;}
.y32{bottom:399.039682px;}
.y103{bottom:400.164082px;}
.y281{bottom:401.286422px;}
.y23d{bottom:403.536026px;}
.y79{bottom:405.783961px;}
.y13{bottom:408.032061px;}
.y2ba{bottom:409.155044px;}
.y9b{bottom:409.156154px;}
.y1b3{bottom:414.776038px;}
.y260{bottom:414.776354px;}
.y55{bottom:419.272561px;}
.y149{bottom:424.892489px;}
.y16c{bottom:424.892625px;}
.y1d4{bottom:424.892671px;}
.y18f{bottom:424.892760px;}
.y1f7{bottom:424.892806px;}
.y21a{bottom:424.892941px;}
.ybe{bottom:424.893028px;}
.ye0{bottom:424.893163px;}
.y31{bottom:426.017010px;}
.y127{bottom:429.388575px;}
.y29d{bottom:429.389344px;}
.y102{bottom:431.637630px;}
.y280{bottom:432.759971px;}
.y23c{bottom:435.009575px;}
.y78{bottom:437.257510px;}
.y2b9{bottom:440.628593px;}
.y9a{bottom:440.629703px;}
.y12{bottom:441.753721px;}
.y1b2{bottom:446.249586px;}
.y25f{bottom:446.249903px;}
.y54{bottom:450.746110px;}
.y30{bottom:454.118393px;}
.y148{bottom:455.241983px;}
.y16b{bottom:455.242118px;}
.y1d3{bottom:455.242164px;}
.y18e{bottom:455.242254px;}
.y1f6{bottom:455.242300px;}
.y219{bottom:455.242435px;}
.ybd{bottom:455.242521px;}
.ydf{bottom:455.242657px;}
.y126{bottom:459.738069px;}
.y29c{bottom:460.862893px;}
.y101{bottom:461.987124px;}
.y27f{bottom:463.109464px;}
.y23b{bottom:465.359068px;}
.y1b1{bottom:467.606637px;}
.y77{bottom:467.607003px;}
.y99{bottom:470.979196px;}
.y11{bottom:475.475380px;}
.y25e{bottom:477.723452px;}
.y53{bottom:481.095603px;}
.y2f{bottom:482.219775px;}
.y147{bottom:486.715532px;}
.y16a{bottom:486.715667px;}
.y1d2{bottom:486.715713px;}
.y18d{bottom:486.715802px;}
.y1f5{bottom:486.715848px;}
.y218{bottom:486.715984px;}
.ybc{bottom:486.716070px;}
.yde{bottom:486.716205px;}
.y2b8{bottom:490.087026px;}
.y125{bottom:491.211617px;}
.y29b{bottom:492.336442px;}
.y100{bottom:493.460673px;}
.y27e{bottom:494.583013px;}
.y1b0{bottom:494.583965px;}
.y23a{bottom:496.832617px;}
.y76{bottom:499.080552px;}
.y98{bottom:502.452745px;}
.y25d{bottom:508.072945px;}
.y10{bottom:509.197040px;}
.y52{bottom:512.569152px;}
.y146{bottom:517.065025px;}
.y169{bottom:517.065160px;}
.y1d1{bottom:517.065206px;}
.y18c{bottom:517.065296px;}
.y1f4{bottom:517.065342px;}
.y217{bottom:517.065477px;}
.ybb{bottom:517.065564px;}
.ydd{bottom:517.065699px;}
.y1af{bottom:518.189126px;}
.y2b7{bottom:520.436520px;}
.y124{bottom:521.561111px;}
.yff{bottom:524.934221px;}
.y97{bottom:526.057907px;}
.y239{bottom:527.182110px;}
.y75{bottom:529.430045px;}
.y2e{bottom:530.554154px;}
.y25c{bottom:532.802162px;}
.y29a{bottom:540.670820px;}
.y51{bottom:542.918646px;}
.y27d{bottom:544.041447px;}
.yf{bottom:544.042754px;}
.y145{bottom:548.538574px;}
.y1ae{bottom:548.538620px;}
.y168{bottom:548.538709px;}
.y1d0{bottom:548.538755px;}
.y18b{bottom:548.538845px;}
.y1f3{bottom:548.538891px;}
.y216{bottom:548.539026px;}
.yba{bottom:548.539112px;}
.ydc{bottom:548.539248px;}
.y2b6{bottom:551.910069px;}
.y96{bottom:551.911179px;}
.y123{bottom:553.034660px;}
.yfe{bottom:555.283715px;}
.y25b{bottom:556.407324px;}
.y238{bottom:558.655659px;}
.y74{bottom:560.903594px;}
.y299{bottom:572.144369px;}
.y27c{bottom:574.390940px;}
.y50{bottom:574.392194px;}
.y2d{bottom:575.516366px;}
.y144{bottom:580.012123px;}
.y1ad{bottom:580.012169px;}
.y167{bottom:580.012258px;}
.y1cf{bottom:580.012304px;}
.y18a{bottom:580.012393px;}
.y1f2{bottom:580.012439px;}
.y25a{bottom:580.012485px;}
.ye{bottom:580.012524px;}
.y95{bottom:580.012562px;}
.y215{bottom:580.012575px;}
.yb9{bottom:580.012661px;}
.ydb{bottom:580.012796px;}
.y122{bottom:584.508208px;}
.yfd{bottom:586.757264px;}
.y237{bottom:590.129208px;}
.y73{bottom:592.377143px;}
.y2b5{bottom:600.244447px;}
.y27b{bottom:605.864489px;}
.y143{bottom:610.361616px;}
.y1ac{bottom:610.361662px;}
.y166{bottom:610.361751px;}
.y1ce{bottom:610.361797px;}
.y189{bottom:610.361887px;}
.y1f1{bottom:610.361933px;}
.y259{bottom:610.361979px;}
.y94{bottom:610.362055px;}
.y214{bottom:610.362068px;}
.yb8{bottom:610.362155px;}
.yda{bottom:610.362290px;}
.y121{bottom:614.857702px;}
.y4f{bottom:617.106296px;}
.yd{bottom:617.106350px;}
.yfc{bottom:617.106757px;}
.y236{bottom:620.478701px;}
.y298{bottom:620.478747px;}
.y2c{bottom:621.602634px;}
.y72{bottom:622.726636px;}
.y2b4{bottom:631.717996px;}
.y27a{bottom:636.213982px;}
.y142{bottom:641.835165px;}
.y1ab{bottom:641.835211px;}
.y165{bottom:641.835300px;}
.y1cd{bottom:641.835346px;}
.y188{bottom:641.835435px;}
.y1f0{bottom:641.835482px;}
.y4e{bottom:641.835513px;}
.y258{bottom:641.835528px;}
.y93{bottom:641.835604px;}
.y213{bottom:641.835617px;}
.yb7{bottom:641.835703px;}
.yd9{bottom:641.835839px;}
.y120{bottom:646.331251px;}
.yfb{bottom:648.580306px;}
.y235{bottom:651.952250px;}
.y297{bottom:651.952296px;}
.y71{bottom:654.200185px;}
.yc{bottom:659.820452px;}
.y2b3{bottom:663.191545px;}
.y279{bottom:667.687531px;}
.y11f{bottom:667.688302px;}
.y2b{bottom:667.688902px;}
.y141{bottom:672.184658px;}
.y1aa{bottom:672.184704px;}
.y164{bottom:672.184794px;}
.y1cc{bottom:672.184840px;}
.y187{bottom:672.184929px;}
.y1ef{bottom:672.184975px;}
.y257{bottom:672.185021px;}
.y92{bottom:672.185097px;}
.y212{bottom:672.185110px;}
.yb6{bottom:672.185197px;}
.yd8{bottom:672.185332px;}
.y4d{bottom:674.433117px;}
.yfa{bottom:680.053855px;}
.y234{bottom:682.301744px;}
.y70{bottom:684.549679px;}
.y2b2{bottom:693.541038px;}
.y11e{bottom:694.665629px;}
.y278{bottom:699.161080px;}
.yb{bottom:701.410498px;}
.y296{bottom:701.410730px;}
.y140{bottom:703.658207px;}
.y1a9{bottom:703.658253px;}
.y163{bottom:703.658342px;}
.y1cb{bottom:703.658388px;}
.y186{bottom:703.658478px;}
.y1ee{bottom:703.658524px;}
.y256{bottom:703.658570px;}
.y91{bottom:703.658646px;}
.y211{bottom:703.658659px;}
.yb5{bottom:703.658746px;}
.yd7{bottom:703.658881px;}
.yf9{bottom:710.403348px;}
.y2a{bottom:713.775170px;}
.y233{bottom:713.775292px;}
.y6f{bottom:716.023227px;}
.y11d{bottom:718.270791px;}
.y4c{bottom:723.891551px;}
.y277{bottom:729.510573px;}
.y13f{bottom:735.131756px;}
.y1a8{bottom:735.131802px;}
.y162{bottom:735.131891px;}
.y1ca{bottom:735.131937px;}
.y185{bottom:735.132026px;}
.y1ed{bottom:735.132073px;}
.y255{bottom:735.132119px;}
.y90{bottom:735.132195px;}
.y210{bottom:735.132208px;}
.yb4{bottom:735.132294px;}
.yd6{bottom:735.132430px;}
.yf8{bottom:741.876897px;}
.y2b1{bottom:742.999472px;}
.ya{bottom:743.000545px;}
.y232{bottom:745.248841px;}
.y6e{bottom:747.496776px;}
.y11c{bottom:748.620284px;}
.y295{bottom:749.745108px;}
.y4b{bottom:755.365100px;}
.y29{bottom:759.861438px;}
.y13e{bottom:765.481249px;}
.y1a7{bottom:765.481295px;}
.y161{bottom:765.481385px;}
.y1c9{bottom:765.481431px;}
.y184{bottom:765.481520px;}
.y1ec{bottom:765.481566px;}
.y254{bottom:765.481612px;}
.y8f{bottom:765.481688px;}
.y20f{bottom:765.481701px;}
.yb3{bottom:765.481788px;}
.yd5{bottom:765.481923px;}
.yf7{bottom:772.226390px;}
.y2b0{bottom:773.348965px;}
.y231{bottom:775.598335px;}
.y6d{bottom:777.846270px;}
.y276{bottom:778.969007px;}
.y11b{bottom:780.093833px;}
.y294{bottom:781.218657px;}
.y9{bottom:784.590591px;}
.y4a{bottom:785.714593px;}
.yf6{bottom:794.707497px;}
.y13d{bottom:796.954798px;}
.y1a6{bottom:796.954844px;}
.y160{bottom:796.954933px;}
.y1c8{bottom:796.954979px;}
.y183{bottom:796.955069px;}
.y1eb{bottom:796.955115px;}
.y253{bottom:796.955161px;}
.y8e{bottom:796.955237px;}
.y20e{bottom:796.955250px;}
.yb2{bottom:796.955337px;}
.yd4{bottom:796.955472px;}
.y28{bottom:805.947706px;}
.y230{bottom:807.071883px;}
.y275{bottom:809.318501px;}
.y6c{bottom:809.319818px;}
.y11a{bottom:810.443326px;}
.y293{bottom:811.568151px;}
.y49{bottom:817.188142px;}
.y2af{bottom:822.807399px;}
.y8{bottom:826.180638px;}
.y13c{bottom:827.304291px;}
.y1a5{bottom:827.304338px;}
.y15f{bottom:827.304427px;}
.y1c7{bottom:827.304473px;}
.y182{bottom:827.304562px;}
.y1ea{bottom:827.304608px;}
.y252{bottom:827.304654px;}
.y8d{bottom:827.304731px;}
.y20d{bottom:827.304744px;}
.yb1{bottom:827.304830px;}
.yd3{bottom:827.304965px;}
.yf5{bottom:827.305101px;}
.y22f{bottom:837.421377px;}
.y6b{bottom:839.669312px;}
.y274{bottom:840.792049px;}
.y119{bottom:841.916875px;}
.y292{bottom:843.041699px;}
.y48{bottom:847.537636px;}
.y27{bottom:852.033973px;}
.y2ae{bottom:854.280948px;}
.y13b{bottom:858.777840px;}
.y1a4{bottom:858.777886px;}
.y15e{bottom:858.777976px;}
.y1c6{bottom:858.778022px;}
.y181{bottom:858.778111px;}
.y1e9{bottom:858.778157px;}
.y251{bottom:858.778203px;}
.y8c{bottom:858.778279px;}
.y20c{bottom:858.778292px;}
.yb0{bottom:858.778379px;}
.yd2{bottom:858.778514px;}
.yf4{bottom:858.778649px;}
.y7{bottom:863.274463px;}
.y22e{bottom:868.894926px;}
.y6a{bottom:871.142861px;}
.y273{bottom:872.265598px;}
.y118{bottom:873.390424px;}
.y47{bottom:879.011184px;}
.y2ad{bottom:884.630441px;}
.y13a{bottom:890.251389px;}
.y1a3{bottom:890.251435px;}
.y15d{bottom:890.251524px;}
.y1c5{bottom:890.251570px;}
.y180{bottom:890.251660px;}
.y1e8{bottom:890.251706px;}
.y250{bottom:890.251752px;}
.y6{bottom:890.251791px;}
.y8b{bottom:890.251828px;}
.y20b{bottom:890.251841px;}
.yaf{bottom:890.251928px;}
.yd1{bottom:890.252063px;}
.yf3{bottom:890.252198px;}
.y291{bottom:892.500133px;}
.y26{bottom:898.120241px;}
.y22d{bottom:900.368474px;}
.y272{bottom:902.615092px;}
.y69{bottom:902.616409px;}
.y117{bottom:903.739917px;}
.y46{bottom:910.484733px;}
.y5{bottom:918.353174px;}
.y139{bottom:920.600882px;}
.y1a2{bottom:920.600929px;}
.y15c{bottom:920.601018px;}
.y1c4{bottom:920.601064px;}
.y17f{bottom:920.601153px;}
.y1e7{bottom:920.601199px;}
.y24f{bottom:920.601245px;}
.y8a{bottom:920.601322px;}
.y20a{bottom:920.601335px;}
.yae{bottom:920.601421px;}
.yd0{bottom:920.601556px;}
.yf2{bottom:920.601692px;}
.y290{bottom:922.849627px;}
.y22c{bottom:930.717968px;}
.y68{bottom:932.965903px;}
.y271{bottom:934.088640px;}
.y2ac{bottom:934.088875px;}
.y116{bottom:935.213466px;}
.y45{bottom:940.834227px;}
.y25{bottom:944.206509px;}
.y4{bottom:946.454556px;}
.y138{bottom:952.074431px;}
.y1a1{bottom:952.074477px;}
.y15b{bottom:952.074567px;}
.y1c3{bottom:952.074613px;}
.y17e{bottom:952.074702px;}
.y1e6{bottom:952.074748px;}
.y24e{bottom:952.074794px;}
.y89{bottom:952.074870px;}
.y209{bottom:952.074883px;}
.yad{bottom:952.074970px;}
.ycf{bottom:952.075105px;}
.yf1{bottom:952.075240px;}
.y22b{bottom:953.199074px;}
.y2ab{bottom:964.438369px;}
.y67{bottom:964.439451px;}
.y115{bottom:965.562960px;}
.y28f{bottom:965.563729px;}
.y44{bottom:972.307775px;}
.y3{bottom:973.431884px;}
.y270{bottom:982.423019px;}
.y137{bottom:982.423925px;}
.y1a0{bottom:982.423971px;}
.y15a{bottom:982.424060px;}
.y1c2{bottom:982.424106px;}
.y17d{bottom:982.424195px;}
.y1e5{bottom:982.424241px;}
.y24d{bottom:982.424288px;}
.y88{bottom:982.424364px;}
.y208{bottom:982.424377px;}
.yac{bottom:982.424463px;}
.yce{bottom:982.424599px;}
.yf0{bottom:982.424734px;}
.y22a{bottom:985.796678px;}
.y24{bottom:990.292777px;}
.y66{bottom:994.788945px;}
.y2aa{bottom:995.911917px;}
.y114{bottom:997.036508px;}
.y2{bottom:1000.409211px;}
.y43{bottom:1002.657269px;}
.y229{bottom:1011.649950px;}
.y26f{bottom:1013.896568px;}
.y136{bottom:1013.897473px;}
.y19f{bottom:1013.897520px;}
.y159{bottom:1013.897609px;}
.y1c1{bottom:1013.897655px;}
.y17c{bottom:1013.897744px;}
.y1e4{bottom:1013.897790px;}
.y24c{bottom:1013.897836px;}
.y87{bottom:1013.897913px;}
.y207{bottom:1013.897926px;}
.yab{bottom:1013.898012px;}
.y28e{bottom:1013.898107px;}
.ycd{bottom:1013.898147px;}
.yef{bottom:1013.898283px;}
.y65{bottom:1026.262494px;}
.y113{bottom:1028.510057px;}
.y42{bottom:1034.130818px;}
.y23{bottom:1036.379045px;}
.y26e{bottom:1045.370116px;}
.y2a9{bottom:1045.370351px;}
.y135{bottom:1045.371022px;}
.y19e{bottom:1045.371068px;}
.y158{bottom:1045.371158px;}
.y1c0{bottom:1045.371204px;}
.y17b{bottom:1045.371293px;}
.y1e3{bottom:1045.371339px;}
.y24b{bottom:1045.371385px;}
.y86{bottom:1045.371461px;}
.y206{bottom:1045.371474px;}
.yaa{bottom:1045.371561px;}
.y228{bottom:1045.371610px;}
.y28d{bottom:1045.371656px;}
.ycc{bottom:1045.371696px;}
.yee{bottom:1045.371831px;}
.y64{bottom:1057.736042px;}
.y112{bottom:1058.859551px;}
.y41{bottom:1065.604366px;}
.y26d{bottom:1075.719610px;}
.y2a8{bottom:1075.719845px;}
.y134{bottom:1075.720516px;}
.y19d{bottom:1075.720562px;}
.y157{bottom:1075.720651px;}
.y1bf{bottom:1075.720697px;}
.y17a{bottom:1075.720786px;}
.y1e2{bottom:1075.720832px;}
.y24a{bottom:1075.720879px;}
.y85{bottom:1075.720955px;}
.y205{bottom:1075.720968px;}
.ya9{bottom:1075.721054px;}
.y227{bottom:1075.721103px;}
.y28c{bottom:1075.721149px;}
.ycb{bottom:1075.721190px;}
.yed{bottom:1075.721325px;}
.y22{bottom:1082.465313px;}
.y63{bottom:1088.085536px;}
.y111{bottom:1090.333099px;}
.y40{bottom:1095.953860px;}
.y26c{bottom:1107.193159px;}
.y2a7{bottom:1107.193393px;}
.y133{bottom:1107.194064px;}
.y19c{bottom:1107.194111px;}
.y156{bottom:1107.194200px;}
.y1be{bottom:1107.194246px;}
.y179{bottom:1107.194335px;}
.y1e1{bottom:1107.194381px;}
.y249{bottom:1107.194427px;}
.y84{bottom:1107.194504px;}
.y204{bottom:1107.194517px;}
.ya8{bottom:1107.194603px;}
.y226{bottom:1107.194652px;}
.y28b{bottom:1107.194698px;}
.yca{bottom:1107.194738px;}
.yec{bottom:1107.194874px;}
.y21{bottom:1108.318585px;}
.y62{bottom:1109.442587px;}
.y110{bottom:1111.690150px;}
.y20{bottom:1135.295912px;}
.y26b{bottom:1137.542652px;}
.y2a6{bottom:1137.542887px;}
.y132{bottom:1137.543558px;}
.y19b{bottom:1137.543604px;}
.y155{bottom:1137.543693px;}
.y1bd{bottom:1137.543739px;}
.y178{bottom:1137.543829px;}
.y1e0{bottom:1137.543875px;}
.y248{bottom:1137.543921px;}
.y83{bottom:1137.543997px;}
.y203{bottom:1137.544010px;}
.ya7{bottom:1137.544096px;}
.y225{bottom:1137.544145px;}
.y28a{bottom:1137.544191px;}
.yc9{bottom:1137.544232px;}
.yeb{bottom:1137.544367px;}
.y10f{bottom:1138.667478px;}
.y3f{bottom:1138.667962px;}
.y61{bottom:1138.668025px;}
.h9{height:43.932340px;}
.h10{height:47.376121px;}
.hd{height:48.755899px;}
.h15{height:49.950208px;}
.hb{height:49.985335px;}
.h3{height:56.861567px;}
.h7{height:58.295397px;}
.hf{height:59.934981px;}
.h11{height:60.944874px;}
.h6{height:70.791730px;}
.h5{height:74.978002px;}
.h4{height:85.322824px;}
.h8{height:107.909294px;}
.hc{height:107.909470px;}
.h14{height:1262.313235px;}
.h13{height:1262.313919px;}
.h2{height:1262.314099px;}
.ha{height:1262.314207px;}
.he{height:1262.314279px;}
.h12{height:1262.314639px;}
.h0{height:1264.320000px;}
.h1{height:1264.500000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xf{left:107.909310px;}
.x5{left:115.777697px;}
.x2{left:119.237680px;}
.x11{left:121.397974px;}
.x12{left:134.886638px;}
.x3{left:148.375301px;}
.x6{left:159.615854px;}
.x10{left:161.863965px;}
.x13{left:170.013366px;}
.x18{left:171.576506px;}
.x15{left:173.192335px;}
.x7{left:248.416224px;}
.x9{left:270.897330px;}
.xb{left:311.363322px;}
.x4{left:354.077424px;}
.xc{left:390.047194px;}
.xd{left:431.637240px;}
.xa{left:457.350006px;}
.x8{left:462.127241px;}
.x16{left:765.481668px;}
.x17{left:766.605724px;}
.x14{left:774.474111px;}
.xe{left:792.318489px;}
.x1{left:794.794929px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:65.694788pt;}
.ls2{letter-spacing:98.105030pt;}
.ls1{letter-spacing:150.498517pt;}
.ls3{letter-spacing:375.059789pt;}
.ws0{word-spacing:0.000000pt;}
._1c8{margin-left:-2385.838744pt;}
._ac{margin-left:-2369.815923pt;}
._89{margin-left:-2367.119224pt;}
._136{margin-left:-2361.796331pt;}
._196{margin-left:-2360.703501pt;}
._c3{margin-left:-2358.736400pt;}
._12b{margin-left:-2356.300946pt;}
._110{margin-left:-2355.051997pt;}
._169{margin-left:-2353.646933pt;}
._e8{margin-left:-2344.092463pt;}
._222{margin-left:-2340.595403pt;}
._22f{margin-left:-2339.627462pt;}
._a5{margin-left:-2336.793927pt;}
._216{margin-left:-2331.165825pt;}
._15f{margin-left:-2329.136281pt;}
._20b{margin-left:-2328.168484pt;}
._103{margin-left:-2324.452714pt;}
._193{margin-left:-2322.953975pt;}
._cb{margin-left:-2319.472562pt;}
._e3{margin-left:-2317.567991pt;}
._18c{margin-left:-2314.112747pt;}
._128{margin-left:-2312.259875pt;}
._152{margin-left:-2309.777554pt;}
._1f0{margin-left:-2307.685559pt;}
._1f1{margin-left:-2302.596086pt;}
._d1{margin-left:-2296.382658pt;}
._1a3{margin-left:-2292.979167pt;}
._140{margin-left:-2290.481268pt;}
._18e{margin-left:-2288.404982pt;}
._120{margin-left:-2286.453414pt;}
._219{margin-left:-2284.704870pt;}
._100{margin-left:-2283.799462pt;}
._50{margin-left:-2282.300642pt;}
._213{margin-left:-2281.176586pt;}
._6f{margin-left:-2279.459283pt;}
._b5{margin-left:-2277.804439pt;}
._22d{margin-left:-2276.524247pt;}
._39{margin-left:-2275.493866pt;}
._1c0{margin-left:-2272.652579pt;}
._174{margin-left:-2268.343618pt;}
._22b{margin-left:-2266.298600pt;}
._c0{margin-left:-2264.877788pt;}
._233{margin-left:-2263.769396pt;}
._76{margin-left:-2262.254987pt;}
._139{margin-left:-2260.100551pt;}
._211{margin-left:-2259.070165pt;}
._1b1{margin-left:-2258.133513pt;}
._b0{margin-left:-2257.134292pt;}
._22e{margin-left:-2255.260868pt;}
._c6{margin-left:-2253.324997pt;}
._108{margin-left:-2251.732584pt;}
._17f{margin-left:-2250.296293pt;}
._f7{margin-left:-2248.891215pt;}
._178{margin-left:-2247.892062pt;}
._27{margin-left:-2245.362975pt;}
._17a{margin-left:-2244.395000pt;}
._1b4{margin-left:-2241.829741pt;}
._21b{margin-left:-2238.712277pt;}
._5a{margin-left:-2237.588221pt;}
._9f{margin-left:-2235.589898pt;}
._16f{margin-left:-2232.592420pt;}
._69{margin-left:-2229.532490pt;}
._14f{margin-left:-2228.408513pt;}
._de{margin-left:-2227.440500pt;}
._1ec{margin-left:-2225.910536pt;}
._1e4{margin-left:-2224.005885pt;}
._f1{margin-left:-2221.851467pt;}
._226{margin-left:-2220.914732pt;}
._1a8{margin-left:-2219.540966pt;}
._239{margin-left:-2218.416863pt;}
._5e{margin-left:-2217.230326pt;}
._230{margin-left:-2216.324843pt;}
._201{margin-left:-2214.701305pt;}
._82{margin-left:-2213.670820pt;}
._167{margin-left:-2212.546765pt;}
._184{margin-left:-2210.002163pt;}
._1c3{margin-left:-2209.107222pt;}
._1ce{margin-left:-2207.301169pt;}
._206{margin-left:-2205.708760pt;}
._30{margin-left:-2204.647155pt;}
._1b7{margin-left:-2202.648835pt;}
._1bb{margin-left:-2200.931530pt;}
._a8{margin-left:-2199.276665pt;}
._11b{margin-left:-2197.309570pt;}
._1ae{margin-left:-2195.524908pt;}
._109{margin-left:-2194.031078pt;}
._10f{margin-left:-2191.814191pt;}
._176{margin-left:-2190.409122pt;}
._1a5{margin-left:-2189.285160pt;}
._1bf{margin-left:-2188.004891pt;}
._1bd{margin-left:-2186.506154pt;}
._142{margin-left:-2184.570276pt;}
._13c{margin-left:-2183.477454pt;}
._126{margin-left:-2181.510351pt;}
._11d{margin-left:-2180.417518pt;}
._1c2{margin-left:-2179.449582pt;}
._22c{margin-left:-2178.169408pt;}
._1f8{margin-left:-2176.920460pt;}
._149{margin-left:-2175.796402pt;}
._1a2{margin-left:-2174.641127pt;}
._165{margin-left:-2172.892590pt;}
._17c{margin-left:-2171.487563pt;}
._ec{margin-left:-2169.926334pt;}
._223{margin-left:-2165.711201pt;}
._14a{margin-left:-2162.557530pt;}
._15b{margin-left:-2160.777772pt;}
._1b3{margin-left:-2159.684938pt;}
._231{margin-left:-2158.592178pt;}
._197{margin-left:-2157.592952pt;}
._e7{margin-left:-2156.156660pt;}
._161{margin-left:-2154.689143pt;}
._15c{margin-left:-2153.752425pt;}
._228{margin-left:-2152.722021pt;}
._ee{margin-left:-2150.848622pt;}
._227{margin-left:-2149.381102pt;}
._14c{margin-left:-2147.632575pt;}
._1f3{margin-left:-2146.040208pt;}
._1b{margin-left:-2144.728763pt;}
._bc{margin-left:-2143.698375pt;}
._194{margin-left:-2140.950665pt;}
._133{margin-left:-2139.498860pt;}
._9b{margin-left:-2138.078095pt;}
._1ac{margin-left:-2136.891576pt;}
._1e3{margin-left:-2134.893335pt;}
._135{margin-left:-2133.925344pt;}
._d8{margin-left:-2130.865570pt;}
._7a{margin-left:-2129.460339pt;}
._19e{margin-left:-2127.743065pt;}
._244{margin-left:-2125.775945pt;}
._214{margin-left:-2123.434237pt;}
._237{margin-left:-2122.434982pt;}
._19f{margin-left:-2119.843426pt;}
._208{margin-left:-2118.305691pt;}
._1de{margin-left:-2115.409751pt;}
._1b6{margin-left:-2113.598755pt;}
._48{margin-left:-2112.099935pt;}
._10b{margin-left:-2110.039228pt;}
._191{margin-left:-2108.040821pt;}
._186{margin-left:-2105.168243pt;}
._1b8{margin-left:-2101.827299pt;}
._20d{margin-left:-2100.640796pt;}
._1be{margin-left:-2099.719726pt;}
._200{margin-left:-2096.019699pt;}
._190{margin-left:-2094.435164pt;}
._1e7{margin-left:-2093.490571pt;}
._f9{margin-left:-2092.147953pt;}
._232{margin-left:-2085.559721pt;}
._1e6{margin-left:-2084.154673pt;}
._114{margin-left:-2081.839206pt;}
._11c{margin-left:-2080.501470pt;}
._177{margin-left:-2078.690494pt;}
._102{margin-left:-2076.785843pt;}
._95{margin-left:-2071.946158pt;}
._124{margin-left:-2069.510728pt;}
._249{margin-left:-2068.324207pt;}
._245{margin-left:-2063.417187pt;}
._138{margin-left:-2062.048244pt;}
._1f5{margin-left:-2060.955399pt;}
._21e{margin-left:-2060.049907pt;}
._f4{margin-left:-2056.693500pt;}
._220{margin-left:-2054.335999pt;}
._23c{margin-left:-2051.182404pt;}
._130{margin-left:-2049.956884pt;}
._14d{margin-left:-2047.841435pt;}
._21d{margin-left:-2046.311474pt;}
._229{margin-left:-2042.751967pt;}
._12a{margin-left:-2041.784009pt;}
._1da{margin-left:-2040.222819pt;}
._21c{margin-left:-2038.349492pt;}
._182{margin-left:-2036.132507pt;}
._24b{margin-left:-2031.721977pt;}
._15a{margin-left:-2030.324893pt;}
._1e9{margin-left:-2027.670931pt;}
._205{margin-left:-2026.453260pt;}
._1f2{margin-left:-2024.751522pt;}
._1f7{margin-left:-2022.612800pt;}
._146{margin-left:-2020.497326pt;}
._13a{margin-left:-2015.759133pt;}
._1d3{margin-left:-2012.933295pt;}
._23e{margin-left:-2011.934115pt;}
._12c{margin-left:-2010.810100pt;}
._1ff{margin-left:-2008.151113pt;}
._151{margin-left:-2005.876689pt;}
._1cf{margin-left:-2003.316336pt;}
._210{margin-left:-2002.254727pt;}
._203{margin-left:-2001.099454pt;}
._209{margin-left:-1995.916327pt;}
._116{margin-left:-1988.953431pt;}
._1c6{margin-left:-1985.846705pt;}
._198{margin-left:-1978.415487pt;}
._13f{margin-left:-1973.747441pt;}
._1ba{margin-left:-1970.687650pt;}
._188{margin-left:-1967.096801pt;}
._1fa{margin-left:-1962.257116pt;}
._23f{margin-left:-1959.579511pt;}
._1f6{margin-left:-1957.745300pt;}
._24f{margin-left:-1956.636882pt;}
._248{margin-left:-1953.381686pt;}
._1c9{margin-left:-1951.422454pt;}
._1e1{margin-left:-1949.174343pt;}
._e0{margin-left:-1942.617371pt;}
._1a0{margin-left:-1937.871382pt;}
._17e{margin-left:-1933.437648pt;}
._212{margin-left:-1932.344855pt;}
._cd{margin-left:-1928.566680pt;}
._23d{margin-left:-1922.852712pt;}
._16a{margin-left:-1919.230750pt;}
._1ab{margin-left:-1916.795306pt;}
._217{margin-left:-1889.380844pt;}
._24a{margin-left:-1860.959193pt;}
._24d{margin-left:-1789.683382pt;}
._242{margin-left:-1649.940970pt;}
._5{margin-left:-116.402172pt;}
._7{margin-left:-88.425685pt;}
._a{margin-left:-67.443319pt;}
._115{margin-left:-66.354735pt;}
._d{margin-left:-63.731438pt;}
._101{margin-left:-60.979981pt;}
._0{margin-left:-58.922999pt;}
._3{margin-left:-55.968570pt;}
._10{margin-left:-52.490885pt;}
._19{margin-left:-50.368173pt;}
._247{margin-left:-49.458434pt;}
._14{margin-left:-47.751938pt;}
._17{margin-left:-44.962213pt;}
._23b{margin-left:-37.673319pt;}
._2{margin-left:-27.976488pt;}
._8{margin-left:-23.979845pt;}
._b{margin-left:-22.641312pt;}
._e{margin-left:-18.644545pt;}
._15{margin-left:-15.986565pt;}
._1{margin-left:-8.305519pt;}
._11{margin-left:-6.846048pt;}
._145{margin-left:-5.870065pt;}
._6{margin-left:-3.934194pt;}
._18f{margin-left:-2.622772pt;}
._12{margin-left:-1.347529pt;}
._16e{width:3.091153pt;}
._1a{width:3.996641pt;}
._2f{width:7.962059pt;}
._4f{width:11.989923pt;}
._16{width:12.989084pt;}
._f{width:15.164299pt;}
._246{width:17.454081pt;}
._c{width:18.395045pt;}
._9{width:19.436803pt;}
._b4{width:20.467180pt;}
._13{width:21.536852pt;}
._26{width:23.886195pt;}
._20f{width:24.791663pt;}
._25{width:27.976487pt;}
._12f{width:31.192534pt;}
._4{width:32.418086pt;}
._132{width:35.126749pt;}
._81{width:36.344455pt;}
._5d{width:39.841518pt;}
._162{width:40.778129pt;}
._11f{width:43.931828pt;}
._170{width:45.274670pt;}
._a2{width:46.648276pt;}
._93{width:48.334378pt;}
._98{width:50.082909pt;}
._1d8{width:51.206984pt;}
._9a{width:52.580810pt;}
._23a{width:54.368298pt;}
._1d7{width:55.390948pt;}
._aa{width:56.452556pt;}
._80{width:57.763974pt;}
._24e{width:58.825539pt;}
._17b{width:60.324262pt;}
._7f{width:61.260995pt;}
._24c{width:62.775830pt;}
._86{width:64.383370pt;}
._7d{width:65.757256pt;}
._243{width:67.201549pt;}
._144{width:68.130241pt;}
._6a{width:69.254257pt;}
._218{width:70.378308pt;}
._9d{width:71.502427pt;}
._da{width:72.532788pt;}
._fb{width:74.125183pt;}
._4e{width:75.561496pt;}
._d0{width:77.434862pt;}
._20{width:78.496509pt;}
._8f{width:80.307507pt;}
._1e2{width:81.556538pt;}
._3f{width:82.493190pt;}
._33{width:84.304148pt;}
._53{width:86.489792pt;}
._238{width:87.551359pt;}
._78{width:88.613007pt;}
._7c{width:90.111748pt;}
._181{width:91.251480pt;}
._a0{width:92.297451pt;}
._ae{width:93.671316pt;}
._1cb{width:94.811112pt;}
._18{width:95.919387pt;}
._85{width:96.856119pt;}
._d2{width:98.105050pt;}
._17d{width:99.260364pt;}
._59{width:100.290713pt;}
._18d{width:101.461603pt;}
._2a{width:102.476356pt;}
._38{width:103.413089pt;}
._db{width:104.724507pt;}
._1ee{width:105.707787pt;}
._75{width:106.910110pt;}
._68{width:108.283955pt;}
._20c{width:109.220648pt;}
._c1{width:110.469638pt;}
._63{width:111.406371pt;}
._b6{width:112.343084pt;}
._11e{width:113.342244pt;}
._36{width:114.278957pt;}
._192{width:115.278117pt;}
._150{width:116.214910pt;}
._87{width:117.151543pt;}
._61{width:118.462960pt;}
._8e{width:119.462121pt;}
._49{width:121.210651pt;}
._104{width:122.834267pt;}
._160{width:124.457982pt;}
._6e{width:125.394595pt;}
._8c{width:126.456243pt;}
._fc{width:127.392935pt;}
._c4{width:128.392096pt;}
._1dc{width:129.328577pt;}
._92{width:130.515371pt;}
._8a{width:131.452044pt;}
._66{width:132.763422pt;}
._236{width:133.934319pt;}
._97{width:134.886638pt;}
._56{width:136.322910pt;}
._14b{width:137.634308pt;}
._148{width:138.571061pt;}
._5f{width:139.819991pt;}
._cf{width:141.568542pt;}
._46{width:142.879960pt;}
._b9{width:143.816613pt;}
._ba{width:144.753305pt;}
._a9{width:146.501856pt;}
._2d{width:148.250406pt;}
._67{width:149.561784pt;}
._94{width:151.372782pt;}
._168{width:152.278289pt;}
._4d{width:153.183780pt;}
._dc{width:154.120473pt;}
._91{width:155.307016pt;}
._4b{width:157.117954pt;}
._166{width:158.039096pt;}
._8b{width:158.928912pt;}
._3b{width:160.677442pt;}
._eb{width:162.363585pt;}
._154{width:163.737391pt;}
._113{width:165.095788pt;}
._a3{width:166.110356pt;}
._74{width:167.359387pt;}
._1c5{width:168.296079pt;}
._d3{width:169.263995pt;}
._37{width:170.918835pt;}
._bd{width:172.230253pt;}
._158{width:173.476303pt;}
._1e{width:174.415896pt;}
._117{width:175.352629pt;}
._111{width:177.101159pt;}
._3c{width:178.350110pt;}
._143{width:179.848890pt;}
._ef{width:181.035393pt;}
._32{width:182.034493pt;}
._175{width:183.096121pt;}
._2b{width:184.220176pt;}
._ca{width:185.406699pt;}
._fd{width:186.468287pt;}
._173{width:187.436162pt;}
._22{width:188.591503pt;}
._16d{width:189.528235pt;}
._ce{width:190.464928pt;}
._40{width:192.213459pt;}
._3e{width:193.212579pt;}
._11a{width:194.523997pt;}
._1d{width:195.710520pt;}
._6c{width:197.084405pt;}
._e9{width:198.895343pt;}
._a6{width:199.832056pt;}
._cc{width:201.393264pt;}
._24{width:202.392424pt;}
._15d{width:203.329057pt;}
._7b{width:204.265809pt;}
._1ad{width:205.311801pt;}
._1c{width:206.389065pt;}
._d5{width:208.137575pt;}
._10a{width:209.448873pt;}
._60{width:210.822819pt;}
._62{width:212.571349pt;}
._ad{width:214.257472pt;}
._f8{width:215.319040pt;}
._23{width:216.630418pt;}
._64{width:218.004263pt;}
._b7{width:219.253234pt;}
._4a{width:220.502204pt;}
._52{width:221.501364pt;}
._19b{width:222.469280pt;}
._96{width:223.374710pt;}
._3a{width:224.623740pt;}
._9e{width:225.872650pt;}
._18a{width:226.793743pt;}
._57{width:228.120801pt;}
._b8{width:229.432219pt;}
._1ea{width:230.525067pt;}
._79{width:231.617822pt;}
._ea{width:233.163444pt;}
._21{width:234.677770pt;}
._125{width:236.176411pt;}
._47{width:237.550356pt;}
._31{width:238.674431pt;}
._d4{width:240.173152pt;}
._1d0{width:241.070920pt;}
._5c{width:242.358835pt;}
._45{width:244.169793pt;}
._fa{width:245.481211pt;}
._be{width:246.917564pt;}
._164{width:247.994662pt;}
._1f{width:248.978272pt;}
._90{width:250.726762pt;}
._72{width:252.475293pt;}
._d7{width:253.786711pt;}
._2e{width:254.785871pt;}
._3d{width:256.596869pt;}
._ff{width:257.564729pt;}
._f5{width:258.673203pt;}
._83{width:260.156377pt;}
._44{width:261.842420pt;}
._43{width:263.590991pt;}
._dd{width:264.746231pt;}
._131{width:266.525944pt;}
._51{width:267.587612pt;}
._a7{width:268.586852pt;}
._42{width:270.116738pt;}
._13e{width:271.521886pt;}
._c7{width:272.458578pt;}
._b3{width:273.520126pt;}
._55{width:274.769077pt;}
._c9{width:276.080494pt;}
._e1{width:277.953920pt;}
._bb{width:279.140383pt;}
._99{width:280.576716pt;}
._bf{width:281.825666pt;}
._171{width:283.261960pt;}
._58{width:285.010469pt;}
._159{width:286.977402pt;}
._71{width:287.945523pt;}
._14e{width:289.319288pt;}
._189{width:290.240401pt;}
._f3{width:291.192794pt;}
._10d{width:292.379118pt;}
._d9{width:293.378457pt;}
._157{width:294.377620pt;}
._107{width:295.938805pt;}
._b1{width:297.375058pt;}
._5b{width:299.123608pt;}
._fe{width:300.903362pt;}
._f0{width:302.620669pt;}
._a4{width:303.619830pt;}
._1a4{width:305.446427pt;}
._7e{width:306.367520pt;}
._19d{width:308.100403pt;}
._4c{width:309.552324pt;}
._122{width:310.613912pt;}
._10e{width:311.925429pt;}
._70{width:312.924510pt;}
._118{width:313.923650pt;}
._73{width:315.984438pt;}
._15e{width:317.670541pt;}
._ab{width:318.607194pt;}
._147{width:319.793737pt;}
._f2{width:320.980279pt;}
._137{width:322.666362pt;}
._13b{width:324.102555pt;}
._e2{width:325.289098pt;}
._65{width:327.599676pt;}
._195{width:328.614305pt;}
._df{width:329.972582pt;}
._105{width:331.533890pt;}
._34{width:332.845268pt;}
._a1{width:333.844428pt;}
._121{width:335.093398pt;}
._1fc{width:336.514052pt;}
._1aa{width:337.778605pt;}
._77{width:339.027572pt;}
._b2{width:340.463805pt;}
._134{width:341.650408pt;}
._225{width:342.868113pt;}
._1b5{width:343.804504pt;}
._af{width:345.147449pt;}
._10c{width:346.474413pt;}
._54{width:347.395559pt;}
._1e5{width:348.707017pt;}
._1f4{width:349.924836pt;}
._d6{width:351.017515pt;}
._215{width:352.141633pt;}
._16b{width:353.390361pt;}
._187{width:355.513697pt;}
._235{width:356.793953pt;}
._c2{width:357.980432pt;}
._9c{width:359.447950pt;}
._141{width:361.196620pt;}
._35{width:363.007439pt;}
._1dd{width:364.006559pt;}
._29{width:365.193082pt;}
._241{width:366.317137pt;}
._155{width:367.253792pt;}
._204{width:368.159321pt;}
._112{width:369.330224pt;}
._88{width:371.000721pt;}
._1b9{width:372.593054pt;}
._1b2{width:373.529864pt;}
._1c1{width:375.059789pt;}
._1d4{width:376.022856pt;}
._183{width:376.933195pt;}
._1f9{width:377.979096pt;}
._129{width:378.931596pt;}
._41{width:380.367808pt;}
._156{width:381.554291pt;}
._6d{width:384.364450pt;}
._c5{width:385.675867pt;}
._106{width:388.361071pt;}
._1d6{width:389.984825pt;}
._84{width:391.608402pt;}
._20a{width:392.513671pt;}
._123{width:394.980528pt;}
._1eb{width:396.448063pt;}
._153{width:398.446459pt;}
._1af{width:402.286907pt;}
._8d{width:403.223600pt;}
._28{width:404.347695pt;}
._6b{width:405.284368pt;}
._c8{width:407.470031pt;}
._1ca{width:408.406764pt;}
._1e0{width:409.343428pt;}
._1db{width:410.592572pt;}
._1ef{width:411.778932pt;}
._199{width:414.526620pt;}
._180{width:416.712210pt;}
._234{width:417.945454pt;}
._1d2{width:419.116513pt;}
._19a{width:422.145218pt;}
._ed{width:423.893768pt;}
._119{width:426.063733pt;}
._21f{width:427.031810pt;}
._21a{width:428.905236pt;}
._1a9{width:430.455657pt;}
._e4{width:431.543587pt;}
._12e{width:433.947798pt;}
._1cd{width:434.837492pt;}
._221{width:436.356965pt;}
._179{width:439.443240pt;}
._e6{width:440.879513pt;}
._e5{width:442.065956pt;}
._20e{width:444.563896pt;}
._18b{width:446.187509pt;}
._22a{width:447.811167pt;}
._1fd{width:451.011533pt;}
._224{width:452.244900pt;}
._1d5{width:454.384239pt;}
._1c7{width:455.367316pt;}
._1a6{width:456.556680pt;}
._207{width:457.756100pt;}
._1d1{width:459.488833pt;}
._163{width:460.737783pt;}
._127{width:461.674556pt;}
._1fb{width:464.265844pt;}
._1a7{width:468.731066pt;}
._13d{width:474.039085pt;}
._1fe{width:477.957558pt;}
._1b0{width:484.280547pt;}
._202{width:487.613520pt;}
._16c{width:488.651882pt;}
._1c4{width:495.396156pt;}
._1bc{width:497.894056pt;}
._19c{width:505.169168pt;}
._1a1{width:512.865843pt;}
._172{width:523.310197pt;}
._1d9{width:529.945159pt;}
._1df{width:538.328801pt;}
._240{width:543.668106pt;}
._185{width:551.505310pt;}
._f6{width:555.907820pt;}
._1e8{width:558.155869pt;}
._1cc{width:598.372106pt;}
._1ed{width:636.621236pt;}
._2c{width:642.272736pt;}
._12d{width:669.109583pt;}
.fs7{font-size:53.275226pt;}
.fs4{font-size:58.590758pt;}
.fs5{font-size:63.946258pt;}
.fs0{font-size:74.577323pt;}
.fs6{font-size:79.932822pt;}
.fs3{font-size:90.563888pt;}
.fs2{font-size:95.919387pt;}
.fs1{font-size:111.905951pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:1.782543pt;}
.y60{bottom:1.782863pt;}
.y1f{bottom:1.782927pt;}
.y3d{bottom:1.782946pt;}
.y1d{bottom:1.783007pt;}
.y1{bottom:1.783023pt;}
.y10e{bottom:1.783183pt;}
.y26a{bottom:1.783791pt;}
.y289{bottom:53.953477pt;}
.y2c3{bottom:53.953686pt;}
.y131{bottom:53.954162pt;}
.y154{bottom:53.954283pt;}
.y1bc{bottom:53.954324pt;}
.y177{bottom:53.954403pt;}
.y1df{bottom:53.954444pt;}
.y19a{bottom:53.954523pt;}
.y202{bottom:53.954564pt;}
.y269{bottom:53.954605pt;}
.y5f{bottom:53.954608pt;}
.y82{bottom:53.954649pt;}
.y1e{bottom:53.954656pt;}
.ya5{bottom:53.954673pt;}
.y3e{bottom:53.954677pt;}
.y224{bottom:53.954684pt;}
.yc8{bottom:53.954761pt;}
.y247{bottom:53.954805pt;}
.y2a5{bottom:53.954846pt;}
.yea{bottom:53.954882pt;}
.y10d{bottom:53.955002pt;}
.y153{bottom:101.913976pt;}
.y176{bottom:101.914096pt;}
.y1de{bottom:101.914137pt;}
.y199{bottom:101.914217pt;}
.y201{bottom:101.914258pt;}
.y1c{bottom:102.913493pt;}
.y3c{bottom:107.909351pt;}
.y10c{bottom:107.909657pt;}
.y246{bottom:110.906941pt;}
.y2c2{bottom:111.904982pt;}
.ya4{bottom:115.902610pt;}
.y5e{bottom:118.900010pt;}
.y2a4{bottom:124.895226pt;}
.y268{bottom:125.894145pt;}
.y1b{bottom:127.892500pt;}
.y152{bottom:128.891303pt;}
.y175{bottom:128.891424pt;}
.y1dd{bottom:128.891465pt;}
.y198{bottom:128.891544pt;}
.y200{bottom:128.891585pt;}
.y223{bottom:128.891705pt;}
.ye9{bottom:128.891902pt;}
.y130{bottom:132.887824pt;}
.y3b{bottom:132.888358pt;}
.y10b{bottom:134.886984pt;}
.y245{bottom:137.884268pt;}
.y2c1{bottom:138.882310pt;}
.y81{bottom:139.882433pt;}
.yc7{bottom:141.880866pt;}
.y5d{bottom:142.879857pt;}
.ya3{bottom:142.879938pt;}
.y288{bottom:147.874544pt;}
.y1bb{bottom:147.875390pt;}
.y267{bottom:152.871473pt;}
.y1a{bottom:152.871507pt;}
.y151{bottom:156.867791pt;}
.y174{bottom:156.867912pt;}
.y1dc{bottom:156.867953pt;}
.y197{bottom:156.868032pt;}
.y1ff{bottom:156.868073pt;}
.y222{bottom:156.868193pt;}
.y3a{bottom:156.868205pt;}
.ye8{bottom:156.868390pt;}
.y12f{bottom:160.864312pt;}
.y10a{bottom:162.863472pt;}
.y5c{bottom:163.862223pt;}
.y244{bottom:165.860756pt;}
.y2c0{bottom:166.858798pt;}
.y80{bottom:167.858920pt;}
.yc6{bottom:168.858193pt;}
.y2a3{bottom:168.858278pt;}
.ya2{bottom:170.856426pt;}
.y287{bottom:175.851031pt;}
.y1ba{bottom:175.851877pt;}
.y39{bottom:181.847212pt;}
.y19{bottom:182.846316pt;}
.y150{bottom:183.845119pt;}
.y173{bottom:183.845239pt;}
.y1db{bottom:183.845280pt;}
.y196{bottom:183.845359pt;}
.y1fe{bottom:183.845400pt;}
.y266{bottom:183.845441pt;}
.y221{bottom:183.845521pt;}
.ye7{bottom:183.845718pt;}
.y12e{bottom:187.841640pt;}
.y109{bottom:190.839960pt;}
.y2bf{bottom:193.836125pt;}
.y243{bottom:193.837244pt;}
.y7f{bottom:195.835408pt;}
.y2a2{bottom:195.835605pt;}
.yc5{bottom:196.834681pt;}
.ya1{bottom:198.832913pt;}
.y286{bottom:202.828359pt;}
.y1b9{bottom:202.829205pt;}
.y5b{bottom:206.826115pt;}
.y38{bottom:206.826219pt;}
.y14f{bottom:211.821607pt;}
.y172{bottom:211.821727pt;}
.y1da{bottom:211.821768pt;}
.y195{bottom:211.821847pt;}
.y1fd{bottom:211.821888pt;}
.y220{bottom:211.822008pt;}
.ye6{bottom:211.822206pt;}
.y18{bottom:212.821124pt;}
.y12d{bottom:215.818127pt;}
.y108{bottom:217.817288pt;}
.y242{bottom:220.814571pt;}
.y2be{bottom:221.812613pt;}
.y7e{bottom:222.812736pt;}
.yc4{bottom:224.811169pt;}
.ya0{bottom:225.810241pt;}
.y285{bottom:230.804847pt;}
.y1b8{bottom:230.805693pt;}
.y265{bottom:230.805974pt;}
.y37{bottom:230.806065pt;}
.y5a{bottom:234.802603pt;}
.y14e{bottom:239.798094pt;}
.y171{bottom:239.798215pt;}
.y1d9{bottom:239.798256pt;}
.y194{bottom:239.798335pt;}
.y1fc{bottom:239.798376pt;}
.y21f{bottom:239.798496pt;}
.y2a1{bottom:239.798658pt;}
.ye5{bottom:239.798693pt;}
.y17{bottom:242.795932pt;}
.y12c{bottom:243.794615pt;}
.yc3{bottom:243.795214pt;}
.y107{bottom:245.793775pt;}
.y241{bottom:248.791059pt;}
.y7d{bottom:250.789223pt;}
.y9f{bottom:253.786729pt;}
.y36{bottom:255.785072pt;}
.y284{bottom:257.782174pt;}
.y1b7{bottom:258.782181pt;}
.y264{bottom:258.782462pt;}
.y59{bottom:262.779090pt;}
.y2bd{bottom:265.775665pt;}
.y14d{bottom:266.775422pt;}
.y170{bottom:266.775542pt;}
.y1d8{bottom:266.775583pt;}
.y193{bottom:266.775662pt;}
.y1fb{bottom:266.775703pt;}
.y21e{bottom:266.775824pt;}
.ye4{bottom:266.776021pt;}
.yc2{bottom:267.775061pt;}
.y12b{bottom:270.771943pt;}
.y16{bottom:272.770741pt;}
.y106{bottom:272.771103pt;}
.y240{bottom:275.768387pt;}
.y7c{bottom:277.766551pt;}
.y9e{bottom:280.764056pt;}
.y35{bottom:280.764079pt;}
.y2a0{bottom:283.761710pt;}
.y1b6{bottom:285.759508pt;}
.y263{bottom:286.758950pt;}
.y58{bottom:289.756418pt;}
.y2bc{bottom:292.752993pt;}
.y14c{bottom:294.751910pt;}
.y16f{bottom:294.752030pt;}
.y1d7{bottom:294.752071pt;}
.y192{bottom:294.752150pt;}
.y1fa{bottom:294.752191pt;}
.y21d{bottom:294.752312pt;}
.yc1{bottom:294.752388pt;}
.ye3{bottom:294.752509pt;}
.y12a{bottom:298.748430pt;}
.y105{bottom:300.747591pt;}
.y283{bottom:301.745226pt;}
.y15{bottom:302.745549pt;}
.y23f{bottom:303.744874pt;}
.y34{bottom:304.743926pt;}
.y7b{bottom:305.743039pt;}
.y9d{bottom:308.740544pt;}
.y29f{bottom:310.739037pt;}
.y1b5{bottom:313.735996pt;}
.y262{bottom:313.736277pt;}
.y57{bottom:317.732906pt;}
.y2bb{bottom:320.729480pt;}
.y14b{bottom:321.729237pt;}
.y16e{bottom:321.729357pt;}
.y1d6{bottom:321.729398pt;}
.y191{bottom:321.729478pt;}
.y1f9{bottom:321.729519pt;}
.y21c{bottom:321.729639pt;}
.yc0{bottom:321.729716pt;}
.ye2{bottom:321.729836pt;}
.y129{bottom:325.725758pt;}
.y104{bottom:328.724078pt;}
.y282{bottom:329.721714pt;}
.y33{bottom:329.722933pt;}
.y23e{bottom:331.721362pt;}
.y14{bottom:332.720357pt;}
.y7a{bottom:332.720366pt;}
.y9c{bottom:335.717871pt;}
.y29e{bottom:338.715525pt;}
.y1b4{bottom:340.713323pt;}
.y261{bottom:341.712765pt;}
.y56{bottom:344.710233pt;}
.y14a{bottom:349.705725pt;}
.y16d{bottom:349.705845pt;}
.y1d5{bottom:349.705886pt;}
.y190{bottom:349.705966pt;}
.y1f8{bottom:349.706007pt;}
.y21b{bottom:349.706127pt;}
.ybf{bottom:349.706204pt;}
.ye1{bottom:349.706324pt;}
.y128{bottom:353.702246pt;}
.y32{bottom:354.701940pt;}
.y103{bottom:355.701406pt;}
.y281{bottom:356.699042pt;}
.y23d{bottom:358.698690pt;}
.y79{bottom:360.696854pt;}
.y13{bottom:362.695166pt;}
.y2ba{bottom:363.693372pt;}
.y9b{bottom:363.694359pt;}
.y1b3{bottom:368.689811pt;}
.y260{bottom:368.690093pt;}
.y55{bottom:372.686721pt;}
.y149{bottom:377.682213pt;}
.y16c{bottom:377.682333pt;}
.y1d4{bottom:377.682374pt;}
.y18f{bottom:377.682453pt;}
.y1f7{bottom:377.682494pt;}
.y21a{bottom:377.682615pt;}
.ybe{bottom:377.682691pt;}
.ye0{bottom:377.682812pt;}
.y31{bottom:378.681786pt;}
.y127{bottom:381.678734pt;}
.y29d{bottom:381.679417pt;}
.y102{bottom:383.677894pt;}
.y280{bottom:384.675530pt;}
.y23c{bottom:386.675177pt;}
.y78{bottom:388.673342pt;}
.y2b9{bottom:391.669860pt;}
.y9a{bottom:391.670847pt;}
.y12{bottom:392.669974pt;}
.y1b2{bottom:396.666299pt;}
.y25f{bottom:396.666581pt;}
.y54{bottom:400.663209pt;}
.y30{bottom:403.660793pt;}
.y148{bottom:404.659540pt;}
.y16b{bottom:404.659661pt;}
.y1d3{bottom:404.659702pt;}
.y18e{bottom:404.659781pt;}
.y1f6{bottom:404.659822pt;}
.y219{bottom:404.659942pt;}
.ybd{bottom:404.660019pt;}
.ydf{bottom:404.660139pt;}
.y126{bottom:408.656061pt;}
.y29c{bottom:409.655905pt;}
.y101{bottom:410.655221pt;}
.y27f{bottom:411.652857pt;}
.y23b{bottom:413.652505pt;}
.y1b1{bottom:415.650344pt;}
.y77{bottom:415.650669pt;}
.y99{bottom:418.648175pt;}
.y11{bottom:422.644782pt;}
.y25e{bottom:424.643068pt;}
.y53{bottom:427.640536pt;}
.y2f{bottom:428.639800pt;}
.y147{bottom:432.636028pt;}
.y16a{bottom:432.636148pt;}
.y1d2{bottom:432.636189pt;}
.y18d{bottom:432.636269pt;}
.y1f5{bottom:432.636310pt;}
.y218{bottom:432.636430pt;}
.ybc{bottom:432.636507pt;}
.yde{bottom:432.636627pt;}
.y2b8{bottom:435.632912pt;}
.y125{bottom:436.632549pt;}
.y29b{bottom:437.632393pt;}
.y100{bottom:438.631709pt;}
.y27e{bottom:439.629345pt;}
.y1b0{bottom:439.630191pt;}
.y23a{bottom:441.628993pt;}
.y76{bottom:443.627157pt;}
.y98{bottom:446.624662pt;}
.y25d{bottom:451.620396pt;}
.y10{bottom:452.619591pt;}
.y52{bottom:455.617024pt;}
.y146{bottom:459.613356pt;}
.y169{bottom:459.613476pt;}
.y1d1{bottom:459.613517pt;}
.y18c{bottom:459.613596pt;}
.y1f4{bottom:459.613637pt;}
.y217{bottom:459.613757pt;}
.ybb{bottom:459.613834pt;}
.ydd{bottom:459.613955pt;}
.y1af{bottom:460.612557pt;}
.y2b7{bottom:462.610240pt;}
.y124{bottom:463.609876pt;}
.yff{bottom:466.608197pt;}
.y97{bottom:467.607028pt;}
.y239{bottom:468.606320pt;}
.y75{bottom:470.604485pt;}
.y2e{bottom:471.603692pt;}
.y25c{bottom:473.601922pt;}
.y29a{bottom:480.596285pt;}
.y51{bottom:482.594352pt;}
.y27d{bottom:483.592397pt;}
.yf{bottom:483.593559pt;}
.y145{bottom:487.589843pt;}
.y1ae{bottom:487.589884pt;}
.y168{bottom:487.589964pt;}
.y1d0{bottom:487.590005pt;}
.y18b{bottom:487.590084pt;}
.y1f3{bottom:487.590125pt;}
.y216{bottom:487.590245pt;}
.yba{bottom:487.590322pt;}
.ydc{bottom:487.590442pt;}
.y2b6{bottom:490.586728pt;}
.y96{bottom:490.587715pt;}
.y123{bottom:491.586364pt;}
.yfe{bottom:493.585524pt;}
.y25b{bottom:494.584288pt;}
.y238{bottom:496.582808pt;}
.y74{bottom:498.580973pt;}
.y299{bottom:508.572772pt;}
.y27c{bottom:510.569725pt;}
.y50{bottom:510.570840pt;}
.y2d{bottom:511.570103pt;}
.y144{bottom:515.566331pt;}
.y1ad{bottom:515.566372pt;}
.y167{bottom:515.566451pt;}
.y1cf{bottom:515.566492pt;}
.y18a{bottom:515.566572pt;}
.y1f2{bottom:515.566613pt;}
.y25a{bottom:515.566654pt;}
.ye{bottom:515.566688pt;}
.y95{bottom:515.566722pt;}
.y215{bottom:515.566733pt;}
.yb9{bottom:515.566810pt;}
.ydb{bottom:515.566930pt;}
.y122{bottom:519.562852pt;}
.yfd{bottom:521.562012pt;}
.y237{bottom:524.559296pt;}
.y73{bottom:526.557460pt;}
.y2b5{bottom:533.550620pt;}
.y27b{bottom:538.546212pt;}
.y143{bottom:542.543659pt;}
.y1ac{bottom:542.543700pt;}
.y166{bottom:542.543779pt;}
.y1ce{bottom:542.543820pt;}
.y189{bottom:542.543899pt;}
.y1f1{bottom:542.543940pt;}
.y259{bottom:542.543981pt;}
.y94{bottom:542.544049pt;}
.y214{bottom:542.544061pt;}
.yb8{bottom:542.544137pt;}
.yda{bottom:542.544258pt;}
.y121{bottom:546.540179pt;}
.y4f{bottom:548.538930pt;}
.yd{bottom:548.538977pt;}
.yfc{bottom:548.539340pt;}
.y236{bottom:551.536623pt;}
.y298{bottom:551.536664pt;}
.y2c{bottom:552.535675pt;}
.y72{bottom:553.534788pt;}
.y2b4{bottom:561.527107pt;}
.y27a{bottom:565.523540pt;}
.y142{bottom:570.520146pt;}
.y1ab{bottom:570.520187pt;}
.y165{bottom:570.520267pt;}
.y1cd{bottom:570.520308pt;}
.y188{bottom:570.520387pt;}
.y1f0{bottom:570.520428pt;}
.y4e{bottom:570.520456pt;}
.y258{bottom:570.520469pt;}
.y93{bottom:570.520537pt;}
.y213{bottom:570.520548pt;}
.yb7{bottom:570.520625pt;}
.yd9{bottom:570.520746pt;}
.y120{bottom:574.516667pt;}
.yfb{bottom:576.515827pt;}
.y235{bottom:579.513111pt;}
.y297{bottom:579.513152pt;}
.y71{bottom:581.511276pt;}
.yc{bottom:586.507068pt;}
.y2b3{bottom:589.503595pt;}
.y279{bottom:593.500028pt;}
.y11f{bottom:593.500713pt;}
.y2b{bottom:593.501246pt;}
.y141{bottom:597.497474pt;}
.y1aa{bottom:597.497515pt;}
.y164{bottom:597.497594pt;}
.y1cc{bottom:597.497635pt;}
.y187{bottom:597.497715pt;}
.y1ef{bottom:597.497756pt;}
.y257{bottom:597.497797pt;}
.y92{bottom:597.497864pt;}
.y212{bottom:597.497876pt;}
.yb6{bottom:597.497953pt;}
.yd8{bottom:597.498073pt;}
.y4d{bottom:599.496104pt;}
.yfa{bottom:604.492315pt;}
.y234{bottom:606.490439pt;}
.y70{bottom:608.488603pt;}
.y2b2{bottom:616.480923pt;}
.y11e{bottom:617.480559pt;}
.y278{bottom:621.476516pt;}
.yb{bottom:623.475998pt;}
.y296{bottom:623.476204pt;}
.y140{bottom:625.473962pt;}
.y1a9{bottom:625.474003pt;}
.y163{bottom:625.474082pt;}
.y1cb{bottom:625.474123pt;}
.y186{bottom:625.474202pt;}
.y1ee{bottom:625.474243pt;}
.y256{bottom:625.474284pt;}
.y91{bottom:625.474352pt;}
.y211{bottom:625.474364pt;}
.yb5{bottom:625.474440pt;}
.yd7{bottom:625.474561pt;}
.yf9{bottom:631.469643pt;}
.y2a{bottom:634.466818pt;}
.y233{bottom:634.466927pt;}
.y6f{bottom:636.465091pt;}
.y11d{bottom:638.462925pt;}
.y4c{bottom:643.459157pt;}
.y277{bottom:648.453843pt;}
.y13f{bottom:653.450450pt;}
.y1a8{bottom:653.450491pt;}
.y162{bottom:653.450570pt;}
.y1ca{bottom:653.450611pt;}
.y185{bottom:653.450690pt;}
.y1ed{bottom:653.450731pt;}
.y255{bottom:653.450772pt;}
.y90{bottom:653.450840pt;}
.y210{bottom:653.450851pt;}
.yb4{bottom:653.450928pt;}
.yd6{bottom:653.451049pt;}
.yf8{bottom:659.446131pt;}
.y2b1{bottom:660.443975pt;}
.ya{bottom:660.444929pt;}
.y232{bottom:662.443414pt;}
.y6e{bottom:664.441579pt;}
.y11c{bottom:665.440253pt;}
.y295{bottom:666.440096pt;}
.y4b{bottom:671.435644pt;}
.y29{bottom:675.432389pt;}
.y13e{bottom:680.427777pt;}
.y1a7{bottom:680.427818pt;}
.y161{bottom:680.427897pt;}
.y1c9{bottom:680.427938pt;}
.y184{bottom:680.428018pt;}
.y1ec{bottom:680.428059pt;}
.y254{bottom:680.428100pt;}
.y8f{bottom:680.428167pt;}
.y20f{bottom:680.428179pt;}
.yb3{bottom:680.428256pt;}
.yd5{bottom:680.428376pt;}
.yf7{bottom:686.423458pt;}
.y2b0{bottom:687.421303pt;}
.y231{bottom:689.420742pt;}
.y6d{bottom:691.418906pt;}
.y276{bottom:692.416895pt;}
.y11b{bottom:693.416740pt;}
.y294{bottom:694.416584pt;}
.y9{bottom:697.413859pt;}
.y4a{bottom:698.412972pt;}
.yf6{bottom:706.406664pt;}
.y13d{bottom:708.404265pt;}
.y1a6{bottom:708.404306pt;}
.y160{bottom:708.404385pt;}
.y1c8{bottom:708.404426pt;}
.y183{bottom:708.404506pt;}
.y1eb{bottom:708.404546pt;}
.y253{bottom:708.404587pt;}
.y8e{bottom:708.404655pt;}
.y20e{bottom:708.404667pt;}
.yb2{bottom:708.404744pt;}
.yd4{bottom:708.404864pt;}
.y28{bottom:716.397961pt;}
.y230{bottom:717.397230pt;}
.y275{bottom:719.394223pt;}
.y6c{bottom:719.395394pt;}
.y11a{bottom:720.394068pt;}
.y293{bottom:721.393912pt;}
.y49{bottom:726.389460pt;}
.y2af{bottom:731.384355pt;}
.y8{bottom:734.382789pt;}
.y13c{bottom:735.381592pt;}
.y1a5{bottom:735.381633pt;}
.y15f{bottom:735.381713pt;}
.y1c7{bottom:735.381754pt;}
.y182{bottom:735.381833pt;}
.y1ea{bottom:735.381874pt;}
.y252{bottom:735.381915pt;}
.y8d{bottom:735.381983pt;}
.y20d{bottom:735.381994pt;}
.yb1{bottom:735.382071pt;}
.yd3{bottom:735.382191pt;}
.yf5{bottom:735.382312pt;}
.y22f{bottom:744.374557pt;}
.y6b{bottom:746.372722pt;}
.y274{bottom:747.370711pt;}
.y119{bottom:748.370556pt;}
.y292{bottom:749.370399pt;}
.y48{bottom:753.366787pt;}
.y27{bottom:757.363532pt;}
.y2ae{bottom:759.360843pt;}
.y13b{bottom:763.358080pt;}
.y1a4{bottom:763.358121pt;}
.y15e{bottom:763.358201pt;}
.y1c6{bottom:763.358241pt;}
.y181{bottom:763.358321pt;}
.y1e9{bottom:763.358362pt;}
.y251{bottom:763.358403pt;}
.y8c{bottom:763.358471pt;}
.y20c{bottom:763.358482pt;}
.yb0{bottom:763.358559pt;}
.yd2{bottom:763.358679pt;}
.yf4{bottom:763.358800pt;}
.y7{bottom:767.355078pt;}
.y22e{bottom:772.351045pt;}
.y6a{bottom:774.349209pt;}
.y273{bottom:775.347198pt;}
.y118{bottom:776.347043pt;}
.y47{bottom:781.343275pt;}
.y2ad{bottom:786.338170pt;}
.y13a{bottom:791.334568pt;}
.y1a3{bottom:791.334609pt;}
.y15d{bottom:791.334688pt;}
.y1c5{bottom:791.334729pt;}
.y180{bottom:791.334809pt;}
.y1e8{bottom:791.334850pt;}
.y250{bottom:791.334891pt;}
.y6{bottom:791.334925pt;}
.y8b{bottom:791.334958pt;}
.y20b{bottom:791.334970pt;}
.yaf{bottom:791.335047pt;}
.yd1{bottom:791.335167pt;}
.yf3{bottom:791.335287pt;}
.y291{bottom:793.333452pt;}
.y26{bottom:798.329103pt;}
.y22d{bottom:800.327533pt;}
.y272{bottom:802.324526pt;}
.y69{bottom:802.325697pt;}
.y117{bottom:803.324371pt;}
.y46{bottom:809.319763pt;}
.y5{bottom:816.313932pt;}
.y139{bottom:818.311896pt;}
.y1a2{bottom:818.311936pt;}
.y15c{bottom:818.312016pt;}
.y1c4{bottom:818.312057pt;}
.y17f{bottom:818.312136pt;}
.y1e7{bottom:818.312177pt;}
.y24f{bottom:818.312218pt;}
.y8a{bottom:818.312286pt;}
.y20a{bottom:818.312297pt;}
.yae{bottom:818.312374pt;}
.yd0{bottom:818.312495pt;}
.yf2{bottom:818.312615pt;}
.y290{bottom:820.310779pt;}
.y22c{bottom:827.304860pt;}
.y68{bottom:829.303025pt;}
.y271{bottom:830.301014pt;}
.y2ac{bottom:830.301222pt;}
.y116{bottom:831.300859pt;}
.y45{bottom:836.297090pt;}
.y25{bottom:839.294675pt;}
.y4{bottom:841.292939pt;}
.y138{bottom:846.288383pt;}
.y1a1{bottom:846.288424pt;}
.y15b{bottom:846.288504pt;}
.y1c3{bottom:846.288545pt;}
.y17e{bottom:846.288624pt;}
.y1e6{bottom:846.288665pt;}
.y24e{bottom:846.288706pt;}
.y89{bottom:846.288774pt;}
.y209{bottom:846.288785pt;}
.yad{bottom:846.288862pt;}
.ycf{bottom:846.288982pt;}
.yf1{bottom:846.289103pt;}
.y22b{bottom:847.288066pt;}
.y2ab{bottom:857.278550pt;}
.y67{bottom:857.279512pt;}
.y115{bottom:858.278186pt;}
.y28f{bottom:858.278870pt;}
.y44{bottom:864.273578pt;}
.y3{bottom:865.272786pt;}
.y270{bottom:873.264906pt;}
.y137{bottom:873.265711pt;}
.y1a0{bottom:873.265752pt;}
.y15a{bottom:873.265831pt;}
.y1c2{bottom:873.265872pt;}
.y17d{bottom:873.265951pt;}
.y1e5{bottom:873.265992pt;}
.y24d{bottom:873.266033pt;}
.y88{bottom:873.266101pt;}
.y208{bottom:873.266113pt;}
.yac{bottom:873.266190pt;}
.yce{bottom:873.266310pt;}
.yf0{bottom:873.266430pt;}
.y22a{bottom:876.263714pt;}
.y24{bottom:880.260246pt;}
.y66{bottom:884.256840pt;}
.y2aa{bottom:885.255038pt;}
.y114{bottom:886.254674pt;}
.y2{bottom:889.252632pt;}
.y43{bottom:891.250906pt;}
.y229{bottom:899.244400pt;}
.y26f{bottom:901.241393pt;}
.y136{bottom:901.242199pt;}
.y19f{bottom:901.242240pt;}
.y159{bottom:901.242319pt;}
.y1c1{bottom:901.242360pt;}
.y17c{bottom:901.242439pt;}
.y1e4{bottom:901.242480pt;}
.y24c{bottom:901.242521pt;}
.y87{bottom:901.242589pt;}
.y207{bottom:901.242601pt;}
.yab{bottom:901.242677pt;}
.y28e{bottom:901.242762pt;}
.ycd{bottom:901.242798pt;}
.yef{bottom:901.242918pt;}
.y65{bottom:912.233328pt;}
.y113{bottom:914.231162pt;}
.y42{bottom:919.227393pt;}
.y23{bottom:921.225818pt;}
.y26e{bottom:929.217881pt;}
.y2a9{bottom:929.218090pt;}
.y135{bottom:929.218686pt;}
.y19e{bottom:929.218727pt;}
.y158{bottom:929.218807pt;}
.y1c0{bottom:929.218848pt;}
.y17b{bottom:929.218927pt;}
.y1e3{bottom:929.218968pt;}
.y24b{bottom:929.219009pt;}
.y86{bottom:929.219077pt;}
.y206{bottom:929.219088pt;}
.yaa{bottom:929.219165pt;}
.y228{bottom:929.219209pt;}
.y28d{bottom:929.219250pt;}
.ycc{bottom:929.219285pt;}
.yee{bottom:929.219406pt;}
.y64{bottom:940.209816pt;}
.y112{bottom:941.208489pt;}
.y41{bottom:947.203881pt;}
.y26d{bottom:956.195209pt;}
.y2a8{bottom:956.195417pt;}
.y134{bottom:956.196014pt;}
.y19d{bottom:956.196055pt;}
.y157{bottom:956.196134pt;}
.y1bf{bottom:956.196175pt;}
.y17a{bottom:956.196255pt;}
.y1e2{bottom:956.196296pt;}
.y24a{bottom:956.196336pt;}
.y85{bottom:956.196404pt;}
.y205{bottom:956.196416pt;}
.ya9{bottom:956.196493pt;}
.y227{bottom:956.196536pt;}
.y28c{bottom:956.196577pt;}
.ycb{bottom:956.196613pt;}
.yed{bottom:956.196733pt;}
.y22{bottom:962.191389pt;}
.y63{bottom:967.187143pt;}
.y111{bottom:969.184977pt;}
.y40{bottom:974.181209pt;}
.y26c{bottom:984.171697pt;}
.y2a7{bottom:984.171905pt;}
.y133{bottom:984.172502pt;}
.y19c{bottom:984.172543pt;}
.y156{bottom:984.172622pt;}
.y1be{bottom:984.172663pt;}
.y179{bottom:984.172742pt;}
.y1e1{bottom:984.172783pt;}
.y249{bottom:984.172824pt;}
.y84{bottom:984.172892pt;}
.y204{bottom:984.172904pt;}
.ya8{bottom:984.172980pt;}
.y226{bottom:984.173024pt;}
.y28b{bottom:984.173065pt;}
.yca{bottom:984.173101pt;}
.yec{bottom:984.173221pt;}
.y21{bottom:985.172075pt;}
.y62{bottom:986.171188pt;}
.y110{bottom:988.169023pt;}
.y20{bottom:1009.151922pt;}
.y26b{bottom:1011.149024pt;}
.y2a6{bottom:1011.149233pt;}
.y132{bottom:1011.149829pt;}
.y19b{bottom:1011.149870pt;}
.y155{bottom:1011.149950pt;}
.y1bd{bottom:1011.149991pt;}
.y178{bottom:1011.150070pt;}
.y1e0{bottom:1011.150111pt;}
.y248{bottom:1011.150152pt;}
.y83{bottom:1011.150220pt;}
.y203{bottom:1011.150231pt;}
.ya7{bottom:1011.150308pt;}
.y225{bottom:1011.150351pt;}
.y28a{bottom:1011.150392pt;}
.yc9{bottom:1011.150428pt;}
.yeb{bottom:1011.150549pt;}
.y10f{bottom:1012.148869pt;}
.y3f{bottom:1012.149299pt;}
.y61{bottom:1012.149356pt;}
.h9{height:39.050969pt;}
.h10{height:42.112107pt;}
.hd{height:43.338577pt;}
.h15{height:44.400185pt;}
.hb{height:44.431409pt;}
.h3{height:50.543616pt;}
.h7{height:51.818130pt;}
.hf{height:53.275538pt;}
.h11{height:54.173221pt;}
.h6{height:62.925982pt;}
.h5{height:66.647113pt;}
.h4{height:75.842510pt;}
.h8{height:95.919372pt;}
.hc{height:95.919529pt;}
.h14{height:1122.056209pt;}
.h13{height:1122.056817pt;}
.h2{height:1122.056977pt;}
.ha{height:1122.057073pt;}
.he{height:1122.057137pt;}
.h12{height:1122.057457pt;}
.h0{height:1123.840000pt;}
.h1{height:1124.000000pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf{left:95.919387pt;}
.x5{left:102.913509pt;}
.x2{left:105.989049pt;}
.x11{left:107.909310pt;}
.x12{left:119.899233pt;}
.x3{left:131.889157pt;}
.x6{left:141.880760pt;}
.x10{left:143.879080pt;}
.x13{left:151.122992pt;}
.x18{left:152.512449pt;}
.x15{left:153.948742pt;}
.x7{left:220.814422pt;}
.x9{left:240.797627pt;}
.xb{left:276.767397pt;}
.x4{left:314.735488pt;}
.xc{left:346.708617pt;}
.xd{left:383.677547pt;}
.xa{left:406.533338pt;}
.x8{left:410.779769pt;}
.x16{left:680.428150pt;}
.x17{left:681.427310pt;}
.x14{left:688.421432pt;}
.xe{left:704.283101pt;}
.x1{left:706.484381pt;}
}




    .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; }
  