
    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_4ec4c851c456bdcf36a26acf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.773438;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_7fb474dfe2693a49981cc92b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773438;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_90e1cdb4e2b5afccdf95f7cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_a537ec265ea1e12e17586ad9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_883cc4ecb67ee8ba2468f455.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_f7ae155b3ba857c7e6064e22.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_90b9f200176784c0b23cd8e3.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:ffa;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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:ffb;src:url('chunks/assets/font_ec4a920e7b2b48a8793b5758.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939941;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;}
.m2{transform:matrix(0.000000,-0.251228,0.250000,0.000001,0,0);-ms-transform:matrix(0.000000,-0.251228,0.250000,0.000001,0,0);-webkit-transform:matrix(0.000000,-0.251228,0.250000,0.000001,0,0);}
.m1{transform:matrix(0.248778,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.248778,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248778,0.000001,0.000000,0.250000,0,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.061800px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.662400px;}
.ls1{letter-spacing:13.680000px;}
.ls3{letter-spacing:18.077344px;}
.ls2{letter-spacing:18.755334px;}
.lsc{letter-spacing:37.745280px;}
.lsb{letter-spacing:59.321280px;}
.ls14{letter-spacing:72.305280px;}
.ls13{letter-spacing:105.425280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.wsa{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.450800px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-11.991901px;}
.ws7{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._37{margin-left:-2659.576080px;}
._23{margin-left:-2658.496920px;}
._15{margin-left:-2657.076120px;}
._7f{margin-left:-2655.746280px;}
._21{margin-left:-2654.492040px;}
._10{margin-left:-2653.135200px;}
._20{margin-left:-2648.034000px;}
._9{margin-left:-2646.642240px;}
._19{margin-left:-2645.334480px;}
._51{margin-left:-2637.746040px;}
._6e{margin-left:-2636.720400px;}
._29{margin-left:-2626.958040px;}
._78{margin-left:-2625.575160px;}
._44{margin-left:-2623.416000px;}
._31{margin-left:-2616.467160px;}
._3d{margin-left:-2605.527000px;}
._45{margin-left:-2565.680400px;}
._71{margin-left:-2512.993920px;}
._47{margin-left:-2457.580080px;}
._68{margin-left:-2448.483240px;}
._53{margin-left:-2441.713920px;}
._56{margin-left:-2430.831480px;}
._7b{margin-left:-2429.806320px;}
._64{margin-left:-2356.753920px;}
._66{margin-left:-2322.913920px;}
._46{margin-left:-2228.880000px;}
._4b{margin-left:-2204.833920px;}
._7a{margin-left:-2154.949680px;}
._41{margin-left:-2151.553920px;}
._24{margin-left:-2114.829120px;}
._76{margin-left:-2097.954240px;}
._6a{margin-left:-2077.738200px;}
._2a{margin-left:-2064.856320px;}
._86{margin-left:-2056.395360px;}
._25{margin-left:-2050.033320px;}
._67{margin-left:-1946.888040px;}
._54{margin-left:-1938.817080px;}
._16{margin-left:-1885.578120px;}
._42{margin-left:-1874.111280px;}
._7d{margin-left:-1861.456680px;}
._6f{margin-left:-1761.640200px;}
._3c{margin-left:-1742.700000px;}
._49{margin-left:-1610.653920px;}
._5b{margin-left:-1600.836000px;}
._50{margin-left:-1596.973920px;}
._6{margin-left:-1511.935680px;}
._73{margin-left:-1463.797920px;}
._74{margin-left:-1462.683240px;}
._5e{margin-left:-1415.438400px;}
._5f{margin-left:-1403.397000px;}
._79{margin-left:-1368.757200px;}
._32{margin-left:-1360.528560px;}
._84{margin-left:-1177.209720px;}
._3b{margin-left:-1081.061280px;}
._72{margin-left:-1064.465400px;}
._48{margin-left:-1048.302120px;}
._58{margin-left:-937.991160px;}
._5{margin-left:-934.842000px;}
._3e{margin-left:-910.858560px;}
._4{margin-left:-868.876920px;}
._61{margin-left:-809.709480px;}
._60{margin-left:-801.973920px;}
._43{margin-left:-785.413920px;}
._22{margin-left:-775.627200px;}
._36{margin-left:-774.367920px;}
._4c{margin-left:-765.889394px;}
._1d{margin-left:-751.000680px;}
._55{margin-left:-720.613920px;}
._34{margin-left:-669.510000px;}
._81{margin-left:-649.044720px;}
._83{margin-left:-598.600440px;}
._7e{margin-left:-585.882360px;}
._82{margin-left:-583.961400px;}
._2b{margin-left:-574.754040px;}
._77{margin-left:-562.033920px;}
._6d{margin-left:-556.954680px;}
._6c{margin-left:-547.633920px;}
._27{margin-left:-526.666680px;}
._26{margin-left:-511.896000px;}
._40{margin-left:-509.167800px;}
._7c{margin-left:-503.251200px;}
._4a{margin-left:-455.339377px;}
._18{margin-left:-452.640960px;}
._1e{margin-left:-444.023640px;}
._33{margin-left:-424.756800px;}
._17{margin-left:-413.956800px;}
._87{margin-left:-362.223360px;}
._6b{margin-left:-360.980280px;}
._65{margin-left:-337.377840px;}
._28{margin-left:-307.177920px;}
._38{margin-left:-292.472640px;}
._7{margin-left:-283.199040px;}
._4e{margin-left:-275.475457px;}
._85{margin-left:-270.285120px;}
._4d{margin-left:-263.257920px;}
._62{margin-left:-246.697920px;}
._63{margin-left:-243.612480px;}
._57{margin-left:-228.673920px;}
._52{margin-left:-217.869120px;}
._69{margin-left:-209.953920px;}
._75{margin-left:-132.913920px;}
._70{margin-left:-126.610560px;}
._5a{margin-left:-121.417920px;}
._59{margin-left:-104.400000px;}
._4f{margin-left:-38.160000px;}
._1b{margin-left:-19.556464px;}
._1a{margin-left:-18.433879px;}
._3{margin-left:-4.788000px;}
._f{margin-left:-3.558360px;}
._e{margin-left:-2.450880px;}
._0{margin-left:-1.027080px;}
._1{width:1.539840px;}
._2{width:2.766960px;}
._8{width:3.790800px;}
._d{width:4.968000px;}
._c{width:6.027840px;}
._11{width:7.360320px;}
._12{width:8.566920px;}
._14{width:9.583800px;}
._1f{width:11.502240px;}
._b{width:12.642600px;}
._a{width:13.711680px;}
._13{width:15.235200px;}
._1c{width:18.282817px;}
._35{width:19.568652px;}
._3f{width:20.616805px;}
._2d{width:22.256640px;}
._2c{width:23.382720px;}
._5c{width:25.502400px;}
._5d{width:27.224640px;}
._2f{width:28.284480px;}
._2e{width:29.377800px;}
._39{width:31.464000px;}
._88{width:34.752000px;}
._30{width:36.466560px;}
._8e{width:38.699400px;}
._80{width:40.093440px;}
._3a{width:41.598720px;}
._8b{width:50.938560px;}
._8a{width:51.998400px;}
._89{width:57.628800px;}
._8d{width:73.941840px;}
._8c{width:75.049920px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(95,95,95);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:33.120000px;}
.fs9{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fsb{font-size:47.967606px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsa{font-size:66.189542px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:1.438926px;}
.yf3{bottom:3.600000px;}
.yf8{bottom:3.780000px;}
.yfd{bottom:3.825000px;}
.y119{bottom:12.420000px;}
.y120{bottom:12.465000px;}
.y114{bottom:12.600000px;}
.yf1{bottom:13.140000px;}
.y11a{bottom:14.040000px;}
.y103{bottom:15.660000px;}
.yf6{bottom:16.200000px;}
.y125{bottom:17.100000px;}
.y117{bottom:17.460000px;}
.y112{bottom:21.960000px;}
.yfc{bottom:22.500000px;}
.yf2{bottom:22.680000px;}
.yff{bottom:25.200000px;}
.yfa{bottom:25.245000px;}
.y11c{bottom:26.460000px;}
.y38{bottom:27.900000px;}
.y12c{bottom:31.530000px;}
.y113{bottom:31.680000px;}
.y102{bottom:34.560000px;}
.y106{bottom:34.740000px;}
.yf5{bottom:35.100000px;}
.y124{bottom:36.180000px;}
.y116{bottom:36.540000px;}
.y12a{bottom:45.390000px;}
.y5{bottom:74.376000px;}
.y3f{bottom:93.096000px;}
.y1e0{bottom:114.876000px;}
.y94{bottom:119.736000px;}
.y1b0{bottom:124.596000px;}
.yea{bottom:132.516000px;}
.yc2{bottom:133.416000px;}
.y1df{bottom:133.776000px;}
.y36{bottom:134.856000px;}
.y14d{bottom:137.736000px;}
.y6f{bottom:138.456000px;}
.y93{bottom:138.636000px;}
.y133{bottom:142.056000px;}
.y1af{bottom:143.496000px;}
.y15d{bottom:147.456000px;}
.yc1{bottom:152.490000px;}
.y1de{bottom:152.850000px;}
.y35{bottom:153.930000px;}
.y14c{bottom:156.630000px;}
.y6e{bottom:157.710000px;}
.ye9{bottom:160.410000px;}
.y1ae{bottom:162.570000px;}
.y17d{bottom:166.350000px;}
.y132{bottom:170.130000px;}
.yc0{bottom:171.570000px;}
.y1dd{bottom:171.750000px;}
.y34{bottom:173.010000px;}
.y15c{bottom:175.530000px;}
.y14b{bottom:175.710000px;}
.y6d{bottom:176.610000px;}
.ye8{bottom:179.490000px;}
.y1ad{bottom:181.470000px;}
.y92{bottom:185.430000px;}
.y17c{bottom:185.610000px;}
.ybf{bottom:190.470000px;}
.y1dc{bottom:190.830000px;}
.y15b{bottom:194.610000px;}
.y1ac{bottom:200.370000px;}
.y33{bottom:200.730000px;}
.y14a{bottom:203.430000px;}
.y6c{bottom:204.510000px;}
.y91{bottom:204.690000px;}
.ye7{bottom:207.390000px;}
.y1db{bottom:209.730000px;}
.y17b{bottom:213.330000px;}
.y15a{bottom:213.690000px;}
.ybe{bottom:218.190000px;}
.y1ab{bottom:219.450000px;}
.y149{bottom:222.690000px;}
.y6b{bottom:223.590000px;}
.ye6{bottom:226.470000px;}
.y1da{bottom:228.630000px;}
.y159{bottom:232.590000px;}
.y32{bottom:237.810000px;}
.y1aa{bottom:238.350000px;}
.y17a{bottom:241.410000px;}
.y148{bottom:241.590000px;}
.y6a{bottom:242.490000px;}
.ybd{bottom:246.270000px;}
.y1d9{bottom:247.710000px;}
.ye5{bottom:254.370000px;}
.y31{bottom:256.890000px;}
.y1a9{bottom:257.430000px;}
.y158{bottom:260.310000px;}
.y147{bottom:260.490000px;}
.y69{bottom:261.570000px;}
.ybc{bottom:265.350000px;}
.y1d8{bottom:266.610000px;}
.ye4{bottom:273.450000px;}
.y1a8{bottom:276.330000px;}
.y30{bottom:277.950000px;}
.y146{bottom:279.570000px;}
.y68{bottom:280.470000px;}
.y1d7{bottom:285.690000px;}
.y179{bottom:288.210000px;}
.ye3{bottom:292.530000px;}
.ybb{bottom:293.250000px;}
.y1a7{bottom:295.230000px;}
.y2f{bottom:297.030000px;}
.y145{bottom:298.470000px;}
.y67{bottom:299.550000px;}
.y1d6{bottom:304.590000px;}
.yba{bottom:312.330000px;}
.y1a6{bottom:314.310000px;}
.y178{bottom:316.290000px;}
.y144{bottom:317.550000px;}
.ye2{bottom:320.250000px;}
.y1d5{bottom:323.490000px;}
.y2e{bottom:324.930000px;}
.y66{bottom:327.270000px;}
.yb9{bottom:331.230000px;}
.y1a5{bottom:333.210000px;}
.y177{bottom:335.370000px;}
.y157{bottom:336.495000px;}
.ye1{bottom:339.375000px;}
.y1d4{bottom:342.615000px;}
.y2d{bottom:344.055000px;}
.y143{bottom:345.315000px;}
.y65{bottom:346.575000px;}
.yb8{bottom:350.355000px;}
.y1a4{bottom:352.335000px;}
.y176{bottom:354.495000px;}
.y90{bottom:355.395000px;}
.y156{bottom:355.575000px;}
.ye0{bottom:358.455000px;}
.y1d3{bottom:361.515000px;}
.y2c{bottom:362.955000px;}
.y142{bottom:364.575000px;}
.y3a{bottom:364.944695px;}
.y64{bottom:365.475000px;}
.yb7{bottom:369.255000px;}
.y1a3{bottom:371.235000px;}
.y175{bottom:373.395000px;}
.y8f{bottom:374.475000px;}
.y1d2{bottom:380.595000px;}
.y2b{bottom:382.035000px;}
.y141{bottom:383.475000px;}
.y63{bottom:384.375000px;}
.ydf{bottom:386.175000px;}
.yb6{bottom:388.335000px;}
.y1a2{bottom:390.135000px;}
.y174{bottom:392.295000px;}
.y8e{bottom:393.375000px;}
.y1d1{bottom:399.495000px;}
.y140{bottom:402.375000px;}
.y62{bottom:403.455000px;}
.yde{bottom:405.435000px;}
.yb5{bottom:407.235000px;}
.y1a1{bottom:409.215000px;}
.y2a{bottom:409.755000px;}
.y8d{bottom:412.455000px;}
.y1d0{bottom:418.575000px;}
.y173{bottom:420.195000px;}
.y155{bottom:421.275000px;}
.y13f{bottom:421.455000px;}
.y61{bottom:422.355000px;}
.yb4{bottom:426.135000px;}
.y1a0{bottom:428.115000px;}
.y29{bottom:429.015000px;}
.ydd{bottom:433.155000px;}
.y1cf{bottom:437.475000px;}
.y8c{bottom:440.175000px;}
.y13e{bottom:440.355000px;}
.y60{bottom:441.435000px;}
.y19f{bottom:447.195000px;}
.y28{bottom:447.915000px;}
.ydc{bottom:452.235000px;}
.y110{bottom:453.495000px;}
.yb3{bottom:454.035000px;}
.y1ce{bottom:456.375000px;}
.y172{bottom:457.095000px;}
.y8b{bottom:459.435000px;}
.y19e{bottom:466.095000px;}
.y27{bottom:466.995000px;}
.y131{bottom:467.535000px;}
.y5f{bottom:469.155000px;}
.ydb{bottom:471.315000px;}
.y10f{bottom:472.575000px;}
.y1cd{bottom:475.455000px;}
.y8a{bottom:478.335000px;}
.yb2{bottom:481.935000px;}
.y19d{bottom:484.995000px;}
.y26{bottom:485.895000px;}
.y130{bottom:486.615000px;}
.y171{bottom:491.115000px;}
.y1cc{bottom:494.355000px;}
.y5e{bottom:497.055000px;}
.y13d{bottom:497.235000px;}
.yda{bottom:499.035000px;}
.y10e{bottom:500.475000px;}
.yb1{bottom:501.195000px;}
.y19c{bottom:504.075000px;}
.y25{bottom:504.795000px;}
.y89{bottom:506.055000px;}
.y170{bottom:510.195000px;}
.y1cb{bottom:513.435000px;}
.y12f{bottom:514.515000px;}
.y5d{bottom:516.315000px;}
.yd9{bottom:518.295000px;}
.y10d{bottom:519.555000px;}
.yb0{bottom:520.095000px;}
.y19b{bottom:522.975000px;}
.y24{bottom:523.875000px;}
.y154{bottom:525.135000px;}
.y88{bottom:525.315000px;}
.y16f{bottom:529.275000px;}
.y1ca{bottom:532.335000px;}
.y12e{bottom:533.595000px;}
.y5c{bottom:535.215000px;}
.yd8{bottom:537.195000px;}
.y10c{bottom:538.455000px;}
.yaf{bottom:539.175000px;}
.y19a{bottom:542.055000px;}
.y23{bottom:542.775000px;}
.y87{bottom:544.215000px;}
.y16e{bottom:548.175000px;}
.y1c9{bottom:551.235000px;}
.y5b{bottom:554.295000px;}
.y10a{bottom:554.655000px;}
.yd7{bottom:556.095000px;}
.yae{bottom:558.075000px;}
.y199{bottom:560.955000px;}
.y12d{bottom:561.315000px;}
.y22{bottom:561.855000px;}
.y86{bottom:563.295000px;}
.y16d{bottom:567.255000px;}
.y1c8{bottom:570.315000px;}
.y5a{bottom:573.195000px;}
.y129{bottom:577.695000px;}
.y10b{bottom:578.595000px;}
.y198{bottom:579.855000px;}
.y21{bottom:580.755000px;}
.y13c{bottom:582.015000px;}
.y85{bottom:582.195000px;}
.yd6{bottom:583.995000px;}
.yad{bottom:585.795000px;}
.y1c7{bottom:589.215000px;}
.y59{bottom:592.095000px;}
.y16c{bottom:594.975000px;}
.y197{bottom:598.935000px;}
.y20{bottom:599.655000px;}
.y84{bottom:601.095000px;}
.yd5{bottom:603.075000px;}
.yac{bottom:604.905000px;}
.y1c6{bottom:608.325000px;}
.y16b{bottom:614.085000px;}
.y108{bottom:617.325000px;}
.y196{bottom:617.865000px;}
.y58{bottom:620.025000px;}
.y83{bottom:620.205000px;}
.yd4{bottom:622.185000px;}
.y12b{bottom:624.525000px;}
.y1c5{bottom:627.225000px;}
.y1f{bottom:627.585000px;}
.y16a{bottom:633.165000px;}
.yab{bottom:634.065000px;}
.y195{bottom:636.945000px;}
.y57{bottom:639.105000px;}
.y109{bottom:641.265000px;}
.y1c4{bottom:646.125000px;}
.y1e{bottom:646.665000px;}
.y82{bottom:647.925000px;}
.yd3{bottom:649.905000px;}
.y169{bottom:652.065000px;}
.yaa{bottom:653.145000px;}
.y194{bottom:655.845000px;}
.y56{bottom:658.185000px;}
.y1c3{bottom:665.205000px;}
.y1d{bottom:665.745000px;}
.y13b{bottom:667.005000px;}
.y81{bottom:667.185000px;}
.yd2{bottom:668.985000px;}
.y168{bottom:671.145000px;}
.ya9{bottom:672.045000px;}
.y127{bottom:672.225000px;}
.y193{bottom:674.925000px;}
.y55{bottom:677.085000px;}
.y105{bottom:679.965000px;}
.y1c2{bottom:684.105000px;}
.y1c{bottom:684.645000px;}
.y80{bottom:686.085000px;}
.yd1{bottom:688.065000px;}
.y167{bottom:690.045000px;}
.y192{bottom:693.825000px;}
.y128{bottom:700.305000px;}
.ya8{bottom:701.205000px;}
.y1c1{bottom:703.185000px;}
.y1b{bottom:703.545000px;}
.y107{bottom:704.085000px;}
.y54{bottom:704.805000px;}
.y7f{bottom:704.985000px;}
.y191{bottom:712.725000px;}
.yd0{bottom:715.785000px;}
.ya7{bottom:720.285000px;}
.y1c0{bottom:722.085000px;}
.y1a{bottom:722.625000px;}
.y166{bottom:723.885000px;}
.y53{bottom:724.065000px;}
.y123{bottom:728.925000px;}
.y190{bottom:731.805000px;}
.ycf{bottom:735.045000px;}
.ya6{bottom:739.185000px;}
.y1bf{bottom:740.985000px;}
.y19{bottom:741.525000px;}
.y101{bottom:742.785000px;}
.y52{bottom:742.965000px;}
.y18f{bottom:750.705000px;}
.y7e{bottom:751.785000px;}
.yce{bottom:753.945000px;}
.y126{bottom:757.005000px;}
.y1be{bottom:760.065000px;}
.y51{bottom:762.045000px;}
.y104{bottom:766.725000px;}
.ya5{bottom:768.165000px;}
.y18{bottom:769.425000px;}
.y18e{bottom:769.785000px;}
.y13a{bottom:771.045000px;}
.ycd{bottom:772.845000px;}
.y1bd{bottom:778.965000px;}
.y7d{bottom:779.865000px;}
.y153{bottom:780.945000px;}
.y121{bottom:785.625000px;}
.ya4{bottom:787.425000px;}
.y17{bottom:788.505000px;}
.y18d{bottom:788.685000px;}
.y50{bottom:789.765000px;}
.y139{bottom:789.945000px;}
.y1bc{bottom:798.045000px;}
.y7c{bottom:798.945000px;}
.y165{bottom:799.845000px;}
.ycc{bottom:800.745000px;}
.y37{bottom:802.005000px;}
.yfe{bottom:805.425000px;}
.ya3{bottom:806.325000px;}
.y16{bottom:807.405000px;}
.y18c{bottom:807.585000px;}
.y152{bottom:808.665000px;}
.y4f{bottom:808.845000px;}
.y122{bottom:813.705000px;}
.y1bb{bottom:816.945000px;}
.y138{bottom:817.665000px;}
.y7b{bottom:817.845000px;}
.ya2{bottom:825.225000px;}
.y18b{bottom:826.665000px;}
.y164{bottom:827.745000px;}
.y4e{bottom:827.925000px;}
.ycb{bottom:828.645000px;}
.y100{bottom:829.365000px;}
.y39{bottom:830.142086px;}
.y15{bottom:835.305000px;}
.y1ba{bottom:835.845000px;}
.y7a{bottom:836.925000px;}
.y11e{bottom:842.325000px;}
.y18a{bottom:845.565000px;}
.y4d{bottom:846.825000px;}
.yca{bottom:847.905000px;}
.y14{bottom:853.665000px;}
.ya1{bottom:854.385000px;}
.y1b9{bottom:854.925000px;}
.y163{bottom:855.645000px;}
.y79{bottom:855.825000px;}
.y189{bottom:864.645000px;}
.y4c{bottom:865.905000px;}
.yc9{bottom:866.805000px;}
.yf9{bottom:868.065000px;}
.y13{bottom:869.145000px;}
.y11f{bottom:870.405000px;}
.ya0{bottom:873.510000px;}
.y1b8{bottom:873.870000px;}
.y78{bottom:874.950000px;}
.y188{bottom:883.590000px;}
.y12{bottom:884.850000px;}
.yfb{bottom:892.230000px;}
.y9f{bottom:892.410000px;}
.y1b7{bottom:892.950000px;}
.y77{bottom:893.850000px;}
.yc8{bottom:894.750000px;}
.y11b{bottom:899.070000px;}
.y10{bottom:900.330000px;}
.y187{bottom:902.490000px;}
.y1e1{bottom:902.670000px;}
.y4b{bottom:903.930000px;}
.y11{bottom:904.830000px;}
.y1b6{bottom:911.850000px;}
.y137{bottom:912.930000px;}
.yc7{bottom:913.830000px;}
.yf{bottom:916.530000px;}
.y9e{bottom:921.390000px;}
.y186{bottom:921.570000px;}
.y76{bottom:921.750000px;}
.y151{bottom:922.830000px;}
.y11d{bottom:927.150000px;}
.yf4{bottom:930.750000px;}
.y1b5{bottom:930.930000px;}
.y4a{bottom:931.650000px;}
.y162{bottom:931.830000px;}
.yc6{bottom:932.730000px;}
.ye{bottom:935.790000px;}
.y185{bottom:940.470000px;}
.y9d{bottom:940.650000px;}
.y75{bottom:940.830000px;}
.yd{bottom:941.730000px;}
.y1b4{bottom:949.830000px;}
.y150{bottom:950.550000px;}
.y49{bottom:950.730000px;}
.yf7{bottom:955.590000px;}
.y115{bottom:955.770000px;}
.yb{bottom:956.490000px;}
.y9c{bottom:959.550000px;}
.y74{bottom:959.730000px;}
.yc5{bottom:960.630000px;}
.yc{bottom:962.430000px;}
.y184{bottom:968.370000px;}
.y1b3{bottom:968.730000px;}
.y48{bottom:969.810000px;}
.ya{bottom:977.190000px;}
.y161{bottom:978.630000px;}
.y73{bottom:978.810000px;}
.yc4{bottom:979.710000px;}
.y118{bottom:984.570000px;}
.y1b2{bottom:987.810000px;}
.y9b{bottom:988.530000px;}
.y14f{bottom:988.710000px;}
.y183{bottom:989.610000px;}
.yf0{bottom:994.290000px;}
.y47{bottom:997.530000px;}
.y72{bottom:997.710000px;}
.y9{bottom:1000.050000px;}
.y160{bottom:1006.530000px;}
.y1b1{bottom:1006.710000px;}
.yc3{bottom:1007.610000px;}
.y9a{bottom:1007.790000px;}
.y182{bottom:1008.690000px;}
.y111{bottom:1013.190000px;}
.y46{bottom:1016.790000px;}
.y15f{bottom:1025.790000px;}
.y99{bottom:1026.690000px;}
.y8{bottom:1030.650000px;}
.y14e{bottom:1035.510000px;}
.y45{bottom:1035.690000px;}
.y181{bottom:1036.410000px;}
.y136{bottom:1044.510000px;}
.y15e{bottom:1044.690000px;}
.yef{bottom:1045.410000px;}
.y98{bottom:1045.590000px;}
.y44{bottom:1054.590000px;}
.y7{bottom:1061.430000px;}
.y135{bottom:1063.590000px;}
.y180{bottom:1064.490000px;}
.y97{bottom:1064.670000px;}
.yee{bottom:1073.490000px;}
.y43{bottom:1073.670000px;}
.y71{bottom:1082.490000px;}
.y134{bottom:1082.670000px;}
.y17f{bottom:1083.570000px;}
.y6{bottom:1092.030000px;}
.y96{bottom:1092.390000px;}
.yed{bottom:1092.570000px;}
.y42{bottom:1101.390000px;}
.y70{bottom:1101.570000px;}
.y17e{bottom:1111.470000px;}
.yec{bottom:1111.650000px;}
.y95{bottom:1120.470000px;}
.y41{bottom:1120.650000px;}
.y4{bottom:1121.910000px;}
.yeb{bottom:1139.400000px;}
.y40{bottom:1139.580000px;}
.y3{bottom:1149.660000px;}
.y3e{bottom:1166.040000px;}
.y2{bottom:1177.200000px;}
.y3d{bottom:1183.860000px;}
.y3c{bottom:1197.540000px;}
.y1{bottom:1201.320000px;}
.h18{height:23.940000px;}
.h13{height:24.120000px;}
.h16{height:24.156000px;}
.ha{height:24.996094px;}
.h2{height:25.066406px;}
.h1c{height:27.900000px;}
.h20{height:27.936000px;}
.h1d{height:28.080000px;}
.h7{height:34.931602px;}
.h9{height:37.494141px;}
.h15{height:37.800000px;}
.h11{height:37.980000px;}
.h19{height:38.016000px;}
.hf{height:43.002209px;}
.h10{height:43.246406px;}
.h22{height:46.836000px;}
.h1a{height:46.980000px;}
.hb{height:47.965781px;}
.h6{height:52.136719px;}
.h1e{height:55.980000px;}
.h1f{height:56.016000px;}
.h1b{height:56.700000px;}
.he{height:59.337890px;}
.h8{height:59.383125px;}
.h17{height:61.920000px;}
.h14{height:61.956000px;}
.h12{height:62.820000px;}
.h4{height:64.546875px;}
.h5{height:81.685547px;}
.h3{height:85.847344px;}
.h21{height:93.816000px;}
.hd{height:380.177914px;}
.hc{height:408.315000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:16.430695px;}
.w3{width:26.856000px;}
.wf{width:44.820000px;}
.we{width:47.880000px;}
.w7{width:49.680000px;}
.wd{width:65.916000px;}
.w8{width:79.020000px;}
.w9{width:79.056000px;}
.w10{width:80.316000px;}
.w6{width:91.656000px;}
.wa{width:95.220000px;}
.w5{width:115.740000px;}
.wc{width:130.680000px;}
.w12{width:141.876000px;}
.w11{width:144.000000px;}
.wb{width:145.116000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x18{left:-2.340000px;}
.x0{left:0.000000px;}
.x23{left:5.220000px;}
.x1a{left:12.457259px;}
.x17{left:73.440000px;}
.x19{left:78.637500px;}
.x4d{left:122.075987px;}
.x1{left:129.635987px;}
.x2{left:131.075987px;}
.x1d{left:132.155987px;}
.x40{left:134.495987px;}
.x4e{left:140.255987px;}
.x6{left:143.495987px;}
.x20{left:156.629987px;}
.x3{left:161.129987px;}
.x45{left:171.929987px;}
.x4{left:181.109987px;}
.x43{left:182.189987px;}
.x22{left:183.629987px;}
.x5{left:186.329987px;}
.x12{left:218.009987px;}
.x11{left:225.209987px;}
.x24{left:245.370000px;}
.x2a{left:260.310000px;}
.x49{left:270.209987px;}
.x13{left:273.989987px;}
.x3b{left:309.854987px;}
.x4a{left:314.534987px;}
.x3d{left:317.054987px;}
.x2b{left:326.235000px;}
.x25{left:337.035000px;}
.x44{left:351.254987px;}
.x1b{left:366.194987px;}
.x2c{left:374.115000px;}
.xe{left:375.194987px;}
.xd{left:381.854987px;}
.x26{left:386.715000px;}
.x1c{left:404.894987px;}
.xb{left:414.254987px;}
.x2d{left:418.935000px;}
.xa{left:420.374987px;}
.x39{left:433.154987px;}
.x7{left:447.734987px;}
.xf{left:449.894987px;}
.x14{left:452.234987px;}
.x21{left:463.754987px;}
.x27{left:465.735000px;}
.x10{left:477.104987px;}
.x2e{left:499.245000px;}
.x30{left:522.824987px;}
.xc{left:527.324987px;}
.x48{left:528.764987px;}
.x35{left:532.364987px;}
.x28{left:544.785000px;}
.x3c{left:556.124987px;}
.x46{left:562.424987px;}
.x4c{left:587.444987px;}
.x38{left:603.284987px;}
.x42{left:608.864987px;}
.x1f{left:638.384987px;}
.x29{left:640.005000px;}
.x2f{left:643.245000px;}
.x9{left:649.724987px;}
.x8{left:655.889987px;}
.x32{left:667.409987px;}
.x37{left:673.169987px;}
.x36{left:680.909987px;}
.x3e{left:684.149987px;}
.x41{left:710.429987px;}
.x4b{left:737.609987px;}
.x3a{left:740.129987px;}
.x34{left:744.269987px;}
.x47{left:761.549987px;}
.x33{left:764.069987px;}
.x1e{left:766.229987px;}
.x16{left:776.129987px;}
.x15{left:777.569987px;}
.x3f{left:779.909987px;}
.x31{left:781.349987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.054933pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.588800pt;}
.ls1{letter-spacing:12.160000pt;}
.ls3{letter-spacing:16.068750pt;}
.ls2{letter-spacing:16.671408pt;}
.lsc{letter-spacing:33.551360pt;}
.lsb{letter-spacing:52.730027pt;}
.ls14{letter-spacing:64.271360pt;}
.ls13{letter-spacing:93.711360pt;}
.ws8{word-spacing:-58.880000pt;}
.wsa{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.622933pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.659468pt;}
.ws7{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._37{margin-left:-2364.067627pt;}
._23{margin-left:-2363.108373pt;}
._15{margin-left:-2361.845440pt;}
._7f{margin-left:-2360.663360pt;}
._21{margin-left:-2359.548480pt;}
._10{margin-left:-2358.342400pt;}
._20{margin-left:-2353.808000pt;}
._9{margin-left:-2352.570880pt;}
._19{margin-left:-2351.408427pt;}
._51{margin-left:-2344.663147pt;}
._6e{margin-left:-2343.751467pt;}
._29{margin-left:-2335.073813pt;}
._78{margin-left:-2333.844587pt;}
._44{margin-left:-2331.925333pt;}
._31{margin-left:-2325.748587pt;}
._3d{margin-left:-2316.024000pt;}
._45{margin-left:-2280.604800pt;}
._71{margin-left:-2233.772373pt;}
._47{margin-left:-2184.515627pt;}
._68{margin-left:-2176.429547pt;}
._53{margin-left:-2170.412373pt;}
._56{margin-left:-2160.739093pt;}
._7b{margin-left:-2159.827840pt;}
._64{margin-left:-2094.892373pt;}
._66{margin-left:-2064.812373pt;}
._46{margin-left:-1981.226667pt;}
._4b{margin-left:-1959.852373pt;}
._7a{margin-left:-1915.510827pt;}
._41{margin-left:-1912.492373pt;}
._24{margin-left:-1879.848107pt;}
._76{margin-left:-1864.848213pt;}
._6a{margin-left:-1846.878400pt;}
._2a{margin-left:-1835.427840pt;}
._86{margin-left:-1827.906987pt;}
._25{margin-left:-1822.251840pt;}
._67{margin-left:-1730.567147pt;}
._54{margin-left:-1723.392960pt;}
._16{margin-left:-1676.069440pt;}
._42{margin-left:-1665.876693pt;}
._7d{margin-left:-1654.628160pt;}
._6f{margin-left:-1565.902400pt;}
._3c{margin-left:-1549.066667pt;}
._49{margin-left:-1431.692373pt;}
._5b{margin-left:-1422.965333pt;}
._50{margin-left:-1419.532373pt;}
._6{margin-left:-1343.942827pt;}
._73{margin-left:-1301.153707pt;}
._74{margin-left:-1300.162880pt;}
._5e{margin-left:-1258.167467pt;}
._5f{margin-left:-1247.464000pt;}
._79{margin-left:-1216.673067pt;}
._32{margin-left:-1209.358720pt;}
._84{margin-left:-1046.408640pt;}
._3b{margin-left:-960.943360pt;}
._72{margin-left:-946.191467pt;}
._48{margin-left:-931.824107pt;}
._58{margin-left:-833.769920pt;}
._5{margin-left:-830.970667pt;}
._3e{margin-left:-809.652053pt;}
._4{margin-left:-772.335040pt;}
._61{margin-left:-719.741760pt;}
._60{margin-left:-712.865707pt;}
._43{margin-left:-698.145707pt;}
._22{margin-left:-689.446400pt;}
._36{margin-left:-688.327040pt;}
._4c{margin-left:-680.790573pt;}
._1d{margin-left:-667.556160pt;}
._55{margin-left:-640.545707pt;}
._34{margin-left:-595.120000pt;}
._81{margin-left:-576.928640pt;}
._83{margin-left:-532.089280pt;}
._7e{margin-left:-520.784320pt;}
._82{margin-left:-519.076800pt;}
._2b{margin-left:-510.892480pt;}
._77{margin-left:-499.585707pt;}
._6d{margin-left:-495.070827pt;}
._6c{margin-left:-486.785707pt;}
._27{margin-left:-468.148160pt;}
._26{margin-left:-455.018667pt;}
._40{margin-left:-452.593600pt;}
._7c{margin-left:-447.334400pt;}
._4a{margin-left:-404.746113pt;}
._18{margin-left:-402.347520pt;}
._1e{margin-left:-394.687680pt;}
._33{margin-left:-377.561600pt;}
._17{margin-left:-367.961600pt;}
._87{margin-left:-321.976320pt;}
._6b{margin-left:-320.871360pt;}
._65{margin-left:-299.891413pt;}
._28{margin-left:-273.047040pt;}
._38{margin-left:-259.975680pt;}
._7{margin-left:-251.732480pt;}
._4e{margin-left:-244.867073pt;}
._85{margin-left:-240.253440pt;}
._4d{margin-left:-234.007040pt;}
._62{margin-left:-219.287040pt;}
._63{margin-left:-216.544427pt;}
._57{margin-left:-203.265707pt;}
._52{margin-left:-193.661440pt;}
._69{margin-left:-186.625707pt;}
._75{margin-left:-118.145707pt;}
._70{margin-left:-112.542720pt;}
._5a{margin-left:-107.927040pt;}
._59{margin-left:-92.800000pt;}
._4f{margin-left:-33.920000pt;}
._1b{margin-left:-17.383524pt;}
._1a{margin-left:-16.385670pt;}
._3{margin-left:-4.256000pt;}
._f{margin-left:-3.162987pt;}
._e{margin-left:-2.178560pt;}
._0{margin-left:-0.912960pt;}
._1{width:1.368747pt;}
._2{width:2.459520pt;}
._8{width:3.369600pt;}
._d{width:4.416000pt;}
._c{width:5.358080pt;}
._11{width:6.542507pt;}
._12{width:7.615040pt;}
._14{width:8.518933pt;}
._1f{width:10.224213pt;}
._b{width:11.237867pt;}
._a{width:12.188160pt;}
._13{width:13.542400pt;}
._1c{width:16.251393pt;}
._35{width:17.394357pt;}
._3f{width:18.326049pt;}
._2d{width:19.783680pt;}
._2c{width:20.784640pt;}
._5c{width:22.668800pt;}
._5d{width:24.199680pt;}
._2f{width:25.141760pt;}
._2e{width:26.113600pt;}
._39{width:27.968000pt;}
._88{width:30.890667pt;}
._30{width:32.414720pt;}
._8e{width:34.399467pt;}
._80{width:35.638613pt;}
._3a{width:36.976640pt;}
._8b{width:45.278720pt;}
._8a{width:46.220800pt;}
._89{width:51.225600pt;}
._8d{width:65.726080pt;}
._8c{width:66.711040pt;}
.fs0{font-size:29.440000pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fsb{font-size:42.637872pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsa{font-size:58.835148pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:1.279045pt;}
.yf3{bottom:3.200000pt;}
.yf8{bottom:3.360000pt;}
.yfd{bottom:3.400000pt;}
.y119{bottom:11.040000pt;}
.y120{bottom:11.080000pt;}
.y114{bottom:11.200000pt;}
.yf1{bottom:11.680000pt;}
.y11a{bottom:12.480000pt;}
.y103{bottom:13.920000pt;}
.yf6{bottom:14.400000pt;}
.y125{bottom:15.200000pt;}
.y117{bottom:15.520000pt;}
.y112{bottom:19.520000pt;}
.yfc{bottom:20.000000pt;}
.yf2{bottom:20.160000pt;}
.yff{bottom:22.400000pt;}
.yfa{bottom:22.440000pt;}
.y11c{bottom:23.520000pt;}
.y38{bottom:24.800000pt;}
.y12c{bottom:28.026667pt;}
.y113{bottom:28.160000pt;}
.y102{bottom:30.720000pt;}
.y106{bottom:30.880000pt;}
.yf5{bottom:31.200000pt;}
.y124{bottom:32.160000pt;}
.y116{bottom:32.480000pt;}
.y12a{bottom:40.346667pt;}
.y5{bottom:66.112000pt;}
.y3f{bottom:82.752000pt;}
.y1e0{bottom:102.112000pt;}
.y94{bottom:106.432000pt;}
.y1b0{bottom:110.752000pt;}
.yea{bottom:117.792000pt;}
.yc2{bottom:118.592000pt;}
.y1df{bottom:118.912000pt;}
.y36{bottom:119.872000pt;}
.y14d{bottom:122.432000pt;}
.y6f{bottom:123.072000pt;}
.y93{bottom:123.232000pt;}
.y133{bottom:126.272000pt;}
.y1af{bottom:127.552000pt;}
.y15d{bottom:131.072000pt;}
.yc1{bottom:135.546667pt;}
.y1de{bottom:135.866667pt;}
.y35{bottom:136.826667pt;}
.y14c{bottom:139.226667pt;}
.y6e{bottom:140.186667pt;}
.ye9{bottom:142.586667pt;}
.y1ae{bottom:144.506667pt;}
.y17d{bottom:147.866667pt;}
.y132{bottom:151.226667pt;}
.yc0{bottom:152.506667pt;}
.y1dd{bottom:152.666667pt;}
.y34{bottom:153.786667pt;}
.y15c{bottom:156.026667pt;}
.y14b{bottom:156.186667pt;}
.y6d{bottom:156.986667pt;}
.ye8{bottom:159.546667pt;}
.y1ad{bottom:161.306667pt;}
.y92{bottom:164.826667pt;}
.y17c{bottom:164.986667pt;}
.ybf{bottom:169.306667pt;}
.y1dc{bottom:169.626667pt;}
.y15b{bottom:172.986667pt;}
.y1ac{bottom:178.106667pt;}
.y33{bottom:178.426667pt;}
.y14a{bottom:180.826667pt;}
.y6c{bottom:181.786667pt;}
.y91{bottom:181.946667pt;}
.ye7{bottom:184.346667pt;}
.y1db{bottom:186.426667pt;}
.y17b{bottom:189.626667pt;}
.y15a{bottom:189.946667pt;}
.ybe{bottom:193.946667pt;}
.y1ab{bottom:195.066667pt;}
.y149{bottom:197.946667pt;}
.y6b{bottom:198.746667pt;}
.ye6{bottom:201.306667pt;}
.y1da{bottom:203.226667pt;}
.y159{bottom:206.746667pt;}
.y32{bottom:211.386667pt;}
.y1aa{bottom:211.866667pt;}
.y17a{bottom:214.586667pt;}
.y148{bottom:214.746667pt;}
.y6a{bottom:215.546667pt;}
.ybd{bottom:218.906667pt;}
.y1d9{bottom:220.186667pt;}
.ye5{bottom:226.106667pt;}
.y31{bottom:228.346667pt;}
.y1a9{bottom:228.826667pt;}
.y158{bottom:231.386667pt;}
.y147{bottom:231.546667pt;}
.y69{bottom:232.506667pt;}
.ybc{bottom:235.866667pt;}
.y1d8{bottom:236.986667pt;}
.ye4{bottom:243.066667pt;}
.y1a8{bottom:245.626667pt;}
.y30{bottom:247.066667pt;}
.y146{bottom:248.506667pt;}
.y68{bottom:249.306667pt;}
.y1d7{bottom:253.946667pt;}
.y179{bottom:256.186667pt;}
.ye3{bottom:260.026667pt;}
.ybb{bottom:260.666667pt;}
.y1a7{bottom:262.426667pt;}
.y2f{bottom:264.026667pt;}
.y145{bottom:265.306667pt;}
.y67{bottom:266.266667pt;}
.y1d6{bottom:270.746667pt;}
.yba{bottom:277.626667pt;}
.y1a6{bottom:279.386667pt;}
.y178{bottom:281.146667pt;}
.y144{bottom:282.266667pt;}
.ye2{bottom:284.666667pt;}
.y1d5{bottom:287.546667pt;}
.y2e{bottom:288.826667pt;}
.y66{bottom:290.906667pt;}
.yb9{bottom:294.426667pt;}
.y1a5{bottom:296.186667pt;}
.y177{bottom:298.106667pt;}
.y157{bottom:299.106667pt;}
.ye1{bottom:301.666667pt;}
.y1d4{bottom:304.546667pt;}
.y2d{bottom:305.826667pt;}
.y143{bottom:306.946667pt;}
.y65{bottom:308.066667pt;}
.yb8{bottom:311.426667pt;}
.y1a4{bottom:313.186667pt;}
.y176{bottom:315.106667pt;}
.y90{bottom:315.906667pt;}
.y156{bottom:316.066667pt;}
.ye0{bottom:318.626667pt;}
.y1d3{bottom:321.346667pt;}
.y2c{bottom:322.626667pt;}
.y142{bottom:324.066667pt;}
.y3a{bottom:324.395285pt;}
.y64{bottom:324.866667pt;}
.yb7{bottom:328.226667pt;}
.y1a3{bottom:329.986667pt;}
.y175{bottom:331.906667pt;}
.y8f{bottom:332.866667pt;}
.y1d2{bottom:338.306667pt;}
.y2b{bottom:339.586667pt;}
.y141{bottom:340.866667pt;}
.y63{bottom:341.666667pt;}
.ydf{bottom:343.266667pt;}
.yb6{bottom:345.186667pt;}
.y1a2{bottom:346.786667pt;}
.y174{bottom:348.706667pt;}
.y8e{bottom:349.666667pt;}
.y1d1{bottom:355.106667pt;}
.y140{bottom:357.666667pt;}
.y62{bottom:358.626667pt;}
.yde{bottom:360.386667pt;}
.yb5{bottom:361.986667pt;}
.y1a1{bottom:363.746667pt;}
.y2a{bottom:364.226667pt;}
.y8d{bottom:366.626667pt;}
.y1d0{bottom:372.066667pt;}
.y173{bottom:373.506667pt;}
.y155{bottom:374.466667pt;}
.y13f{bottom:374.626667pt;}
.y61{bottom:375.426667pt;}
.yb4{bottom:378.786667pt;}
.y1a0{bottom:380.546667pt;}
.y29{bottom:381.346667pt;}
.ydd{bottom:385.026667pt;}
.y1cf{bottom:388.866667pt;}
.y8c{bottom:391.266667pt;}
.y13e{bottom:391.426667pt;}
.y60{bottom:392.386667pt;}
.y19f{bottom:397.506667pt;}
.y28{bottom:398.146667pt;}
.ydc{bottom:401.986667pt;}
.y110{bottom:403.106667pt;}
.yb3{bottom:403.586667pt;}
.y1ce{bottom:405.666667pt;}
.y172{bottom:406.306667pt;}
.y8b{bottom:408.386667pt;}
.y19e{bottom:414.306667pt;}
.y27{bottom:415.106667pt;}
.y131{bottom:415.586667pt;}
.y5f{bottom:417.026667pt;}
.ydb{bottom:418.946667pt;}
.y10f{bottom:420.066667pt;}
.y1cd{bottom:422.626667pt;}
.y8a{bottom:425.186667pt;}
.yb2{bottom:428.386667pt;}
.y19d{bottom:431.106667pt;}
.y26{bottom:431.906667pt;}
.y130{bottom:432.546667pt;}
.y171{bottom:436.546667pt;}
.y1cc{bottom:439.426667pt;}
.y5e{bottom:441.826667pt;}
.y13d{bottom:441.986667pt;}
.yda{bottom:443.586667pt;}
.y10e{bottom:444.866667pt;}
.yb1{bottom:445.506667pt;}
.y19c{bottom:448.066667pt;}
.y25{bottom:448.706667pt;}
.y89{bottom:449.826667pt;}
.y170{bottom:453.506667pt;}
.y1cb{bottom:456.386667pt;}
.y12f{bottom:457.346667pt;}
.y5d{bottom:458.946667pt;}
.yd9{bottom:460.706667pt;}
.y10d{bottom:461.826667pt;}
.yb0{bottom:462.306667pt;}
.y19b{bottom:464.866667pt;}
.y24{bottom:465.666667pt;}
.y154{bottom:466.786667pt;}
.y88{bottom:466.946667pt;}
.y16f{bottom:470.466667pt;}
.y1ca{bottom:473.186667pt;}
.y12e{bottom:474.306667pt;}
.y5c{bottom:475.746667pt;}
.yd8{bottom:477.506667pt;}
.y10c{bottom:478.626667pt;}
.yaf{bottom:479.266667pt;}
.y19a{bottom:481.826667pt;}
.y23{bottom:482.466667pt;}
.y87{bottom:483.746667pt;}
.y16e{bottom:487.266667pt;}
.y1c9{bottom:489.986667pt;}
.y5b{bottom:492.706667pt;}
.y10a{bottom:493.026667pt;}
.yd7{bottom:494.306667pt;}
.yae{bottom:496.066667pt;}
.y199{bottom:498.626667pt;}
.y12d{bottom:498.946667pt;}
.y22{bottom:499.426667pt;}
.y86{bottom:500.706667pt;}
.y16d{bottom:504.226667pt;}
.y1c8{bottom:506.946667pt;}
.y5a{bottom:509.506667pt;}
.y129{bottom:513.506667pt;}
.y10b{bottom:514.306667pt;}
.y198{bottom:515.426667pt;}
.y21{bottom:516.226667pt;}
.y13c{bottom:517.346667pt;}
.y85{bottom:517.506667pt;}
.yd6{bottom:519.106667pt;}
.yad{bottom:520.706667pt;}
.y1c7{bottom:523.746667pt;}
.y59{bottom:526.306667pt;}
.y16c{bottom:528.866667pt;}
.y197{bottom:532.386667pt;}
.y20{bottom:533.026667pt;}
.y84{bottom:534.306667pt;}
.yd5{bottom:536.066667pt;}
.yac{bottom:537.693333pt;}
.y1c6{bottom:540.733333pt;}
.y16b{bottom:545.853333pt;}
.y108{bottom:548.733333pt;}
.y196{bottom:549.213333pt;}
.y58{bottom:551.133333pt;}
.y83{bottom:551.293333pt;}
.yd4{bottom:553.053333pt;}
.y12b{bottom:555.133333pt;}
.y1c5{bottom:557.533333pt;}
.y1f{bottom:557.853333pt;}
.y16a{bottom:562.813333pt;}
.yab{bottom:563.613333pt;}
.y195{bottom:566.173333pt;}
.y57{bottom:568.093333pt;}
.y109{bottom:570.013333pt;}
.y1c4{bottom:574.333333pt;}
.y1e{bottom:574.813333pt;}
.y82{bottom:575.933333pt;}
.yd3{bottom:577.693333pt;}
.y169{bottom:579.613333pt;}
.yaa{bottom:580.573333pt;}
.y194{bottom:582.973333pt;}
.y56{bottom:585.053333pt;}
.y1c3{bottom:591.293333pt;}
.y1d{bottom:591.773333pt;}
.y13b{bottom:592.893333pt;}
.y81{bottom:593.053333pt;}
.yd2{bottom:594.653333pt;}
.y168{bottom:596.573333pt;}
.ya9{bottom:597.373333pt;}
.y127{bottom:597.533333pt;}
.y193{bottom:599.933333pt;}
.y55{bottom:601.853333pt;}
.y105{bottom:604.413333pt;}
.y1c2{bottom:608.093333pt;}
.y1c{bottom:608.573333pt;}
.y80{bottom:609.853333pt;}
.yd1{bottom:611.613333pt;}
.y167{bottom:613.373333pt;}
.y192{bottom:616.733333pt;}
.y128{bottom:622.493333pt;}
.ya8{bottom:623.293333pt;}
.y1c1{bottom:625.053333pt;}
.y1b{bottom:625.373333pt;}
.y107{bottom:625.853333pt;}
.y54{bottom:626.493333pt;}
.y7f{bottom:626.653333pt;}
.y191{bottom:633.533333pt;}
.yd0{bottom:636.253333pt;}
.ya7{bottom:640.253333pt;}
.y1c0{bottom:641.853333pt;}
.y1a{bottom:642.333333pt;}
.y166{bottom:643.453333pt;}
.y53{bottom:643.613333pt;}
.y123{bottom:647.933333pt;}
.y190{bottom:650.493333pt;}
.ycf{bottom:653.373333pt;}
.ya6{bottom:657.053333pt;}
.y1bf{bottom:658.653333pt;}
.y19{bottom:659.133333pt;}
.y101{bottom:660.253333pt;}
.y52{bottom:660.413333pt;}
.y18f{bottom:667.293333pt;}
.y7e{bottom:668.253333pt;}
.yce{bottom:670.173333pt;}
.y126{bottom:672.893333pt;}
.y1be{bottom:675.613333pt;}
.y51{bottom:677.373333pt;}
.y104{bottom:681.533333pt;}
.ya5{bottom:682.813333pt;}
.y18{bottom:683.933333pt;}
.y18e{bottom:684.253333pt;}
.y13a{bottom:685.373333pt;}
.ycd{bottom:686.973333pt;}
.y1bd{bottom:692.413333pt;}
.y7d{bottom:693.213333pt;}
.y153{bottom:694.173333pt;}
.y121{bottom:698.333333pt;}
.ya4{bottom:699.933333pt;}
.y17{bottom:700.893333pt;}
.y18d{bottom:701.053333pt;}
.y50{bottom:702.013333pt;}
.y139{bottom:702.173333pt;}
.y1bc{bottom:709.373333pt;}
.y7c{bottom:710.173333pt;}
.y165{bottom:710.973333pt;}
.ycc{bottom:711.773333pt;}
.y37{bottom:712.893333pt;}
.yfe{bottom:715.933333pt;}
.ya3{bottom:716.733333pt;}
.y16{bottom:717.693333pt;}
.y18c{bottom:717.853333pt;}
.y152{bottom:718.813333pt;}
.y4f{bottom:718.973333pt;}
.y122{bottom:723.293333pt;}
.y1bb{bottom:726.173333pt;}
.y138{bottom:726.813333pt;}
.y7b{bottom:726.973333pt;}
.ya2{bottom:733.533333pt;}
.y18b{bottom:734.813333pt;}
.y164{bottom:735.773333pt;}
.y4e{bottom:735.933333pt;}
.ycb{bottom:736.573333pt;}
.y100{bottom:737.213333pt;}
.y39{bottom:737.904077pt;}
.y15{bottom:742.493333pt;}
.y1ba{bottom:742.973333pt;}
.y7a{bottom:743.933333pt;}
.y11e{bottom:748.733333pt;}
.y18a{bottom:751.613333pt;}
.y4d{bottom:752.733333pt;}
.yca{bottom:753.693333pt;}
.y14{bottom:758.813333pt;}
.ya1{bottom:759.453333pt;}
.y1b9{bottom:759.933333pt;}
.y163{bottom:760.573333pt;}
.y79{bottom:760.733333pt;}
.y189{bottom:768.573333pt;}
.y4c{bottom:769.693333pt;}
.yc9{bottom:770.493333pt;}
.yf9{bottom:771.613333pt;}
.y13{bottom:772.573333pt;}
.y11f{bottom:773.693333pt;}
.ya0{bottom:776.453333pt;}
.y1b8{bottom:776.773333pt;}
.y78{bottom:777.733333pt;}
.y188{bottom:785.413333pt;}
.y12{bottom:786.533333pt;}
.yfb{bottom:793.093333pt;}
.y9f{bottom:793.253333pt;}
.y1b7{bottom:793.733333pt;}
.y77{bottom:794.533333pt;}
.yc8{bottom:795.333333pt;}
.y11b{bottom:799.173333pt;}
.y10{bottom:800.293333pt;}
.y187{bottom:802.213333pt;}
.y1e1{bottom:802.373333pt;}
.y4b{bottom:803.493333pt;}
.y11{bottom:804.293333pt;}
.y1b6{bottom:810.533333pt;}
.y137{bottom:811.493333pt;}
.yc7{bottom:812.293333pt;}
.yf{bottom:814.693333pt;}
.y9e{bottom:819.013333pt;}
.y186{bottom:819.173333pt;}
.y76{bottom:819.333333pt;}
.y151{bottom:820.293333pt;}
.y11d{bottom:824.133333pt;}
.yf4{bottom:827.333333pt;}
.y1b5{bottom:827.493333pt;}
.y4a{bottom:828.133333pt;}
.y162{bottom:828.293333pt;}
.yc6{bottom:829.093333pt;}
.ye{bottom:831.813333pt;}
.y185{bottom:835.973333pt;}
.y9d{bottom:836.133333pt;}
.y75{bottom:836.293333pt;}
.yd{bottom:837.093333pt;}
.y1b4{bottom:844.293333pt;}
.y150{bottom:844.933333pt;}
.y49{bottom:845.093333pt;}
.yf7{bottom:849.413333pt;}
.y115{bottom:849.573333pt;}
.yb{bottom:850.213333pt;}
.y9c{bottom:852.933333pt;}
.y74{bottom:853.093333pt;}
.yc5{bottom:853.893333pt;}
.yc{bottom:855.493333pt;}
.y184{bottom:860.773333pt;}
.y1b3{bottom:861.093333pt;}
.y48{bottom:862.053333pt;}
.ya{bottom:868.613333pt;}
.y161{bottom:869.893333pt;}
.y73{bottom:870.053333pt;}
.yc4{bottom:870.853333pt;}
.y118{bottom:875.173333pt;}
.y1b2{bottom:878.053333pt;}
.y9b{bottom:878.693333pt;}
.y14f{bottom:878.853333pt;}
.y183{bottom:879.653333pt;}
.yf0{bottom:883.813333pt;}
.y47{bottom:886.693333pt;}
.y72{bottom:886.853333pt;}
.y9{bottom:888.933333pt;}
.y160{bottom:894.693333pt;}
.y1b1{bottom:894.853333pt;}
.yc3{bottom:895.653333pt;}
.y9a{bottom:895.813333pt;}
.y182{bottom:896.613333pt;}
.y111{bottom:900.613333pt;}
.y46{bottom:903.813333pt;}
.y15f{bottom:911.813333pt;}
.y99{bottom:912.613333pt;}
.y8{bottom:916.133333pt;}
.y14e{bottom:920.453333pt;}
.y45{bottom:920.613333pt;}
.y181{bottom:921.253333pt;}
.y136{bottom:928.453333pt;}
.y15e{bottom:928.613333pt;}
.yef{bottom:929.253333pt;}
.y98{bottom:929.413333pt;}
.y44{bottom:937.413333pt;}
.y7{bottom:943.493333pt;}
.y135{bottom:945.413333pt;}
.y180{bottom:946.213333pt;}
.y97{bottom:946.373333pt;}
.yee{bottom:954.213333pt;}
.y43{bottom:954.373333pt;}
.y71{bottom:962.213333pt;}
.y134{bottom:962.373333pt;}
.y17f{bottom:963.173333pt;}
.y6{bottom:970.693333pt;}
.y96{bottom:971.013333pt;}
.yed{bottom:971.173333pt;}
.y42{bottom:979.013333pt;}
.y70{bottom:979.173333pt;}
.y17e{bottom:987.973333pt;}
.yec{bottom:988.133333pt;}
.y95{bottom:995.973333pt;}
.y41{bottom:996.133333pt;}
.y4{bottom:997.253333pt;}
.yeb{bottom:1012.800000pt;}
.y40{bottom:1012.960000pt;}
.y3{bottom:1021.920000pt;}
.y3e{bottom:1036.480000pt;}
.y2{bottom:1046.400000pt;}
.y3d{bottom:1052.320000pt;}
.y3c{bottom:1064.480000pt;}
.y1{bottom:1067.840000pt;}
.h18{height:21.280000pt;}
.h13{height:21.440000pt;}
.h16{height:21.472000pt;}
.ha{height:22.218750pt;}
.h2{height:22.281250pt;}
.h1c{height:24.800000pt;}
.h20{height:24.832000pt;}
.h1d{height:24.960000pt;}
.h7{height:31.050312pt;}
.h9{height:33.328125pt;}
.h15{height:33.600000pt;}
.h11{height:33.760000pt;}
.h19{height:33.792000pt;}
.hf{height:38.224186pt;}
.h10{height:38.441250pt;}
.h22{height:41.632000pt;}
.h1a{height:41.760000pt;}
.hb{height:42.636250pt;}
.h6{height:46.343750pt;}
.h1e{height:49.760000pt;}
.h1f{height:49.792000pt;}
.h1b{height:50.400000pt;}
.he{height:52.744791pt;}
.h8{height:52.785000pt;}
.h17{height:55.040000pt;}
.h14{height:55.072000pt;}
.h12{height:55.840000pt;}
.h4{height:57.375000pt;}
.h5{height:72.609375pt;}
.h3{height:76.308750pt;}
.h21{height:83.392000pt;}
.hd{height:337.935923pt;}
.hc{height:362.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:14.605062pt;}
.w3{width:23.872000pt;}
.wf{width:39.840000pt;}
.we{width:42.560000pt;}
.w7{width:44.160000pt;}
.wd{width:58.592000pt;}
.w8{width:70.240000pt;}
.w9{width:70.272000pt;}
.w10{width:71.392000pt;}
.w6{width:81.472000pt;}
.wa{width:84.640000pt;}
.w5{width:102.880000pt;}
.wc{width:116.160000pt;}
.w12{width:126.112000pt;}
.w11{width:128.000000pt;}
.wb{width:128.992000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x18{left:-2.080000pt;}
.x0{left:0.000000pt;}
.x23{left:4.640000pt;}
.x1a{left:11.073119pt;}
.x17{left:65.280000pt;}
.x19{left:69.900000pt;}
.x4d{left:108.511988pt;}
.x1{left:115.231988pt;}
.x2{left:116.511988pt;}
.x1d{left:117.471988pt;}
.x40{left:119.551988pt;}
.x4e{left:124.671988pt;}
.x6{left:127.551988pt;}
.x20{left:139.226655pt;}
.x3{left:143.226655pt;}
.x45{left:152.826655pt;}
.x4{left:160.986655pt;}
.x43{left:161.946655pt;}
.x22{left:163.226655pt;}
.x5{left:165.626655pt;}
.x12{left:193.786655pt;}
.x11{left:200.186655pt;}
.x24{left:218.106667pt;}
.x2a{left:231.386667pt;}
.x49{left:240.186655pt;}
.x13{left:243.546655pt;}
.x3b{left:275.426655pt;}
.x4a{left:279.586655pt;}
.x3d{left:281.826655pt;}
.x2b{left:289.986667pt;}
.x25{left:299.586667pt;}
.x44{left:312.226655pt;}
.x1b{left:325.506655pt;}
.x2c{left:332.546667pt;}
.xe{left:333.506655pt;}
.xd{left:339.426655pt;}
.x26{left:343.746667pt;}
.x1c{left:359.906655pt;}
.xb{left:368.226655pt;}
.x2d{left:372.386667pt;}
.xa{left:373.666655pt;}
.x39{left:385.026655pt;}
.x7{left:397.986655pt;}
.xf{left:399.906655pt;}
.x14{left:401.986655pt;}
.x21{left:412.226655pt;}
.x27{left:413.986667pt;}
.x10{left:424.093322pt;}
.x2e{left:443.773333pt;}
.x30{left:464.733322pt;}
.xc{left:468.733322pt;}
.x48{left:470.013322pt;}
.x35{left:473.213322pt;}
.x28{left:484.253333pt;}
.x3c{left:494.333322pt;}
.x46{left:499.933322pt;}
.x4c{left:522.173322pt;}
.x38{left:536.253322pt;}
.x42{left:541.213322pt;}
.x1f{left:567.453322pt;}
.x29{left:568.893333pt;}
.x2f{left:571.773333pt;}
.x9{left:577.533322pt;}
.x8{left:583.013322pt;}
.x32{left:593.253322pt;}
.x37{left:598.373322pt;}
.x36{left:605.253322pt;}
.x3e{left:608.133322pt;}
.x41{left:631.493322pt;}
.x4b{left:655.653322pt;}
.x3a{left:657.893322pt;}
.x34{left:661.573322pt;}
.x47{left:676.933322pt;}
.x33{left:679.173322pt;}
.x1e{left:681.093322pt;}
.x16{left:689.893322pt;}
.x15{left:691.173322pt;}
.x3f{left:693.253322pt;}
.x31{left:694.533322pt;}
}




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