
    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_825409fe363f90ebf52532f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_f7c2716f485a61421516cc60.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_66e6ef3a66d24018f23227d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_46104273736223b9cd68ccb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_7130941b90e45265166d9c34.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_883f479401832c7c1193ac34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711000;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_8cf46fc223a47c1826b1a04d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_322662cc87e0bf28a66a51c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.051000;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_b8bb7b7c32241c1241d1de81.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972000;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_f0a3f17aaed6d414f2fc43b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911000;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_98545fb8b6e7c4bdb01ebfa8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_72863ffb5a88f5fc7bb91082.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946000;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:ffd;src:url('chunks/assets/font_770abaa5ae61ce92c347062d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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:ffe;src:url('chunks/assets/font_f5724154ab63e3b302d737f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.930000;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:fff;src:url('chunks/assets/font_2b16b513b44a42075b30dfb1.woff2')format("woff");}.fff{font-family:fff;line-height:0.721000;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:ff10;src:url('chunks/assets/font_744a9e675d10307cbb7c3b97.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.949000;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);}
.m1{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);}
.v1{vertical-align:-4.422000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.630000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.119700px;}
.ls5{letter-spacing:0.252000px;}
.lsb{letter-spacing:0.307800px;}
.ls7{letter-spacing:0.342000px;}
.ls4{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.899988px;}
.ls9{letter-spacing:1.054500px;}
.ls8{letter-spacing:1.225494px;}
.ls6{letter-spacing:1.311000px;}
.ls3{letter-spacing:30.084362px;}
.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;}
}
.ws9{word-spacing:-14.427000px;}
.ws2{word-spacing:-14.301000px;}
.ws0{word-spacing:-13.986000px;}
.ws6{word-spacing:-13.671000px;}
.ws8{word-spacing:-13.332121px;}
.wsb{word-spacing:-13.053000px;}
.wsa{word-spacing:-12.939000px;}
.ws7{word-spacing:-11.172000px;}
.ws3{word-spacing:-8.819882px;}
.ws4{word-spacing:-8.231765px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:149.111251px;}
._2{margin-left:-5.040000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.080000px;}
._14{width:1.776600px;}
._13{width:3.213000px;}
._9{width:4.298400px;}
._8{width:5.308200px;}
._7{width:6.505200px;}
._5{width:7.623000px;}
._a{width:8.838000px;}
._4{width:10.315200px;}
._17{width:11.551800px;}
._d{width:12.976200px;}
._e{width:14.067000px;}
._12{width:15.238800px;}
._16{width:16.361100px;}
._f{width:17.377200px;}
._10{width:18.381600px;}
._18{width:19.640700px;}
._11{width:20.725200px;}
._15{width:21.955500px;}
._1b{width:23.013900px;}
._23{width:24.740100px;}
._22{width:26.113500px;}
._20{width:27.146700px;}
._21{width:28.791000px;}
._2d{width:29.855700px;}
._30{width:30.906300px;}
._c{width:32.605200px;}
._b{width:33.636600px;}
._1e{width:36.099000px;}
._1d{width:37.359000px;}
._2f{width:40.167900px;}
._1c{width:55.024200px;}
._2e{width:74.308200px;}
._1a{width:82.504696px;}
._6{width:87.893400px;}
._19{width:95.027723px;}
._1f{width:158.358110px;}
._28{width:228.255599px;}
._2a{width:350.782386px;}
._29{width:352.318367px;}
._25{width:393.929795px;}
._2b{width:402.710700px;}
._27{width:409.008221px;}
._26{width:459.695587px;}
._24{width:500.576676px;}
._2c{width:502.789449px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(4,133,127);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.998800px;}
.fs8{font-size:44.999400px;}
.fs9{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:50.999400px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fsa{font-size:66.000600px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:36.057278px;}
.y48{bottom:48.047935px;}
.y10b{bottom:59.017200px;}
.y47{bottom:60.038593px;}
.y2{bottom:67.597501px;}
.y46{bottom:72.028200px;}
.y1{bottom:84.097501px;}
.yce{bottom:86.402325px;}
.y18f{bottom:86.403375px;}
.yeb{bottom:86.406000px;}
.y95{bottom:86.406300px;}
.y14e{bottom:86.408475px;}
.y16d{bottom:86.408775px;}
.y74{bottom:87.169575px;}
.y1a5{bottom:87.174225px;}
.yb2{bottom:87.425475px;}
.y42{bottom:88.525950px;}
.y266{bottom:91.166475px;}
.y1cd{bottom:96.859950px;}
.y1fe{bottom:97.883850px;}
.ycd{bottom:105.875625px;}
.y18e{bottom:105.878250px;}
.yea{bottom:105.880875px;}
.y94{bottom:105.881175px;}
.y14d{bottom:105.883350px;}
.y16c{bottom:105.883650px;}
.y73{bottom:106.642875px;}
.y1a4{bottom:106.647525px;}
.yb1{bottom:106.983825px;}
.y232{bottom:107.153700px;}
.y265{bottom:107.663700px;}
.y1cc{bottom:113.358600px;}
.y1fd{bottom:114.381075px;}
.y231{bottom:123.650925px;}
.y264{bottom:124.160925px;}
.ycc{bottom:125.433975px;}
.y18d{bottom:125.436600px;}
.ye9{bottom:125.439225px;}
.y93{bottom:125.439525px;}
.y14c{bottom:125.441700px;}
.y16b{bottom:125.442000px;}
.y72{bottom:126.117750px;}
.y1a3{bottom:126.122400px;}
.yb0{bottom:126.458700px;}
.y1cb{bottom:129.855825px;}
.y1fc{bottom:130.878300px;}
.y122{bottom:133.605225px;}
.y41{bottom:137.765925px;}
.y230{bottom:140.148150px;}
.y263{bottom:140.658150px;}
.ycb{bottom:144.908850px;}
.y18c{bottom:144.909900px;}
.ye8{bottom:144.912525px;}
.y92{bottom:144.912825px;}
.y14b{bottom:144.915000px;}
.y16a{bottom:144.915300px;}
.y71{bottom:145.676100px;}
.y1a2{bottom:145.680750px;}
.yaf{bottom:145.932000px;}
.y1fb{bottom:147.376950px;}
.y121{bottom:153.165150px;}
.y22f{bottom:156.646800px;}
.y1ca{bottom:156.898050px;}
.y262{bottom:157.156800px;}
.y40{bottom:157.240800px;}
.y1fa{bottom:163.874175px;}
.yca{bottom:164.382150px;}
.y18b{bottom:164.384775px;}
.ye7{bottom:164.387400px;}
.y91{bottom:164.387700px;}
.y14a{bottom:164.389875px;}
.y169{bottom:164.390175px;}
.y70{bottom:165.149400px;}
.y1a1{bottom:165.155625px;}
.yae{bottom:165.490350px;}
.y120{bottom:172.638450px;}
.y22e{bottom:173.144025px;}
.y1c9{bottom:173.395275px;}
.y261{bottom:173.654025px;}
.y3f{bottom:176.714100px;}
.y1f9{bottom:180.371400px;}
.yc9{bottom:183.855450px;}
.y18a{bottom:183.858075px;}
.ye6{bottom:183.860700px;}
.y90{bottom:183.861000px;}
.y149{bottom:183.863175px;}
.y168{bottom:183.863475px;}
.y6f{bottom:184.624275px;}
.y1a0{bottom:184.628925px;}
.yad{bottom:184.965225px;}
.y22d{bottom:189.641250px;}
.y1c8{bottom:189.892500px;}
.y260{bottom:190.151250px;}
.y11f{bottom:192.111750px;}
.y3e{bottom:196.272450px;}
.y1f8{bottom:196.868625px;}
.yc8{bottom:203.415375px;}
.y189{bottom:203.416425px;}
.ye5{bottom:203.419050px;}
.y8f{bottom:203.419350px;}
.y148{bottom:203.421525px;}
.y167{bottom:203.421825px;}
.y6e{bottom:204.097575px;}
.y19f{bottom:204.187275px;}
.yac{bottom:204.438525px;}
.y22c{bottom:206.138475px;}
.y25f{bottom:206.648475px;}
.y11e{bottom:211.671675px;}
.y1f7{bottom:213.367275px;}
.y3d{bottom:215.747325px;}
.y1c7{bottom:219.147000px;}
.y22b{bottom:222.637125px;}
.yc7{bottom:222.888675px;}
.y188{bottom:222.891300px;}
.ye4{bottom:222.893925px;}
.y8e{bottom:222.894225px;}
.y147{bottom:222.896400px;}
.y25e{bottom:223.147125px;}
.y6d{bottom:223.655925px;}
.y19e{bottom:223.662150px;}
.yab{bottom:223.996875px;}
.y1f6{bottom:229.864500px;}
.y11d{bottom:231.144975px;}
.y3c{bottom:235.220625px;}
.y22a{bottom:239.134350px;}
.y25d{bottom:239.644350px;}
.yc6{bottom:242.361975px;}
.y187{bottom:242.364600px;}
.ye3{bottom:242.367225px;}
.y8d{bottom:242.367525px;}
.y146{bottom:242.369700px;}
.y166{bottom:242.625150px;}
.y6c{bottom:243.130800px;}
.y19d{bottom:243.135450px;}
.yaa{bottom:243.471750px;}
.y1f5{bottom:246.361725px;}
.y11c{bottom:250.618275px;}
.y3b{bottom:254.778975px;}
.y229{bottom:255.631575px;}
.y25c{bottom:256.141575px;}
.yc5{bottom:261.921900px;}
.y186{bottom:261.922950px;}
.ye2{bottom:261.925575px;}
.y8c{bottom:261.925875px;}
.y145{bottom:261.928050px;}
.y165{bottom:262.098450px;}
.y6b{bottom:262.604100px;}
.y19c{bottom:262.608750px;}
.y1f4{bottom:262.858950px;}
.ya9{bottom:262.945050px;}
.y1c6{bottom:267.874500px;}
.y11b{bottom:270.178200px;}
.y228{bottom:272.128800px;}
.y25b{bottom:272.638800px;}
.y3a{bottom:274.253850px;}
.y1f3{bottom:279.357600px;}
.y185{bottom:281.397825px;}
.ye1{bottom:281.400450px;}
.y8b{bottom:281.400750px;}
.y144{bottom:281.402925px;}
.y164{bottom:281.573325px;}
.y6a{bottom:282.162450px;}
.y19b{bottom:282.168675px;}
.ya8{bottom:282.418350px;}
.y14{bottom:286.426501px;}
.y227{bottom:288.627450px;}
.y25a{bottom:289.137450px;}
.y11a{bottom:289.651500px;}
.y39{bottom:293.727150px;}
.y1f2{bottom:295.854825px;}
.y1c5{bottom:297.127500px;}
.y184{bottom:300.871125px;}
.ye0{bottom:300.873750px;}
.y8a{bottom:300.874050px;}
.y143{bottom:300.876225px;}
.y163{bottom:301.131675px;}
.y69{bottom:301.637325px;}
.y19a{bottom:301.641975px;}
.yc4{bottom:301.974000px;}
.ya7{bottom:301.978275px;}
.y226{bottom:305.124675px;}
.y259{bottom:305.634675px;}
.y119{bottom:309.124800px;}
.y1f1{bottom:312.352050px;}
.y38{bottom:313.285500px;}
.y183{bottom:320.429475px;}
.ydf{bottom:320.432100px;}
.y89{bottom:320.432400px;}
.y142{bottom:320.434575px;}
.y162{bottom:320.604975px;}
.y68{bottom:321.110625px;}
.y199{bottom:321.115275px;}
.ya6{bottom:321.451575px;}
.yc3{bottom:321.534000px;}
.y225{bottom:321.621900px;}
.y258{bottom:322.131900px;}
.y10a{bottom:327.658950px;}
.y118{bottom:328.684725px;}
.y1f0{bottom:328.849275px;}
.y37{bottom:332.760375px;}
.y224{bottom:338.119125px;}
.y257{bottom:338.629125px;}
.y182{bottom:339.904350px;}
.y88{bottom:339.907275px;}
.y141{bottom:339.909450px;}
.y161{bottom:340.079850px;}
.y67{bottom:340.668975px;}
.y198{bottom:340.675200px;}
.ya5{bottom:340.924875px;}
.yc2{bottom:341.008500px;}
.y1ef{bottom:345.347925px;}
.y109{bottom:347.133825px;}
.y117{bottom:348.158025px;}
.yde{bottom:349.686150px;}
.y13{bottom:350.776501px;}
.y36{bottom:352.233675px;}
.y223{bottom:354.617775px;}
.y256{bottom:355.127775px;}
.yc1{bottom:359.377200px;}
.y181{bottom:359.377650px;}
.y87{bottom:359.380575px;}
.y140{bottom:359.382750px;}
.y160{bottom:359.638200px;}
.y66{bottom:360.143850px;}
.y197{bottom:360.148500px;}
.ya4{bottom:360.484800px;}
.y1c4{bottom:360.658500px;}
.y1ee{bottom:361.845150px;}
.y116{bottom:367.631325px;}
.y222{bottom:371.115000px;}
.y255{bottom:371.625000px;}
.y35{bottom:371.706975px;}
.y108{bottom:376.386300px;}
.y1ed{bottom:378.342375px;}
.y180{bottom:378.850950px;}
.y86{bottom:378.853875px;}
.y13f{bottom:378.856050px;}
.y15f{bottom:379.111500px;}
.y65{bottom:379.617150px;}
.y196{bottom:379.621800px;}
.ya3{bottom:379.958100px;}
.yc0{bottom:380.041500px;}
.y1c3{bottom:380.131800px;}
.y115{bottom:387.106200px;}
.y221{bottom:387.612225px;}
.y254{bottom:388.122225px;}
.y34{bottom:391.266900px;}
.y1ec{bottom:394.839600px;}
.y17f{bottom:398.410875px;}
.y85{bottom:398.413800px;}
.y13e{bottom:398.415975px;}
.y15e{bottom:398.586375px;}
.ydd{bottom:398.923800px;}
.y64{bottom:399.175500px;}
.y195{bottom:399.181725px;}
.ya2{bottom:399.431400px;}
.ybf{bottom:399.514500px;}
.y1c2{bottom:399.691725px;}
.y220{bottom:404.109450px;}
.y253{bottom:404.619450px;}
.y114{bottom:406.664550px;}
.y33{bottom:410.740200px;}
.y1eb{bottom:411.338250px;}
.y12{bottom:415.126501px;}
.y17e{bottom:417.884175px;}
.y84{bottom:417.887100px;}
.y15d{bottom:418.144725px;}
.ydc{bottom:418.397100px;}
.y63{bottom:418.650375px;}
.y194{bottom:418.655025px;}
.ybe{bottom:418.989000px;}
.ya1{bottom:418.991325px;}
.y1c1{bottom:419.165025px;}
.y21f{bottom:420.608100px;}
.y252{bottom:421.118100px;}
.y113{bottom:426.137850px;}
.y1ea{bottom:427.835475px;}
.y32{bottom:430.213500px;}
.y107{bottom:431.660925px;}
.y21e{bottom:437.105325px;}
.y17d{bottom:437.357475px;}
.y83{bottom:437.360400px;}
.y15c{bottom:437.618025px;}
.y251{bottom:437.699400px;}
.ydb{bottom:437.870400px;}
.y62{bottom:438.123675px;}
.y193{bottom:438.128325px;}
.ya0{bottom:438.464625px;}
.y1c0{bottom:438.638325px;}
.y1e9{bottom:444.332700px;}
.y112{bottom:445.612725px;}
.y13d{bottom:448.417500px;}
.y106{bottom:451.135800px;}
.y21d{bottom:453.688050px;}
.y250{bottom:454.198050px;}
.y17c{bottom:456.917400px;}
.ybd{bottom:456.919350px;}
.y82{bottom:456.920325px;}
.y15b{bottom:457.092900px;}
.yda{bottom:457.430325px;}
.y61{bottom:457.596975px;}
.y192{bottom:457.603200px;}
.y9f{bottom:457.937925px;}
.y1bf{bottom:458.198250px;}
.y31{bottom:459.468000px;}
.y1e8{bottom:460.829925px;}
.y111{bottom:465.171075px;}
.y13c{bottom:467.892375px;}
.y21c{bottom:470.185275px;}
.y105{bottom:470.609100px;}
.y24f{bottom:470.695275px;}
.y17b{bottom:476.390700px;}
.ybc{bottom:476.392650px;}
.y81{bottom:476.393625px;}
.y15a{bottom:476.566200px;}
.yd9{bottom:476.903625px;}
.y60{bottom:477.156900px;}
.y191{bottom:477.161550px;}
.y1e7{bottom:477.328575px;}
.y9e{bottom:477.497850px;}
.y1be{bottom:477.671550px;}
.y11{bottom:482.407500px;}
.y21b{bottom:486.682500px;}
.y24e{bottom:487.192500px;}
.y13b{bottom:487.365675px;}
.y104{bottom:490.167450px;}
.y1e6{bottom:493.909875px;}
.y17a{bottom:495.864000px;}
.ybb{bottom:495.865950px;}
.y80{bottom:495.866925px;}
.y159{bottom:496.124550px;}
.yd8{bottom:496.376925px;}
.y5f{bottom:496.630200px;}
.y190{bottom:496.634850px;}
.y9d{bottom:496.971150px;}
.y1bd{bottom:497.144850px;}
.y21a{bottom:503.179725px;}
.y24d{bottom:503.689725px;}
.y13a{bottom:506.924025px;}
.y103{bottom:509.642325px;}
.y1e5{bottom:510.408525px;}
.yba{bottom:515.425875px;}
.y7f{bottom:515.426850px;}
.yd7{bottom:515.936850px;}
.y5e{bottom:516.103500px;}
.y110{bottom:516.109725px;}
.y9c{bottom:516.444450px;}
.y1bc{bottom:516.619725px;}
.y29{bottom:517.294050px;}
.y219{bottom:519.678375px;}
.y24c{bottom:520.188375px;}
.y179{bottom:525.118500px;}
.y158{bottom:525.378600px;}
.y139{bottom:526.398900px;}
.y1e4{bottom:526.905750px;}
.y102{bottom:529.115625px;}
.y28{bottom:532.261500px;}
.yb9{bottom:534.899175px;}
.y7e{bottom:534.900150px;}
.yd6{bottom:535.410150px;}
.y10f{bottom:535.668075px;}
.y9b{bottom:535.919325px;}
.y218{bottom:536.175600px;}
.y1bb{bottom:536.178075px;}
.y24b{bottom:536.685600px;}
.y1e3{bottom:543.402975px;}
.y10{bottom:543.826501px;}
.y5d{bottom:545.358000px;}
.y138{bottom:545.872200px;}
.y27{bottom:547.314000px;}
.y101{bottom:548.673975px;}
.y217{bottom:552.672825px;}
.y24a{bottom:553.182825px;}
.yb8{bottom:554.372475px;}
.y7d{bottom:554.373450px;}
.yd5{bottom:554.883450px;}
.y10e{bottom:555.141375px;}
.y9a{bottom:555.477675px;}
.y1ba{bottom:555.651375px;}
.y1e2{bottom:559.900200px;}
.y26{bottom:562.280100px;}
.y137{bottom:565.432125px;}
.y100{bottom:568.148850px;}
.y216{bottom:569.170050px;}
.y249{bottom:569.680050px;}
.yb7{bottom:573.932400px;}
.y7c{bottom:573.933375px;}
.y178{bottom:574.361100px;}
.yd4{bottom:574.443375px;}
.y157{bottom:574.446150px;}
.y10d{bottom:574.616250px;}
.y99{bottom:574.950975px;}
.y1b9{bottom:575.126250px;}
.y1e1{bottom:576.398850px;}
.y25{bottom:577.332600px;}
.y136{bottom:584.905425px;}
.y215{bottom:585.668700px;}
.y248{bottom:586.178700px;}
.yff{bottom:587.622150px;}
.y24{bottom:592.298700px;}
.y1e0{bottom:592.896075px;}
.yb6{bottom:593.405700px;}
.y7b{bottom:593.406675px;}
.y177{bottom:593.834400px;}
.yd3{bottom:593.916675px;}
.y156{bottom:593.919450px;}
.y10c{bottom:594.174600px;}
.y98{bottom:594.425850px;}
.y1b8{bottom:594.684600px;}
.y214{bottom:602.165925px;}
.y247{bottom:602.675925px;}
.y135{bottom:604.378725px;}
.yfe{bottom:607.180500px;}
.y23{bottom:607.266150px;}
.y1df{bottom:609.393300px;}
.yf{bottom:611.107500px;}
.yb5{bottom:612.879000px;}
.y7a{bottom:612.879975px;}
.yd2{bottom:613.389975px;}
.y155{bottom:613.392750px;}
.y5c{bottom:613.647900px;}
.y97{bottom:613.984200px;}
.y1b7{bottom:614.157900px;}
.y213{bottom:618.663150px;}
.y246{bottom:619.173150px;}
.y22{bottom:622.318650px;}
.y134{bottom:623.938650px;}
.y1de{bottom:625.890525px;}
.y79{bottom:632.354850px;}
.yd1{bottom:632.864850px;}
.y176{bottom:632.867625px;}
.y154{bottom:632.952675px;}
.y5b{bottom:633.122775px;}
.y96{bottom:633.457500px;}
.y1b6{bottom:633.632775px;}
.y212{bottom:635.160375px;}
.y245{bottom:635.670375px;}
.yfd{bottom:636.435000px;}
.y21{bottom:637.284750px;}
.yb4{bottom:642.132000px;}
.y1dd{bottom:642.389175px;}
.y133{bottom:643.411950px;}
.ye{bottom:645.457501px;}
.y211{bottom:651.659025px;}
.y30{bottom:651.912675px;}
.y78{bottom:651.913200px;}
.y244{bottom:652.169025px;}
.y20{bottom:652.337250px;}
.y175{bottom:652.340925px;}
.yd0{bottom:652.423200px;}
.y153{bottom:652.425975px;}
.y5a{bottom:652.681125px;}
.y1b5{bottom:653.191125px;}
.y1dc{bottom:658.886400px;}
.yd{bottom:660.457501px;}
.y132{bottom:662.885250px;}
.y2f{bottom:665.348907px;}
.y1f{bottom:667.303350px;}
.y210{bottom:668.156250px;}
.y243{bottom:668.666250px;}
.y77{bottom:671.386500px;}
.y174{bottom:671.814225px;}
.ycf{bottom:671.896500px;}
.y152{bottom:671.899275px;}
.y59{bottom:672.154425px;}
.y1b4{bottom:672.664425px;}
.y1db{bottom:675.383625px;}
.yc{bottom:675.457500px;}
.y2e{bottom:678.870338px;}
.yb3{bottom:679.719000px;}
.y1e{bottom:682.270800px;}
.y131{bottom:682.445175px;}
.y20f{bottom:684.653475px;}
.y242{bottom:685.163475px;}
.y173{bottom:691.374150px;}
.y151{bottom:691.459200px;}
.y58{bottom:691.629300px;}
.y1da{bottom:691.880850px;}
.y1b3{bottom:692.139300px;}
.y2d{bottom:692.391769px;}
.y1d{bottom:697.323300px;}
.y76{bottom:700.639500px;}
.y20e{bottom:701.150700px;}
.y241{bottom:701.660700px;}
.y130{bottom:701.918475px;}
.y2c{bottom:705.912000px;}
.y1d9{bottom:708.379500px;}
.y172{bottom:710.847450px;}
.y150{bottom:710.932500px;}
.y57{bottom:711.102600px;}
.y1b2{bottom:711.612600px;}
.y1c{bottom:712.289400px;}
.y20d{bottom:717.649350px;}
.y240{bottom:718.159350px;}
.y2b{bottom:719.349125px;}
.y12f{bottom:721.391775px;}
.y1d8{bottom:724.876725px;}
.y1b{bottom:727.341900px;}
.y171{bottom:730.320750px;}
.y14f{bottom:730.405800px;}
.y56{bottom:730.660950px;}
.y1b1{bottom:731.170950px;}
.yfc{bottom:731.765183px;}
.y20c{bottom:734.146575px;}
.y23f{bottom:734.656575px;}
.y12e{bottom:740.866650px;}
.y1d7{bottom:741.373950px;}
.y1a{bottom:742.308000px;}
.yfb{bottom:745.201415px;}
.y170{bottom:749.880675px;}
.y55{bottom:750.135825px;}
.y20b{bottom:750.643800px;}
.y1b0{bottom:750.645825px;}
.y23e{bottom:751.153800px;}
.yb{bottom:756.817498px;}
.y2a{bottom:756.850500px;}
.y19{bottom:757.275000px;}
.y1d6{bottom:757.871175px;}
.yfa{bottom:758.722846px;}
.y12d{bottom:760.425000px;}
.y20a{bottom:767.141025px;}
.y23d{bottom:767.651025px;}
.y16f{bottom:769.353975px;}
.y54{bottom:769.609125px;}
.y1af{bottom:770.119125px;}
.yf9{bottom:772.243077px;}
.y1d5{bottom:774.369825px;}
.y12c{bottom:779.898300px;}
.y209{bottom:783.639675px;}
.y23c{bottom:784.149675px;}
.yf8{bottom:785.764508px;}
.ya{bottom:786.817498px;}
.y16e{bottom:788.827275px;}
.y53{bottom:789.167475px;}
.y1ae{bottom:789.677475px;}
.y1d4{bottom:790.867050px;}
.y12b{bottom:799.373175px;}
.y208{bottom:800.136900px;}
.y23b{bottom:800.646900px;}
.y18{bottom:803.536500px;}
.yf7{bottom:804.473474px;}
.y9{bottom:804.817498px;}
.y1d3{bottom:807.364275px;}
.y52{bottom:808.642350px;}
.y1ad{bottom:809.152350px;}
.y207{bottom:816.634125px;}
.y23a{bottom:817.144125px;}
.yf6{bottom:817.994905px;}
.y12a{bottom:818.931525px;}
.y8{bottom:822.817498px;}
.y1d2{bottom:823.861500px;}
.y51{bottom:828.115650px;}
.y1ac{bottom:828.625650px;}
.y17{bottom:830.919000px;}
.yf5{bottom:831.516336px;}
.y206{bottom:833.131350px;}
.y239{bottom:833.641350px;}
.y129{bottom:838.404825px;}
.yf4{bottom:844.951368px;}
.y50{bottom:847.674000px;}
.y1ab{bottom:848.184000px;}
.y205{bottom:849.630000px;}
.y238{bottom:850.140000px;}
.y1d1{bottom:853.114500px;}
.y128{bottom:857.879700px;}
.yf3{bottom:858.472799px;}
.y16{bottom:859.578000px;}
.y204{bottom:866.127225px;}
.y237{bottom:866.637225px;}
.y4f{bottom:867.148875px;}
.y1aa{bottom:867.658875px;}
.yf2{bottom:871.994230px;}
.y7{bottom:875.289002px;}
.y127{bottom:877.438050px;}
.y203{bottom:882.624450px;}
.y236{bottom:883.134450px;}
.y15{bottom:883.644000px;}
.yf1{bottom:885.515661px;}
.y4e{bottom:886.622175px;}
.y1a9{bottom:887.132175px;}
.y126{bottom:896.911350px;}
.yf0{bottom:898.951893px;}
.y202{bottom:899.121675px;}
.y235{bottom:899.631675px;}
.y4d{bottom:906.095475px;}
.y1a8{bottom:906.690525px;}
.yef{bottom:912.473324px;}
.y201{bottom:915.620325px;}
.y234{bottom:916.130325px;}
.y125{bottom:916.386225px;}
.y1d0{bottom:921.401775px;}
.y4c{bottom:925.655400px;}
.y1a7{bottom:926.165400px;}
.yee{bottom:930.415500px;}
.y200{bottom:932.117550px;}
.y233{bottom:932.627550px;}
.y124{bottom:935.859525px;}
.y1cf{bottom:937.899000px;}
.y6{bottom:938.953498px;}
.y4b{bottom:945.128700px;}
.y1a6{bottom:945.638700px;}
.y1ff{bottom:948.614775px;}
.yed{bottom:949.124775px;}
.y45{bottom:955.588304px;}
.y1ce{bottom:964.090500px;}
.y4a{bottom:964.602000px;}
.y123{bottom:965.112000px;}
.yec{bottom:965.622000px;}
.y44{bottom:969.024000px;}
.y5{bottom:970.453498px;}
.y43{bottom:982.545000px;}
.y75{bottom:1005.079500px;}
.y4{bottom:1035.546001px;}
.y3{bottom:1165.122003px;}
.h14{height:30.029142px;}
.hd{height:31.499580px;}
.h13{height:32.174571px;}
.h15{height:32.444567px;}
.h1b{height:33.839577px;}
.hf{height:34.319571px;}
.h12{height:34.607567px;}
.h4{height:36.726562px;}
.hc{height:38.610000px;}
.he{height:38.934000px;}
.h17{height:40.755000px;}
.h2{height:41.317383px;}
.h16{height:45.045000px;}
.h19{height:45.258000px;}
.h1c{height:45.258900px;}
.hb{height:45.423000px;}
.h1a{height:45.594000px;}
.h18{height:45.600000px;}
.h7{height:45.908203px;}
.h10{height:47.586433px;}
.h11{height:50.022000px;}
.h6{height:55.089844px;}
.ha{height:60.564000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.h8{height:1054.488000px;}
.h9{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:89.971650px;}
.xe{left:95.669250px;}
.xf{left:105.022500px;}
.x7{left:108.000000px;}
.xa{left:122.456550px;}
.x4{left:145.650000px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x2{left:231.773996px;}
.xb{left:266.088000px;}
.xc{left:272.125500px;}
.xd{left:275.101463px;}
.x1{left:293.590494px;}
.x9{left:488.466000px;}
.x8{left:514.488000px;}
@media print{
.v1{vertical-align:-3.930667pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106400pt;}
.ls5{letter-spacing:0.224000pt;}
.lsb{letter-spacing:0.273600pt;}
.ls7{letter-spacing:0.304000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.799989pt;}
.ls9{letter-spacing:0.937333pt;}
.ls8{letter-spacing:1.089328pt;}
.ls6{letter-spacing:1.165333pt;}
.ls3{letter-spacing:26.741655pt;}
.ws9{word-spacing:-12.824000pt;}
.ws2{word-spacing:-12.712000pt;}
.ws0{word-spacing:-12.432000pt;}
.ws6{word-spacing:-12.152000pt;}
.ws8{word-spacing:-11.850774pt;}
.wsb{word-spacing:-11.602667pt;}
.wsa{word-spacing:-11.501333pt;}
.ws7{word-spacing:-9.930667pt;}
.ws3{word-spacing:-7.839895pt;}
.ws4{word-spacing:-7.317124pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:132.543334pt;}
._2{margin-left:-4.480000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.960000pt;}
._14{width:1.579200pt;}
._13{width:2.856000pt;}
._9{width:3.820800pt;}
._8{width:4.718400pt;}
._7{width:5.782400pt;}
._5{width:6.776000pt;}
._a{width:7.856000pt;}
._4{width:9.169067pt;}
._17{width:10.268267pt;}
._d{width:11.534400pt;}
._e{width:12.504000pt;}
._12{width:13.545600pt;}
._16{width:14.543200pt;}
._f{width:15.446400pt;}
._10{width:16.339200pt;}
._18{width:17.458400pt;}
._11{width:18.422400pt;}
._15{width:19.516000pt;}
._1b{width:20.456800pt;}
._23{width:21.991200pt;}
._22{width:23.212000pt;}
._20{width:24.130400pt;}
._21{width:25.592000pt;}
._2d{width:26.538400pt;}
._30{width:27.472267pt;}
._c{width:28.982400pt;}
._b{width:29.899200pt;}
._1e{width:32.088000pt;}
._1d{width:33.208000pt;}
._2f{width:35.704800pt;}
._1c{width:48.910400pt;}
._2e{width:66.051733pt;}
._1a{width:73.337508pt;}
._6{width:78.127467pt;}
._19{width:84.469087pt;}
._1f{width:140.762764pt;}
._28{width:202.893866pt;}
._2a{width:311.806565pt;}
._29{width:313.171882pt;}
._25{width:350.159817pt;}
._2b{width:357.965066pt;}
._27{width:363.562863pt;}
._26{width:408.618300pt;}
._24{width:444.957046pt;}
._2c{width:446.923954pt;}
.fsb{font-size:37.332267pt;}
.fs8{font-size:39.999467pt;}
.fs9{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:45.332800pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fsa{font-size:58.667200pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:32.050914pt;}
.y48{bottom:42.709276pt;}
.y10b{bottom:52.459733pt;}
.y47{bottom:53.367638pt;}
.y2{bottom:60.086668pt;}
.y46{bottom:64.025067pt;}
.y1{bottom:74.753335pt;}
.yce{bottom:76.802067pt;}
.y18f{bottom:76.803000pt;}
.yeb{bottom:76.805333pt;}
.y95{bottom:76.805600pt;}
.y14e{bottom:76.807533pt;}
.y16d{bottom:76.807800pt;}
.y74{bottom:77.484067pt;}
.y1a5{bottom:77.488200pt;}
.yb2{bottom:77.711533pt;}
.y42{bottom:78.689733pt;}
.y266{bottom:81.036867pt;}
.y1cd{bottom:86.097733pt;}
.y1fe{bottom:87.007867pt;}
.ycd{bottom:94.111667pt;}
.y18e{bottom:94.114000pt;}
.yea{bottom:94.116333pt;}
.y94{bottom:94.116600pt;}
.y14d{bottom:94.118533pt;}
.y16c{bottom:94.118800pt;}
.y73{bottom:94.793667pt;}
.y1a4{bottom:94.797800pt;}
.yb1{bottom:95.096733pt;}
.y232{bottom:95.247733pt;}
.y265{bottom:95.701067pt;}
.y1cc{bottom:100.763200pt;}
.y1fd{bottom:101.672067pt;}
.y231{bottom:109.911933pt;}
.y264{bottom:110.365267pt;}
.ycc{bottom:111.496867pt;}
.y18d{bottom:111.499200pt;}
.ye9{bottom:111.501533pt;}
.y93{bottom:111.501800pt;}
.y14c{bottom:111.503733pt;}
.y16b{bottom:111.504000pt;}
.y72{bottom:112.104667pt;}
.y1a3{bottom:112.108800pt;}
.yb0{bottom:112.407733pt;}
.y1cb{bottom:115.427400pt;}
.y1fc{bottom:116.336267pt;}
.y122{bottom:118.760200pt;}
.y41{bottom:122.458600pt;}
.y230{bottom:124.576133pt;}
.y263{bottom:125.029467pt;}
.ycb{bottom:128.807867pt;}
.y18c{bottom:128.808800pt;}
.ye8{bottom:128.811133pt;}
.y92{bottom:128.811400pt;}
.y14b{bottom:128.813333pt;}
.y16a{bottom:128.813600pt;}
.y71{bottom:129.489867pt;}
.y1a2{bottom:129.494000pt;}
.yaf{bottom:129.717333pt;}
.y1fb{bottom:131.001733pt;}
.y121{bottom:136.146800pt;}
.y22f{bottom:139.241600pt;}
.y1ca{bottom:139.464933pt;}
.y262{bottom:139.694933pt;}
.y40{bottom:139.769600pt;}
.y1fa{bottom:145.665933pt;}
.yca{bottom:146.117467pt;}
.y18b{bottom:146.119800pt;}
.ye7{bottom:146.122133pt;}
.y91{bottom:146.122400pt;}
.y14a{bottom:146.124333pt;}
.y169{bottom:146.124600pt;}
.y70{bottom:146.799467pt;}
.y1a1{bottom:146.805000pt;}
.yae{bottom:147.102533pt;}
.y120{bottom:153.456400pt;}
.y22e{bottom:153.905800pt;}
.y1c9{bottom:154.129133pt;}
.y261{bottom:154.359133pt;}
.y3f{bottom:157.079200pt;}
.y1f9{bottom:160.330133pt;}
.yc9{bottom:163.427067pt;}
.y18a{bottom:163.429400pt;}
.ye6{bottom:163.431733pt;}
.y90{bottom:163.432000pt;}
.y149{bottom:163.433933pt;}
.y168{bottom:163.434200pt;}
.y6f{bottom:164.110467pt;}
.y1a0{bottom:164.114600pt;}
.yad{bottom:164.413533pt;}
.y22d{bottom:168.570000pt;}
.y1c8{bottom:168.793333pt;}
.y260{bottom:169.023333pt;}
.y11f{bottom:170.766000pt;}
.y3e{bottom:174.464400pt;}
.y1f8{bottom:174.994333pt;}
.yc8{bottom:180.813667pt;}
.y189{bottom:180.814600pt;}
.ye5{bottom:180.816933pt;}
.y8f{bottom:180.817200pt;}
.y148{bottom:180.819133pt;}
.y167{bottom:180.819400pt;}
.y6e{bottom:181.420067pt;}
.y19f{bottom:181.499800pt;}
.yac{bottom:181.723133pt;}
.y22c{bottom:183.234200pt;}
.y25f{bottom:183.687533pt;}
.y11e{bottom:188.152600pt;}
.y1f7{bottom:189.659800pt;}
.y3d{bottom:191.775400pt;}
.y1c7{bottom:194.797333pt;}
.y22b{bottom:197.899667pt;}
.yc7{bottom:198.123267pt;}
.y188{bottom:198.125600pt;}
.ye4{bottom:198.127933pt;}
.y8e{bottom:198.128200pt;}
.y147{bottom:198.130133pt;}
.y25e{bottom:198.353000pt;}
.y6d{bottom:198.805267pt;}
.y19e{bottom:198.810800pt;}
.yab{bottom:199.108333pt;}
.y1f6{bottom:204.324000pt;}
.y11d{bottom:205.462200pt;}
.y3c{bottom:209.085000pt;}
.y22a{bottom:212.563867pt;}
.y25d{bottom:213.017200pt;}
.yc6{bottom:215.432867pt;}
.y187{bottom:215.435200pt;}
.ye3{bottom:215.437533pt;}
.y8d{bottom:215.437800pt;}
.y146{bottom:215.439733pt;}
.y166{bottom:215.666800pt;}
.y6c{bottom:216.116267pt;}
.y19d{bottom:216.120400pt;}
.yaa{bottom:216.419333pt;}
.y1f5{bottom:218.988200pt;}
.y11c{bottom:222.771800pt;}
.y3b{bottom:226.470200pt;}
.y229{bottom:227.228067pt;}
.y25c{bottom:227.681400pt;}
.yc5{bottom:232.819467pt;}
.y186{bottom:232.820400pt;}
.ye2{bottom:232.822733pt;}
.y8c{bottom:232.823000pt;}
.y145{bottom:232.824933pt;}
.y165{bottom:232.976400pt;}
.y6b{bottom:233.425867pt;}
.y19c{bottom:233.430000pt;}
.y1f4{bottom:233.652400pt;}
.ya9{bottom:233.728933pt;}
.y1c6{bottom:238.110667pt;}
.y11b{bottom:240.158400pt;}
.y228{bottom:241.892267pt;}
.y25b{bottom:242.345600pt;}
.y3a{bottom:243.781200pt;}
.y1f3{bottom:248.317867pt;}
.y185{bottom:250.131400pt;}
.ye1{bottom:250.133733pt;}
.y8b{bottom:250.134000pt;}
.y144{bottom:250.135933pt;}
.y164{bottom:250.287400pt;}
.y6a{bottom:250.811067pt;}
.y19b{bottom:250.816600pt;}
.ya8{bottom:251.038533pt;}
.y14{bottom:254.601334pt;}
.y227{bottom:256.557733pt;}
.y25a{bottom:257.011067pt;}
.y11a{bottom:257.468000pt;}
.y39{bottom:261.090800pt;}
.y1f2{bottom:262.982067pt;}
.y1c5{bottom:264.113333pt;}
.y184{bottom:267.441000pt;}
.ye0{bottom:267.443333pt;}
.y8a{bottom:267.443600pt;}
.y143{bottom:267.445533pt;}
.y163{bottom:267.672600pt;}
.y69{bottom:268.122067pt;}
.y19a{bottom:268.126200pt;}
.yc4{bottom:268.421333pt;}
.ya7{bottom:268.425133pt;}
.y226{bottom:271.221933pt;}
.y259{bottom:271.675267pt;}
.y119{bottom:274.777600pt;}
.y1f1{bottom:277.646267pt;}
.y38{bottom:278.476000pt;}
.y183{bottom:284.826200pt;}
.ydf{bottom:284.828533pt;}
.y89{bottom:284.828800pt;}
.y142{bottom:284.830733pt;}
.y162{bottom:284.982200pt;}
.y68{bottom:285.431667pt;}
.y199{bottom:285.435800pt;}
.ya6{bottom:285.734733pt;}
.yc3{bottom:285.808000pt;}
.y225{bottom:285.886133pt;}
.y258{bottom:286.339467pt;}
.y10a{bottom:291.252400pt;}
.y118{bottom:292.164200pt;}
.y1f0{bottom:292.310467pt;}
.y37{bottom:295.787000pt;}
.y224{bottom:300.550333pt;}
.y257{bottom:301.003667pt;}
.y182{bottom:302.137200pt;}
.y88{bottom:302.139800pt;}
.y141{bottom:302.141733pt;}
.y161{bottom:302.293200pt;}
.y67{bottom:302.816867pt;}
.y198{bottom:302.822400pt;}
.ya5{bottom:303.044333pt;}
.yc2{bottom:303.118667pt;}
.y1ef{bottom:306.975933pt;}
.y109{bottom:308.563400pt;}
.y117{bottom:309.473800pt;}
.yde{bottom:310.832133pt;}
.y13{bottom:311.801334pt;}
.y36{bottom:313.096600pt;}
.y223{bottom:315.215800pt;}
.y256{bottom:315.669133pt;}
.yc1{bottom:319.446400pt;}
.y181{bottom:319.446800pt;}
.y87{bottom:319.449400pt;}
.y140{bottom:319.451333pt;}
.y160{bottom:319.678400pt;}
.y66{bottom:320.127867pt;}
.y197{bottom:320.132000pt;}
.ya4{bottom:320.430933pt;}
.y1c4{bottom:320.585333pt;}
.y1ee{bottom:321.640133pt;}
.y116{bottom:326.783400pt;}
.y222{bottom:329.880000pt;}
.y255{bottom:330.333333pt;}
.y35{bottom:330.406200pt;}
.y108{bottom:334.565600pt;}
.y1ed{bottom:336.304333pt;}
.y180{bottom:336.756400pt;}
.y86{bottom:336.759000pt;}
.y13f{bottom:336.760933pt;}
.y15f{bottom:336.988000pt;}
.y65{bottom:337.437467pt;}
.y196{bottom:337.441600pt;}
.ya3{bottom:337.740533pt;}
.yc0{bottom:337.814667pt;}
.y1c3{bottom:337.894933pt;}
.y115{bottom:344.094400pt;}
.y221{bottom:344.544200pt;}
.y254{bottom:344.997533pt;}
.y34{bottom:347.792800pt;}
.y1ec{bottom:350.968533pt;}
.y17f{bottom:354.143000pt;}
.y85{bottom:354.145600pt;}
.y13e{bottom:354.147533pt;}
.y15e{bottom:354.299000pt;}
.ydd{bottom:354.598933pt;}
.y64{bottom:354.822667pt;}
.y195{bottom:354.828200pt;}
.ya2{bottom:355.050133pt;}
.ybf{bottom:355.124000pt;}
.y1c2{bottom:355.281533pt;}
.y220{bottom:359.208400pt;}
.y253{bottom:359.661733pt;}
.y114{bottom:361.479600pt;}
.y33{bottom:365.102400pt;}
.y1eb{bottom:365.634000pt;}
.y12{bottom:369.001334pt;}
.y17e{bottom:371.452600pt;}
.y84{bottom:371.455200pt;}
.y15d{bottom:371.684200pt;}
.ydc{bottom:371.908533pt;}
.y63{bottom:372.133667pt;}
.y194{bottom:372.137800pt;}
.ybe{bottom:372.434667pt;}
.ya1{bottom:372.436733pt;}
.y1c1{bottom:372.591133pt;}
.y21f{bottom:373.873867pt;}
.y252{bottom:374.327200pt;}
.y113{bottom:378.789200pt;}
.y1ea{bottom:380.298200pt;}
.y32{bottom:382.412000pt;}
.y107{bottom:383.698600pt;}
.y21e{bottom:388.538067pt;}
.y17d{bottom:388.762200pt;}
.y83{bottom:388.764800pt;}
.y15c{bottom:388.993800pt;}
.y251{bottom:389.066133pt;}
.ydb{bottom:389.218133pt;}
.y62{bottom:389.443267pt;}
.y193{bottom:389.447400pt;}
.ya0{bottom:389.746333pt;}
.y1c0{bottom:389.900733pt;}
.y1e9{bottom:394.962400pt;}
.y112{bottom:396.100200pt;}
.y13d{bottom:398.593333pt;}
.y106{bottom:401.009600pt;}
.y21d{bottom:403.278267pt;}
.y250{bottom:403.731600pt;}
.y17c{bottom:406.148800pt;}
.ybd{bottom:406.150533pt;}
.y82{bottom:406.151400pt;}
.y15b{bottom:406.304800pt;}
.yda{bottom:406.604733pt;}
.y61{bottom:406.752867pt;}
.y192{bottom:406.758400pt;}
.y9f{bottom:407.055933pt;}
.y1bf{bottom:407.287333pt;}
.y31{bottom:408.416000pt;}
.y1e8{bottom:409.626600pt;}
.y111{bottom:413.485400pt;}
.y13c{bottom:415.904333pt;}
.y21c{bottom:417.942467pt;}
.y105{bottom:418.319200pt;}
.y24f{bottom:418.395800pt;}
.y17b{bottom:423.458400pt;}
.ybc{bottom:423.460133pt;}
.y81{bottom:423.461000pt;}
.y15a{bottom:423.614400pt;}
.yd9{bottom:423.914333pt;}
.y60{bottom:424.139467pt;}
.y191{bottom:424.143600pt;}
.y1e7{bottom:424.292067pt;}
.y9e{bottom:424.442533pt;}
.y1be{bottom:424.596933pt;}
.y11{bottom:428.806667pt;}
.y21b{bottom:432.606667pt;}
.y24e{bottom:433.060000pt;}
.y13b{bottom:433.213933pt;}
.y104{bottom:435.704400pt;}
.y1e6{bottom:439.031000pt;}
.y17a{bottom:440.768000pt;}
.ybb{bottom:440.769733pt;}
.y80{bottom:440.770600pt;}
.y159{bottom:440.999600pt;}
.yd8{bottom:441.223933pt;}
.y5f{bottom:441.449067pt;}
.y190{bottom:441.453200pt;}
.y9d{bottom:441.752133pt;}
.y1bd{bottom:441.906533pt;}
.y21a{bottom:447.270867pt;}
.y24d{bottom:447.724200pt;}
.y13a{bottom:450.599133pt;}
.y103{bottom:453.015400pt;}
.y1e5{bottom:453.696467pt;}
.yba{bottom:458.156333pt;}
.y7f{bottom:458.157200pt;}
.yd7{bottom:458.610533pt;}
.y5e{bottom:458.758667pt;}
.y110{bottom:458.764200pt;}
.y9c{bottom:459.061733pt;}
.y1bc{bottom:459.217533pt;}
.y29{bottom:459.816933pt;}
.y219{bottom:461.936333pt;}
.y24c{bottom:462.389667pt;}
.y179{bottom:466.772000pt;}
.y158{bottom:467.003200pt;}
.y139{bottom:467.910133pt;}
.y1e4{bottom:468.360667pt;}
.y102{bottom:470.325000pt;}
.y28{bottom:473.121333pt;}
.yb9{bottom:475.465933pt;}
.y7e{bottom:475.466800pt;}
.yd6{bottom:475.920133pt;}
.y10f{bottom:476.149400pt;}
.y9b{bottom:476.372733pt;}
.y218{bottom:476.600533pt;}
.y1bb{bottom:476.602733pt;}
.y24b{bottom:477.053867pt;}
.y1e3{bottom:483.024867pt;}
.y10{bottom:483.401334pt;}
.y5d{bottom:484.762667pt;}
.y138{bottom:485.219733pt;}
.y27{bottom:486.501333pt;}
.y101{bottom:487.710200pt;}
.y217{bottom:491.264733pt;}
.y24a{bottom:491.718067pt;}
.yb8{bottom:492.775533pt;}
.y7d{bottom:492.776400pt;}
.yd5{bottom:493.229733pt;}
.y10e{bottom:493.459000pt;}
.y9a{bottom:493.757933pt;}
.y1ba{bottom:493.912333pt;}
.y1e2{bottom:497.689067pt;}
.y26{bottom:499.804533pt;}
.y137{bottom:502.606333pt;}
.y100{bottom:505.021200pt;}
.y216{bottom:505.928933pt;}
.y249{bottom:506.382267pt;}
.yb7{bottom:510.162133pt;}
.y7c{bottom:510.163000pt;}
.y178{bottom:510.543200pt;}
.yd4{bottom:510.616333pt;}
.y157{bottom:510.618800pt;}
.y10d{bottom:510.770000pt;}
.y99{bottom:511.067533pt;}
.y1b9{bottom:511.223333pt;}
.y1e1{bottom:512.354533pt;}
.y25{bottom:513.184533pt;}
.y136{bottom:519.915933pt;}
.y215{bottom:520.594400pt;}
.y248{bottom:521.047733pt;}
.yff{bottom:522.330800pt;}
.y24{bottom:526.487733pt;}
.y1e0{bottom:527.018733pt;}
.yb6{bottom:527.471733pt;}
.y7b{bottom:527.472600pt;}
.y177{bottom:527.852800pt;}
.yd3{bottom:527.925933pt;}
.y156{bottom:527.928400pt;}
.y10c{bottom:528.155200pt;}
.y98{bottom:528.378533pt;}
.y1b8{bottom:528.608533pt;}
.y214{bottom:535.258600pt;}
.y247{bottom:535.711933pt;}
.y135{bottom:537.225533pt;}
.yfe{bottom:539.716000pt;}
.y23{bottom:539.792133pt;}
.y1df{bottom:541.682933pt;}
.yf{bottom:543.206667pt;}
.yb5{bottom:544.781333pt;}
.y7a{bottom:544.782200pt;}
.yd2{bottom:545.235533pt;}
.y155{bottom:545.238000pt;}
.y5c{bottom:545.464800pt;}
.y97{bottom:545.763733pt;}
.y1b7{bottom:545.918133pt;}
.y213{bottom:549.922800pt;}
.y246{bottom:550.376133pt;}
.y22{bottom:553.172133pt;}
.y134{bottom:554.612133pt;}
.y1de{bottom:556.347133pt;}
.y79{bottom:562.093200pt;}
.yd1{bottom:562.546533pt;}
.y176{bottom:562.549000pt;}
.y154{bottom:562.624600pt;}
.y5b{bottom:562.775800pt;}
.y96{bottom:563.073333pt;}
.y1b6{bottom:563.229133pt;}
.y212{bottom:564.587000pt;}
.y245{bottom:565.040333pt;}
.yfd{bottom:565.720000pt;}
.y21{bottom:566.475333pt;}
.yb4{bottom:570.784000pt;}
.y1dd{bottom:571.012600pt;}
.y133{bottom:571.921733pt;}
.ye{bottom:573.740001pt;}
.y211{bottom:579.252467pt;}
.y30{bottom:579.477933pt;}
.y78{bottom:579.478400pt;}
.y244{bottom:579.705800pt;}
.y20{bottom:579.855333pt;}
.y175{bottom:579.858600pt;}
.yd0{bottom:579.931733pt;}
.y153{bottom:579.934200pt;}
.y5a{bottom:580.161000pt;}
.y1b5{bottom:580.614333pt;}
.y1dc{bottom:585.676800pt;}
.yd{bottom:587.073335pt;}
.y132{bottom:589.231333pt;}
.y2f{bottom:591.421251pt;}
.y1f{bottom:593.158533pt;}
.y210{bottom:593.916667pt;}
.y243{bottom:594.370000pt;}
.y77{bottom:596.788000pt;}
.y174{bottom:597.168200pt;}
.ycf{bottom:597.241333pt;}
.y152{bottom:597.243800pt;}
.y59{bottom:597.470600pt;}
.y1b4{bottom:597.923933pt;}
.y1db{bottom:600.341000pt;}
.yc{bottom:600.406667pt;}
.y2e{bottom:603.440300pt;}
.yb3{bottom:604.194667pt;}
.y1e{bottom:606.462933pt;}
.y131{bottom:606.617933pt;}
.y20f{bottom:608.580867pt;}
.y242{bottom:609.034200pt;}
.y173{bottom:614.554800pt;}
.y151{bottom:614.630400pt;}
.y58{bottom:614.781600pt;}
.y1da{bottom:615.005200pt;}
.y1b3{bottom:615.234933pt;}
.y2d{bottom:615.459350pt;}
.y1d{bottom:619.842933pt;}
.y76{bottom:622.790667pt;}
.y20e{bottom:623.245067pt;}
.y241{bottom:623.698400pt;}
.y130{bottom:623.927533pt;}
.y2c{bottom:627.477333pt;}
.y1d9{bottom:629.670667pt;}
.y172{bottom:631.864400pt;}
.y150{bottom:631.940000pt;}
.y57{bottom:632.091200pt;}
.y1b2{bottom:632.544533pt;}
.y1c{bottom:633.146133pt;}
.y20d{bottom:637.910533pt;}
.y240{bottom:638.363867pt;}
.y2b{bottom:639.421444pt;}
.y12f{bottom:641.237133pt;}
.y1d8{bottom:644.334867pt;}
.y1b{bottom:646.526133pt;}
.y171{bottom:649.174000pt;}
.y14f{bottom:649.249600pt;}
.y56{bottom:649.476400pt;}
.y1b1{bottom:649.929733pt;}
.yfc{bottom:650.457941pt;}
.y20c{bottom:652.574733pt;}
.y23f{bottom:653.028067pt;}
.y12e{bottom:658.548133pt;}
.y1d7{bottom:658.999067pt;}
.y1a{bottom:659.829333pt;}
.yfb{bottom:662.401258pt;}
.y170{bottom:666.560600pt;}
.y55{bottom:666.787400pt;}
.y20b{bottom:667.238933pt;}
.y1b0{bottom:667.240733pt;}
.y23e{bottom:667.692267pt;}
.yb{bottom:672.726665pt;}
.y2a{bottom:672.756000pt;}
.y19{bottom:673.133333pt;}
.y1d6{bottom:673.663267pt;}
.yfa{bottom:674.420308pt;}
.y12d{bottom:675.933333pt;}
.y20a{bottom:681.903133pt;}
.y23d{bottom:682.356467pt;}
.y16f{bottom:683.870200pt;}
.y54{bottom:684.097000pt;}
.y1af{bottom:684.550333pt;}
.yf9{bottom:686.438291pt;}
.y1d5{bottom:688.328733pt;}
.y12c{bottom:693.242933pt;}
.y209{bottom:696.568600pt;}
.y23c{bottom:697.021933pt;}
.yf8{bottom:698.457341pt;}
.ya{bottom:699.393332pt;}
.y16e{bottom:701.179800pt;}
.y53{bottom:701.482200pt;}
.y1ae{bottom:701.935533pt;}
.y1d4{bottom:702.992933pt;}
.y12b{bottom:710.553933pt;}
.y208{bottom:711.232800pt;}
.y23b{bottom:711.686133pt;}
.y18{bottom:714.254667pt;}
.yf7{bottom:715.087533pt;}
.y9{bottom:715.393332pt;}
.y1d3{bottom:717.657133pt;}
.y52{bottom:718.793200pt;}
.y1ad{bottom:719.246533pt;}
.y207{bottom:725.897000pt;}
.y23a{bottom:726.350333pt;}
.yf6{bottom:727.106582pt;}
.y12a{bottom:727.939133pt;}
.y8{bottom:731.393332pt;}
.y1d2{bottom:732.321333pt;}
.y51{bottom:736.102800pt;}
.y1ac{bottom:736.556133pt;}
.y17{bottom:738.594667pt;}
.yf5{bottom:739.125632pt;}
.y206{bottom:740.561200pt;}
.y239{bottom:741.014533pt;}
.y129{bottom:745.248733pt;}
.yf4{bottom:751.067883pt;}
.y50{bottom:753.488000pt;}
.y1ab{bottom:753.941333pt;}
.y205{bottom:755.226667pt;}
.y238{bottom:755.680000pt;}
.y1d1{bottom:758.324000pt;}
.y128{bottom:762.559733pt;}
.yf3{bottom:763.086933pt;}
.y16{bottom:764.069333pt;}
.y204{bottom:769.890867pt;}
.y237{bottom:770.344200pt;}
.y4f{bottom:770.799000pt;}
.y1aa{bottom:771.252333pt;}
.yf2{bottom:775.105982pt;}
.y7{bottom:778.034669pt;}
.y127{bottom:779.944933pt;}
.y203{bottom:784.555067pt;}
.y236{bottom:785.008400pt;}
.y15{bottom:785.461333pt;}
.yf1{bottom:787.125032pt;}
.y4e{bottom:788.108600pt;}
.y1a9{bottom:788.561933pt;}
.y126{bottom:797.254533pt;}
.yf0{bottom:799.068350pt;}
.y202{bottom:799.219267pt;}
.y235{bottom:799.672600pt;}
.y4d{bottom:805.418200pt;}
.y1a8{bottom:805.947133pt;}
.yef{bottom:811.087399pt;}
.y201{bottom:813.884733pt;}
.y234{bottom:814.338067pt;}
.y125{bottom:814.565533pt;}
.y1d0{bottom:819.023800pt;}
.y4c{bottom:822.804800pt;}
.y1a7{bottom:823.258133pt;}
.yee{bottom:827.036000pt;}
.y200{bottom:828.548933pt;}
.y233{bottom:829.002267pt;}
.y124{bottom:831.875133pt;}
.y1cf{bottom:833.688000pt;}
.y6{bottom:834.625331pt;}
.y4b{bottom:840.114400pt;}
.y1a6{bottom:840.567733pt;}
.y1ff{bottom:843.213133pt;}
.yed{bottom:843.666467pt;}
.y45{bottom:849.411826pt;}
.y1ce{bottom:856.969333pt;}
.y4a{bottom:857.424000pt;}
.y123{bottom:857.877333pt;}
.yec{bottom:858.330667pt;}
.y44{bottom:861.354667pt;}
.y5{bottom:862.625331pt;}
.y43{bottom:873.373333pt;}
.y75{bottom:893.404000pt;}
.y4{bottom:920.485335pt;}
.y3{bottom:1035.664002pt;}
.h14{height:26.692571pt;}
.hd{height:27.999627pt;}
.h13{height:28.599619pt;}
.h15{height:28.839615pt;}
.h1b{height:30.079624pt;}
.hf{height:30.506285pt;}
.h12{height:30.762282pt;}
.h4{height:32.645833pt;}
.hc{height:34.320000pt;}
.he{height:34.608000pt;}
.h17{height:36.226667pt;}
.h2{height:36.726562pt;}
.h16{height:40.040000pt;}
.h19{height:40.229333pt;}
.h1c{height:40.230133pt;}
.hb{height:40.376000pt;}
.h1a{height:40.528000pt;}
.h18{height:40.533333pt;}
.h7{height:40.807292pt;}
.h10{height:42.299051pt;}
.h11{height:44.464000pt;}
.h6{height:48.968750pt;}
.ha{height:53.834667pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.h8{height:937.322667pt;}
.h9{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:79.974800pt;}
.xe{left:85.039333pt;}
.xf{left:93.353333pt;}
.x7{left:96.000000pt;}
.xa{left:108.850267pt;}
.x4{left:129.466667pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x2{left:206.021330pt;}
.xb{left:236.522667pt;}
.xc{left:241.889333pt;}
.xd{left:244.534634pt;}
.x1{left:260.969328pt;}
.x9{left:434.192000pt;}
.x8{left:457.322667pt;}
}




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