
    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_08bf62053de1521aff78e283.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_74f7f461054dcb6700ad0e8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_8c2394a58c1b417ad7d50296.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_892f5bb9422a3f3176b8598d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f178dc766064c7d3e5843451.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_d493ce1695f95bfef25ff3a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_65c7d05ac324a43992672c79.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_c3a9f2ce7d9fc758e4a6b438.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_8a2f9ab9535b9c8956754a79.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0b60ba3e4a4e4a8e46031a33.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_09a3123f7727954d48b3daa6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f774cc5f20e41f7933ef2889.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_00bdae1c904721fd09ab010c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5e0899299698ad2521f24acc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916992;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:ff12;src:url('chunks/assets/font_e18d1cff9644831c38871fa0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952148;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:ff13;src:url('chunks/assets/font_cae2a2b3094e7215d0d4e533.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.722656;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:ff14;src:url('chunks/assets/font_35c653178ef14c5b2d8e2e9d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.759990px;}
.v3{vertical-align:30.959988px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021282px;}
.ls6{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.189300px;}
.lsb{letter-spacing:0.209036px;}
.ls3{letter-spacing:0.339016px;}
.ls2{letter-spacing:0.340926px;}
.lsa{letter-spacing:1.394279px;}
.ls8{letter-spacing:4.275898px;}
.ls4{letter-spacing:5.014738px;}
.ls9{letter-spacing:11.480035px;}
.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;}
}
.ws3{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-18.021275px;}
.ws2{word-spacing:-17.999993px;}
.ws9{word-spacing:-13.925030px;}
.ws8{word-spacing:-13.715995px;}
.ws6{word-spacing:-13.013995px;}
.ws4{word-spacing:-10.342076px;}
.ws5{word-spacing:-8.114397px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._b{margin-left:-468.216941px;}
._a{margin-left:-442.085183px;}
._3{margin-left:-277.545825px;}
._6{margin-left:-219.254252px;}
._1{margin-left:-90.563177px;}
._9{margin-left:-70.559337px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._10{margin-left:-4.160447px;}
._11{margin-left:-2.753876px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._15{width:2.245443px;}
._d{width:3.271947px;}
._c{width:4.751467px;}
._13{width:6.750252px;}
._12{width:7.863699px;}
._17{width:9.628597px;}
._1a{width:11.283133px;}
._3a{width:12.460424px;}
._1c{width:14.536757px;}
._18{width:15.598306px;}
._19{width:16.704131px;}
._1d{width:17.749903px;}
._14{width:18.773609px;}
._16{width:19.962657px;}
._1b{width:21.176905px;}
._20{width:22.265287px;}
._23{width:24.226639px;}
._2d{width:25.758996px;}
._25{width:26.866886px;}
._e{width:27.900652px;}
._f{width:29.011271px;}
._21{width:30.422179px;}
._22{width:31.647009px;}
._33{width:32.922033px;}
._1f{width:33.988676px;}
._26{width:35.294384px;}
._2e{width:36.411454px;}
._2c{width:38.303399px;}
._28{width:40.188856px;}
._1e{width:41.402792px;}
._24{width:42.676786px;}
._2f{width:43.683803px;}
._31{width:44.772612px;}
._3c{width:45.947722px;}
._3b{width:47.253583px;}
._32{width:48.501394px;}
._38{width:50.127588px;}
._29{width:51.583220px;}
._27{width:53.227293px;}
._39{width:54.517890px;}
._40{width:55.519464px;}
._3d{width:57.033337px;}
._3e{width:59.279323px;}
._3f{width:60.752367px;}
._30{width:62.925752px;}
._37{width:78.033684px;}
._34{width:85.320566px;}
._2a{width:93.541765px;}
._2b{width:94.555902px;}
._35{width:128.895788px;}
._36{width:167.077553px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fs8{font-size:33.119987px;}
.fsc{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fs6{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fsb{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y41{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y125{bottom:3.059102px;}
.y123{bottom:3.059105px;}
.y128{bottom:3.059108px;}
.y12d{bottom:3.059115px;}
.y12a{bottom:3.059118px;}
.y130{bottom:3.059127px;}
.y132{bottom:3.059133px;}
.y134{bottom:3.059140px;}
.y137{bottom:3.059146px;}
.y139{bottom:3.059152px;}
.y13b{bottom:3.059158px;}
.y140{bottom:3.059161px;}
.y13d{bottom:3.059164px;}
.y148{bottom:3.059170px;}
.y143{bottom:3.059173px;}
.y14a{bottom:3.059176px;}
.y145{bottom:3.059179px;}
.y14c{bottom:3.059183px;}
.y14e{bottom:3.059189px;}
.y150{bottom:3.059195px;}
.y152{bottom:3.059201px;}
.y154{bottom:3.059207px;}
.y158{bottom:3.059213px;}
.y29{bottom:3.059216px;}
.y15a{bottom:3.059219px;}
.y10{bottom:3.239055px;}
.y24{bottom:3.599199px;}
.y27{bottom:3.599203px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y1b{bottom:4.859105px;}
.y3c{bottom:6.478948px;}
.y9f{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y6e{bottom:111.359955px;}
.y201{bottom:111.540255px;}
.y168{bottom:112.079955px;}
.y1c5{bottom:112.260255px;}
.y11e{bottom:112.799955px;}
.y10d{bottom:113.339955px;}
.y177{bottom:113.699955px;}
.y19e{bottom:113.880254px;}
.y9c{bottom:114.059954px;}
.ycb{bottom:114.239954px;}
.yed{bottom:114.419954px;}
.y1d9{bottom:114.420254px;}
.y3a{bottom:122.340251px;}
.y39{bottom:126.120250px;}
.y6d{bottom:134.399946px;}
.y167{bottom:135.119946px;}
.y200{bottom:135.300246px;}
.y11d{bottom:135.659946px;}
.y1c4{bottom:136.020246px;}
.y10c{bottom:136.379945px;}
.yca{bottom:136.559945px;}
.y19d{bottom:136.920245px;}
.yec{bottom:137.279945px;}
.y9b{bottom:137.459945px;}
.yff{bottom:137.639945px;}
.y1d8{bottom:137.820245px;}
.y226{bottom:138.540245px;}
.y38{bottom:145.019942px;}
.yeb{bottom:157.259937px;}
.y6c{bottom:157.439937px;}
.y166{bottom:157.979937px;}
.yc9{bottom:158.699937px;}
.y1ff{bottom:159.059936px;}
.y10b{bottom:159.239936px;}
.y1c3{bottom:159.779936px;}
.y9a{bottom:160.679936px;}
.yfe{bottom:160.859936px;}
.y176{bottom:161.039936px;}
.y225{bottom:163.019935px;}
.y37{bottom:166.439933px;}
.y6b{bottom:180.479928px;}
.yc8{bottom:181.019928px;}
.y11c{bottom:181.739927px;}
.y10a{bottom:182.279927px;}
.y1fe{bottom:182.819927px;}
.y1c2{bottom:183.539927px;}
.y99{bottom:184.079926px;}
.yfd{bottom:184.259926px;}
.y1d7{bottom:184.439926px;}
.y175{bottom:184.799926px;}
.y19c{bottom:185.519926px;}
.y224{bottom:187.499925px;}
.y36{bottom:187.859925px;}
.y6a{bottom:203.339919px;}
.y165{bottom:204.059918px;}
.y11b{bottom:204.779918px;}
.y109{bottom:205.319918px;}
.y1fd{bottom:206.579917px;}
.y1c1{bottom:207.299917px;}
.y98{bottom:207.479917px;}
.y1d6{bottom:207.659917px;}
.y174{bottom:208.379917px;}
.y19b{bottom:208.559917px;}
.y35{bottom:209.279916px;}
.y223{bottom:212.159915px;}
.yc7{bottom:225.479910px;}
.y69{bottom:226.379909px;}
.y164{bottom:227.099909px;}
.y11a{bottom:227.819909px;}
.y108{bottom:228.359909px;}
.y1fc{bottom:230.339908px;}
.y97{bottom:230.699908px;}
.y34{bottom:230.879908px;}
.y1c0{bottom:231.059908px;}
.y19a{bottom:231.599907px;}
.y173{bottom:231.959907px;}
.y222{bottom:236.639905px;}
.yc6{bottom:247.799901px;}
.y107{bottom:248.339901px;}
.y68{bottom:249.419900px;}
.y163{bottom:250.139900px;}
.y119{bottom:250.859900px;}
.y33{bottom:252.299899px;}
.y96{bottom:254.099898px;}
.yfc{bottom:254.279898px;}
.y1d5{bottom:254.459898px;}
.y199{bottom:254.639898px;}
.y1bf{bottom:254.819898px;}
.y172{bottom:255.719898px;}
.y221{bottom:263.819894px;}
.yc5{bottom:269.939892px;}
.y67{bottom:272.459891px;}
.y162{bottom:272.999891px;}
.y32{bottom:273.719891px;}
.y95{bottom:277.319889px;}
.yfb{bottom:277.499889px;}
.y1d4{bottom:277.679889px;}
.y1fb{bottom:277.859889px;}
.y1be{bottom:278.579889px;}
.y171{bottom:279.299888px;}
.y220{bottom:291.179884px;}
.yc4{bottom:292.259883px;}
.y31{bottom:295.319882px;}
.y66{bottom:295.499882px;}
.y161{bottom:296.039882px;}
.y118{bottom:296.759881px;}
.y198{bottom:300.539880px;}
.y94{bottom:300.719880px;}
.yfa{bottom:300.899880px;}
.y1d3{bottom:301.079880px;}
.y1fa{bottom:301.619879px;}
.y1bd{bottom:302.519879px;}
.y170{bottom:302.879879px;}
.yc3{bottom:314.399874px;}
.y21f{bottom:315.659874px;}
.y30{bottom:316.739873px;}
.y65{bottom:318.539873px;}
.y160{bottom:319.079872px;}
.y117{bottom:319.799872px;}
.y93{bottom:324.119870px;}
.y1d2{bottom:324.299870px;}
.y197{bottom:324.479870px;}
.y1f9{bottom:325.379870px;}
.y1bc{bottom:326.279869px;}
.y16f{bottom:326.639869px;}
.yc2{bottom:336.719865px;}
.y2f{bottom:338.159865px;}
.y21e{bottom:340.319864px;}
.y64{bottom:341.399863px;}
.y15f{bottom:342.119863px;}
.y116{bottom:342.839863px;}
.y92{bottom:347.339861px;}
.yf9{bottom:347.519861px;}
.y1d1{bottom:347.699861px;}
.y196{bottom:349.139860px;}
.y1bb{bottom:350.039860px;}
.y16e{bottom:350.219860px;}
.yc1{bottom:358.859856px;}
.y2e{bottom:359.759856px;}
.y63{bottom:364.439854px;}
.y21d{bottom:364.799854px;}
.y15e{bottom:365.159854px;}
.y115{bottom:365.879854px;}
.y91{bottom:370.739852px;}
.yf8{bottom:370.919852px;}
.y1d0{bottom:371.099852px;}
.y195{bottom:372.179851px;}
.y1f8{bottom:373.079851px;}
.y1ba{bottom:373.799850px;}
.y16d{bottom:373.979850px;}
.y2d{bottom:381.179848px;}
.y62{bottom:387.659845px;}
.y15d{bottom:388.199845px;}
.y114{bottom:388.739845px;}
.y21c{bottom:389.279844px;}
.y90{bottom:393.959842px;}
.yf7{bottom:394.139842px;}
.y1cf{bottom:394.319842px;}
.y194{bottom:395.219842px;}
.y1f7{bottom:396.839841px;}
.yea{bottom:397.559841px;}
.y2c{bottom:402.599839px;}
.yc0{bottom:403.499839px;}
.y61{bottom:410.879836px;}
.y15c{bottom:411.059836px;}
.y113{bottom:411.779835px;}
.y21b{bottom:413.939834px;}
.y8f{bottom:417.359833px;}
.yf6{bottom:417.539833px;}
.y1ce{bottom:417.719833px;}
.y193{bottom:418.259833px;}
.ye9{bottom:420.599832px;}
.y16c{bottom:420.779832px;}
.y1b9{bottom:421.319831px;}
.y2b{bottom:425.279830px;}
.ybf{bottom:425.639830px;}
.y106{bottom:429.959828px;}
.y15b{bottom:434.099826px;}
.y60{bottom:434.279826px;}
.y112{bottom:434.819826px;}
.y8e{bottom:440.759824px;}
.y1cd{bottom:440.939824px;}
.y192{bottom:441.119824px;}
.ye8{bottom:443.639823px;}
.y16b{bottom:443.819822px;}
.y1f6{bottom:444.359822px;}
.y1b8{bottom:445.079822px;}
.ybe{bottom:447.959821px;}
.y159{bottom:448.500600px;}
.y105{bottom:452.999819px;}
.y28{bottom:455.700600px;}
.y156{bottom:456.240600px;}
.y5f{bottom:457.679817px;}
.y2a{bottom:458.759816px;}
.y111{bottom:459.839816px;}
.y157{bottom:463.800600px;}
.y8d{bottom:463.979814px;}
.yf5{bottom:464.159814px;}
.y1cc{bottom:464.339814px;}
.ye7{bottom:466.499813px;}
.y16a{bottom:466.679813px;}
.y1f5{bottom:468.119813px;}
.y21a{bottom:468.479813px;}
.y1b7{bottom:468.839812px;}
.ybd{bottom:470.099812px;}
.y104{bottom:476.039810px;}
.y153{bottom:479.100600px;}
.y5e{bottom:480.899808px;}
.y155{bottom:482.159807px;}
.y110{bottom:485.939806px;}
.y191{bottom:487.199805px;}
.yf4{bottom:487.559805px;}
.y1cb{bottom:487.739805px;}
.y8c{bottom:488.099805px;}
.y26{bottom:489.180600px;}
.ye6{bottom:489.539804px;}
.y169{bottom:489.719804px;}
.y1f4{bottom:491.879803px;}
.ybc{bottom:492.419803px;}
.y1b6{bottom:492.599803px;}
.y25{bottom:492.779803px;}
.y219{bottom:492.959803px;}
.y151{bottom:494.580600px;}
.y23{bottom:498.180600px;}
.y103{bottom:499.079800px;}
.y5d{bottom:504.299798px;}
.y10f{bottom:508.979796px;}
.y14f{bottom:509.880600px;}
.y190{bottom:510.239796px;}
.yf3{bottom:510.779796px;}
.y1ca{bottom:510.959796px;}
.ye5{bottom:512.579795px;}
.y8b{bottom:512.759795px;}
.ybb{bottom:514.559794px;}
.y1f3{bottom:515.639794px;}
.y1b5{bottom:516.359793px;}
.y218{bottom:517.439793px;}
.y102{bottom:522.119791px;}
.y14d{bottom:525.180600px;}
.y5c{bottom:527.519789px;}
.y10e{bottom:528.959788px;}
.y22{bottom:530.939788px;}
.y18f{bottom:533.279787px;}
.yf2{bottom:534.179786px;}
.y1c9{bottom:534.359786px;}
.ye4{bottom:535.619786px;}
.y8a{bottom:535.799786px;}
.yba{bottom:536.879785px;}
.y1f2{bottom:539.399784px;}
.y1b4{bottom:540.119784px;}
.y14b{bottom:540.480600px;}
.y101{bottom:541.919783px;}
.y217{bottom:543.539783px;}
.y144{bottom:548.220600px;}
.y5b{bottom:550.919780px;}
.y146{bottom:551.279779px;}
.y149{bottom:555.960600px;}
.y18e{bottom:556.139778px;}
.yf1{bottom:557.399777px;}
.y1c8{bottom:557.579777px;}
.ye3{bottom:558.659777px;}
.y89{bottom:558.839776px;}
.yb9{bottom:559.199776px;}
.y21{bottom:560.639776px;}
.y1f1{bottom:563.159775px;}
.y142{bottom:563.520600px;}
.y1b3{bottom:564.059774px;}
.y216{bottom:569.279772px;}
.y147{bottom:571.260600px;}
.y5a{bottom:574.319770px;}
.y18d{bottom:579.179768px;}
.yf0{bottom:580.799768px;}
.y1c7{bottom:580.979768px;}
.yb8{bottom:581.339767px;}
.ye2{bottom:581.519767px;}
.y88{bottom:581.699767px;}
.y13c{bottom:586.560600px;}
.y1f0{bottom:586.919765px;}
.y1b2{bottom:587.819765px;}
.y13e{bottom:589.619764px;}
.y215{bottom:593.939762px;}
.y13f{bottom:594.300600px;}
.y20{bottom:596.099762px;}
.y141{bottom:597.359761px;}
.y59{bottom:597.539761px;}
.y13a{bottom:601.860600px;}
.y18c{bottom:602.219759px;}
.yb7{bottom:603.659759px;}
.yef{bottom:604.199758px;}
.y1c6{bottom:604.379758px;}
.ye1{bottom:604.559758px;}
.y87{bottom:604.739758px;}
.y1ef{bottom:610.679756px;}
.y1b1{bottom:611.579755px;}
.y138{bottom:617.160600px;}
.y214{bottom:618.419753px;}
.y58{bottom:620.939752px;}
.y18b{bottom:625.259750px;}
.y1f{bottom:625.619750px;}
.yb6{bottom:625.799750px;}
.yee{bottom:627.419749px;}
.ye0{bottom:627.599749px;}
.y86{bottom:627.779749px;}
.y136{bottom:632.640600px;}
.y1ee{bottom:634.619746px;}
.y1b0{bottom:635.339746px;}
.y213{bottom:642.899743px;}
.y57{bottom:644.159742px;}
.y133{bottom:647.940600px;}
.yb5{bottom:648.119741px;}
.y18a{bottom:648.299741px;}
.ydf{bottom:650.639740px;}
.y85{bottom:650.819740px;}
.y135{bottom:650.999740px;}
.y1e{bottom:655.319738px;}
.y1ed{bottom:658.379737px;}
.y1af{bottom:659.099736px;}
.y131{bottom:663.240600px;}
.y56{bottom:667.559733px;}
.yb4{bottom:670.259732px;}
.y189{bottom:671.339731px;}
.yde{bottom:673.679731px;}
.y84{bottom:673.859730px;}
.y12f{bottom:678.540600px;}
.y1ec{bottom:682.139727px;}
.y1ae{bottom:682.859727px;}
.y1d{bottom:684.839726px;}
.y55{bottom:690.959724px;}
.y212{bottom:692.039723px;}
.yb3{bottom:692.579723px;}
.y188{bottom:694.199722px;}
.ydd{bottom:696.719721px;}
.y83{bottom:696.899721px;}
.y12e{bottom:697.799721px;}
.y129{bottom:702.300600px;}
.y12b{bottom:705.359718px;}
.y1eb{bottom:705.899718px;}
.y1ad{bottom:706.619717px;}
.y1c{bottom:708.599717px;}
.y12c{bottom:710.040600px;}
.y54{bottom:714.179714px;}
.yb2{bottom:714.899714px;}
.y211{bottom:716.519713px;}
.y187{bottom:717.239713px;}
.ydc{bottom:719.579712px;}
.y81{bottom:719.759712px;}
.y82{bottom:723.539711px;}
.y127{bottom:726.060600px;}
.y126{bottom:729.119708px;}
.y1ea{bottom:729.659708px;}
.y1ac{bottom:730.379708px;}
.y1a{bottom:733.260600px;}
.y122{bottom:733.800600px;}
.yb1{bottom:737.039705px;}
.y100{bottom:737.219705px;}
.y53{bottom:737.579705px;}
.y186{bottom:740.279704px;}
.y210{bottom:741.179704px;}
.y124{bottom:741.360600px;}
.ydb{bottom:742.619703px;}
.y80{bottom:742.799703px;}
.y19{bottom:744.059702px;}
.y1e9{bottom:753.419699px;}
.y1ab{bottom:754.139698px;}
.y18{bottom:755.939698px;}
.yb0{bottom:760.439696px;}
.y52{bottom:760.799696px;}
.y185{bottom:763.319695px;}
.yda{bottom:765.659694px;}
.y7f{bottom:765.839694px;}
.y121{bottom:769.979692px;}
.y1e8{bottom:777.179689px;}
.y1aa{bottom:777.899689px;}
.y16{bottom:783.479687px;}
.yaf{bottom:783.659687px;}
.y51{bottom:784.199686px;}
.y184{bottom:786.359685px;}
.y17{bottom:788.699685px;}
.y7e{bottom:788.879684px;}
.y20f{bottom:790.139684px;}
.y120{bottom:793.019683px;}
.y1e7{bottom:800.939680px;}
.y1a9{bottom:801.659679px;}
.yae{bottom:807.059677px;}
.y50{bottom:807.599677px;}
.y11f{bottom:808.679677px;}
.y183{bottom:809.399676px;}
.yd9{bottom:811.739675px;}
.y7d{bottom:811.919675px;}
.y14{bottom:814.079674px;}
.y20e{bottom:814.799674px;}
.y15{bottom:819.299672px;}
.y1e6{bottom:824.699670px;}
.y1a8{bottom:825.419670px;}
.yad{bottom:830.279668px;}
.y4f{bottom:830.819668px;}
.y182{bottom:832.259667px;}
.yd8{bottom:834.779666px;}
.y7c{bottom:834.959666px;}
.y20d{bottom:839.279664px;}
.y11{bottom:839.820600px;}
.y1e5{bottom:848.459661px;}
.y1a7{bottom:849.359660px;}
.y13{bottom:849.899660px;}
.yac{bottom:853.679659px;}
.y4e{bottom:854.219658px;}
.y181{bottom:855.299658px;}
.yd7{bottom:857.639657px;}
.y7b{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.y20c{bottom:863.759654px;}
.y1e4{bottom:872.219651px;}
.y1a6{bottom:873.119651px;}
.yab{bottom:877.079649px;}
.y4d{bottom:877.439649px;}
.y180{bottom:878.339649px;}
.yd6{bottom:880.679648px;}
.y7a{bottom:880.859648px;}
.y20b{bottom:888.419645px;}
.ye{bottom:893.639643px;}
.y1e3{bottom:895.979642px;}
.y1a5{bottom:896.879641px;}
.yaa{bottom:900.299640px;}
.y4c{bottom:900.839640px;}
.y17f{bottom:901.379639px;}
.yd5{bottom:903.719639px;}
.y79{bottom:903.899638px;}
.y20a{bottom:912.899635px;}
.y1e2{bottom:919.919632px;}
.y1a4{bottom:920.639632px;}
.ya9{bottom:923.699631px;}
.y4b{bottom:924.239630px;}
.y17e{bottom:924.419630px;}
.yd4{bottom:926.759629px;}
.y78{bottom:926.939629px;}
.yd{bottom:934.319626px;}
.y209{bottom:937.559625px;}
.y1e1{bottom:943.679623px;}
.y1a3{bottom:944.399622px;}
.ya8{bottom:947.099621px;}
.y4a{bottom:947.459621px;}
.yd3{bottom:949.799620px;}
.y76{bottom:949.979620px;}
.y77{bottom:953.759618px;}
.y208{bottom:962.039615px;}
.y1e0{bottom:967.439613px;}
.y1a2{bottom:968.159613px;}
.ya7{bottom:970.319612px;}
.y49{bottom:970.859612px;}
.yd2{bottom:972.839611px;}
.y75{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y207{bottom:986.519605px;}
.y1df{bottom:991.199604px;}
.y1a1{bottom:991.919603px;}
.y17d{bottom:993.359603px;}
.ya6{bottom:993.719603px;}
.y48{bottom:994.079602px;}
.yd1{bottom:995.699602px;}
.y74{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y206{bottom:1011.179596px;}
.y1de{bottom:1014.959594px;}
.y1a0{bottom:1015.679594px;}
.y17c{bottom:1016.399593px;}
.ya5{bottom:1016.939593px;}
.y47{bottom:1017.479593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.yd0{bottom:1018.739593px;}
.y73{bottom:1018.919592px;}
.y205{bottom:1035.659586px;}
.y1dd{bottom:1038.719585px;}
.y17b{bottom:1039.439584px;}
.ya4{bottom:1040.339584px;}
.y46{bottom:1040.879584px;}
.ycf{bottom:1041.779583px;}
.y72{bottom:1041.959583px;}
.y40{bottom:1051.500600px;}
.y204{bottom:1060.139576px;}
.y1dc{bottom:1062.479575px;}
.y17a{bottom:1062.839575px;}
.y19f{bottom:1063.199575px;}
.ya3{bottom:1063.739575px;}
.y45{bottom:1064.099574px;}
.yce{bottom:1064.819574px;}
.y71{bottom:1064.999574px;}
.y3f{bottom:1066.979573px;}
.y203{bottom:1084.799566px;}
.y1db{bottom:1086.239566px;}
.y179{bottom:1086.599565px;}
.ya2{bottom:1086.959565px;}
.y3e{bottom:1087.319565px;}
.y44{bottom:1087.499565px;}
.ycd{bottom:1087.859565px;}
.y70{bottom:1088.039565px;}
.y3d{bottom:1107.659557px;}
.y202{bottom:1109.279556px;}
.y1da{bottom:1109.999556px;}
.y178{bottom:1110.179556px;}
.ya1{bottom:1110.359556px;}
.y43{bottom:1110.719556px;}
.y6f{bottom:1110.899556px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y3b{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.ya0{bottom:1133.579547px;}
.ycc{bottom:1133.759546px;}
.y42{bottom:1133.939546px;}
.y9e{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y9d{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h24{height:12.060000px;}
.hc{height:13.500000px;}
.h1a{height:15.120000px;}
.h27{height:15.300000px;}
.h26{height:15.480000px;}
.h17{height:18.720000px;}
.h9{height:18.773430px;}
.h19{height:18.900000px;}
.he{height:20.160000px;}
.h13{height:20.340000px;}
.h5{height:20.520000px;}
.h12{height:22.171632px;}
.h21{height:23.760000px;}
.h15{height:24.439209px;}
.h1{height:24.480000px;}
.h1e{height:25.913662px;}
.h10{height:25.951630px;}
.h20{height:27.228505px;}
.h1c{height:32.152136px;}
.hd{height:32.199245px;}
.h11{height:36.179986px;}
.h1b{height:40.842757px;}
.h1f{height:43.185920px;}
.h1d{height:45.199318px;}
.h6{height:47.988262px;}
.hf{height:48.058575px;}
.h14{height:48.199199px;}
.h18{height:50.100449px;}
.h23{height:53.999978px;}
.h8{height:54.457009px;}
.h25{height:56.159978px;}
.h2{height:57.215719px;}
.h22{height:63.179975px;}
.ha{height:63.917904px;}
.hb{height:67.548728px;}
.h16{height:70.628878px;}
.h28{height:71.802745px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w29{width:0.900000px;}
.w2a{width:1.440000px;}
.w39{width:3.600000px;}
.w36{width:3.780000px;}
.w25{width:3.960000px;}
.w46{width:4.320000px;}
.w56{width:4.500000px;}
.w3{width:4.680000px;}
.w10{width:4.860000px;}
.w4c{width:5.040000px;}
.w27{width:5.580000px;}
.w2b{width:5.940000px;}
.w33{width:6.300000px;}
.we{width:6.480000px;}
.w48{width:6.660000px;}
.w1e{width:6.840000px;}
.w5{width:7.020000px;}
.w59{width:7.200000px;}
.w49{width:7.380000px;}
.w23{width:7.560000px;}
.w31{width:7.740000px;}
.w1b{width:8.100000px;}
.w9{width:8.280000px;}
.w8{width:8.820000px;}
.w12{width:9.540000px;}
.wc{width:9.720000px;}
.w15{width:9.900000px;}
.w22{width:10.800000px;}
.w7{width:12.420000px;}
.w4a{width:14.400000px;}
.w3c{width:14.580000px;}
.w3d{width:14.760000px;}
.w44{width:15.120000px;}
.w54{width:15.300000px;}
.w51{width:15.660000px;}
.w1{width:16.740000px;}
.w32{width:22.320000px;}
.w26{width:23.220000px;}
.w6{width:24.840000px;}
.w5c{width:25.920000px;}
.w4d{width:27.360000px;}
.w53{width:27.720000px;}
.w2f{width:31.320000px;}
.w60{width:32.580000px;}
.w5b{width:32.940000px;}
.w5a{width:33.120000px;}
.w28{width:33.660000px;}
.w5e{width:34.200000px;}
.w3a{width:34.380000px;}
.w20{width:35.100000px;}
.w50{width:35.460000px;}
.w4e{width:35.640000px;}
.w37{width:35.820000px;}
.w35{width:36.000000px;}
.w3f{width:36.180000px;}
.w4b{width:38.160000px;}
.w34{width:38.520000px;}
.wf{width:38.880000px;}
.w55{width:39.420000px;}
.w45{width:39.780000px;}
.w52{width:40.320000px;}
.w3e{width:40.860000px;}
.w38{width:41.040000px;}
.w2c{width:41.940000px;}
.w14{width:42.300000px;}
.w5f{width:43.380000px;}
.w40{width:43.560000px;}
.w2d{width:46.260000px;}
.w3b{width:47.160000px;}
.w24{width:47.520000px;}
.wb{width:47.880000px;}
.w17{width:48.240000px;}
.w43{width:49.500000px;}
.w57{width:50.400000px;}
.wd{width:50.940000px;}
.w41{width:54.540000px;}
.w2{width:57.240000px;}
.w30{width:58.140000px;}
.w11{width:60.480000px;}
.w47{width:61.020000px;}
.w42{width:62.280000px;}
.w5d{width:62.640000px;}
.w2e{width:63.360000px;}
.w4f{width:70.020000px;}
.w58{width:72.540000px;}
.w13{width:75.780000px;}
.w18{width:77.220000px;}
.w4{width:77.400000px;}
.w16{width:77.760000px;}
.w1c{width:81.360000px;}
.wa{width:94.680000px;}
.w1d{width:119.160000px;}
.w1f{width:201.420000px;}
.w19{width:242.460000px;}
.w1a{width:354.780000px;}
.w21{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3c{left:1.073925px;}
.xa{left:107.999957px;}
.x38{left:111.240000px;}
.xc{left:116.100000px;}
.xe{left:130.679908px;}
.x39{left:187.380000px;}
.xf{left:200.339857px;}
.x1b{left:201.780000px;}
.x10{left:204.839853px;}
.xd{left:206.999917px;}
.x2e{left:214.559914px;}
.x2f{left:219.779912px;}
.x1c{left:249.659900px;}
.x11{left:259.740421px;}
.x1d{left:274.500000px;}
.x36{left:275.579890px;}
.x37{left:280.799888px;}
.x1e{left:284.220000px;}
.x3d{left:306.540000px;}
.x3e{left:313.380000px;}
.x1f{left:335.160000px;}
.x20{left:341.640000px;}
.x30{left:379.439848px;}
.xb{left:382.859847px;}
.x31{left:384.659846px;}
.x21{left:392.580000px;}
.x4a{left:424.080961px;}
.x3a{left:429.840000px;}
.x22{left:431.460000px;}
.x41{left:433.079827px;}
.x23{left:436.320000px;}
.x44{left:462.599815px;}
.x4b{left:464.400000px;}
.x45{left:468.359813px;}
.x46{left:474.659810px;}
.x3b{left:479.152308px;}
.x19{left:489.059804px;}
.x6e{left:490.320000px;}
.x12{left:493.920784px;}
.x59{left:495.719802px;}
.x24{left:496.799801px;}
.x25{left:501.840000px;}
.x40{left:502.919799px;}
.x13{left:507.240775px;}
.x26{left:511.380000px;}
.x3f{left:514.800000px;}
.x14{left:524.880705px;}
.x32{left:525.959790px;}
.x42{left:529.010938px;}
.x33{left:531.179788px;}
.x6b{left:536.940000px;}
.x15{left:538.200696px;}
.x4c{left:543.600000px;}
.x1{left:549.000000px;}
.x16{left:551.520687px;}
.x17{left:555.840685px;}
.x2{left:565.740000px;}
.x52{left:577.259769px;}
.x5f{left:579.420000px;}
.x27{left:587.160000px;}
.x43{left:588.779764px;}
.x60{left:590.760000px;}
.x64{left:593.100000px;}
.x5a{left:601.740000px;}
.x67{left:604.620000px;}
.x6f{left:606.240000px;}
.x61{left:620.640000px;}
.x3{left:622.980000px;}
.x68{left:624.240000px;}
.x4{left:627.660000px;}
.x28{left:629.459748px;}
.x4d{left:632.159747px;}
.x29{left:634.500000px;}
.x6a{left:635.760000px;}
.x47{left:640.799744px;}
.x53{left:642.960000px;}
.x2a{left:644.400000px;}
.x54{left:645.479742px;}
.x48{left:647.099741px;}
.x5b{left:650.340000px;}
.x62{left:654.120000px;}
.x18{left:666.359733px;}
.x63{left:668.880000px;}
.x5c{left:672.660000px;}
.x34{left:675.179730px;}
.x55{left:677.520000px;}
.x35{left:680.399728px;}
.x56{left:685.080000px;}
.x57{left:694.440000px;}
.x5d{left:696.240000px;}
.x6c{left:698.940000px;}
.x70{left:702.540000px;}
.x5{left:705.060000px;}
.x1a{left:713.159715px;}
.x6{left:722.340000px;}
.x71{left:728.460000px;}
.x6d{left:732.060000px;}
.x69{left:734.580000px;}
.x4e{left:735.660000px;}
.x58{left:740.700000px;}
.x5e{left:743.760000px;}
.x50{left:745.553702px;}
.x7{left:747.180000px;}
.x4f{left:751.680000px;}
.x65{left:757.620000px;}
.x8{left:759.600000px;}
.x66{left:765.900000px;}
.x2b{left:770.399692px;}
.x9{left:772.020000px;}
.x2c{left:775.440000px;}
.x51{left:777.960000px;}
.x2d{left:780.299688px;}
.x49{left:784.437117px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.119992pt;}
.v3{vertical-align:27.519989pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018917pt;}
.ls6{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.168267pt;}
.lsb{letter-spacing:0.185809pt;}
.ls3{letter-spacing:0.301347pt;}
.ls2{letter-spacing:0.303046pt;}
.lsa{letter-spacing:1.239360pt;}
.ls8{letter-spacing:3.800798pt;}
.ls4{letter-spacing:4.457545pt;}
.ls9{letter-spacing:10.204476pt;}
.ws3{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-16.018911pt;}
.ws2{word-spacing:-15.999994pt;}
.ws9{word-spacing:-12.377804pt;}
.ws8{word-spacing:-12.191995pt;}
.ws6{word-spacing:-11.567995pt;}
.ws4{word-spacing:-9.192956pt;}
.ws5{word-spacing:-7.212797pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._b{margin-left:-416.192836pt;}
._a{margin-left:-392.964607pt;}
._3{margin-left:-246.707400pt;}
._6{margin-left:-194.892669pt;}
._1{margin-left:-80.500602pt;}
._9{margin-left:-62.719411pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._10{margin-left:-3.698175pt;}
._11{margin-left:-2.447890pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._15{width:1.995949pt;}
._d{width:2.908397pt;}
._c{width:4.223526pt;}
._13{width:6.000224pt;}
._12{width:6.989955pt;}
._17{width:8.558753pt;}
._1a{width:10.029452pt;}
._3a{width:11.075932pt;}
._1c{width:12.921562pt;}
._18{width:13.865161pt;}
._19{width:14.848116pt;}
._1d{width:15.777692pt;}
._14{width:16.687653pt;}
._16{width:17.744584pt;}
._1b{width:18.823916pt;}
._20{width:19.791367pt;}
._23{width:21.534790pt;}
._2d{width:22.896885pt;}
._25{width:23.881677pt;}
._e{width:24.800580pt;}
._f{width:25.787796pt;}
._21{width:27.041937pt;}
._22{width:28.130675pt;}
._33{width:29.264029pt;}
._1f{width:30.212156pt;}
._26{width:31.372786pt;}
._2e{width:32.365737pt;}
._2c{width:34.047466pt;}
._28{width:35.723428pt;}
._1e{width:36.802482pt;}
._24{width:37.934921pt;}
._2f{width:38.830047pt;}
._31{width:39.797877pt;}
._3c{width:40.842420pt;}
._3b{width:42.003185pt;}
._32{width:43.112350pt;}
._38{width:44.557856pt;}
._29{width:45.851751pt;}
._27{width:47.313149pt;}
._39{width:48.460346pt;}
._40{width:49.350635pt;}
._3d{width:50.696299pt;}
._3e{width:52.692731pt;}
._3f{width:54.002104pt;}
._30{width:55.934002pt;}
._37{width:69.363275pt;}
._34{width:75.840503pt;}
._2a{width:83.148236pt;}
._2b{width:84.049691pt;}
._35{width:114.574034pt;}
._36{width:148.513381pt;}
.fs3{font-size:15.999994pt;}
.fs8{font-size:29.439988pt;}
.fsc{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fs6{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fsb{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y41{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:2.719202pt;}
.y123{bottom:2.719205pt;}
.y128{bottom:2.719207pt;}
.y12d{bottom:2.719213pt;}
.y12a{bottom:2.719216pt;}
.y130{bottom:2.719224pt;}
.y132{bottom:2.719230pt;}
.y134{bottom:2.719235pt;}
.y137{bottom:2.719241pt;}
.y139{bottom:2.719246pt;}
.y13b{bottom:2.719252pt;}
.y140{bottom:2.719254pt;}
.y13d{bottom:2.719257pt;}
.y148{bottom:2.719262pt;}
.y143{bottom:2.719265pt;}
.y14a{bottom:2.719268pt;}
.y145{bottom:2.719271pt;}
.y14c{bottom:2.719273pt;}
.y14e{bottom:2.719279pt;}
.y150{bottom:2.719284pt;}
.y152{bottom:2.719290pt;}
.y154{bottom:2.719295pt;}
.y158{bottom:2.719301pt;}
.y29{bottom:2.719304pt;}
.y15a{bottom:2.719306pt;}
.y10{bottom:2.879160pt;}
.y24{bottom:3.199288pt;}
.y27{bottom:3.199291pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y1b{bottom:4.319204pt;}
.y3c{bottom:5.759065pt;}
.y9f{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y6e{bottom:98.986627pt;}
.y201{bottom:99.146894pt;}
.y168{bottom:99.626627pt;}
.y1c5{bottom:99.786893pt;}
.y11e{bottom:100.266627pt;}
.y10d{bottom:100.746626pt;}
.y177{bottom:101.066626pt;}
.y19e{bottom:101.226893pt;}
.y9c{bottom:101.386626pt;}
.ycb{bottom:101.546626pt;}
.yed{bottom:101.706626pt;}
.y1d9{bottom:101.706893pt;}
.y3a{bottom:108.746890pt;}
.y39{bottom:112.106888pt;}
.y6d{bottom:119.466619pt;}
.y167{bottom:120.106619pt;}
.y200{bottom:120.266885pt;}
.y11d{bottom:120.586618pt;}
.y1c4{bottom:120.906885pt;}
.y10c{bottom:121.226618pt;}
.yca{bottom:121.386618pt;}
.y19d{bottom:121.706885pt;}
.yec{bottom:122.026618pt;}
.y9b{bottom:122.186618pt;}
.yff{bottom:122.346618pt;}
.y1d8{bottom:122.506884pt;}
.y226{bottom:123.146884pt;}
.y38{bottom:128.906615pt;}
.yeb{bottom:139.786611pt;}
.y6c{bottom:139.946611pt;}
.y166{bottom:140.426610pt;}
.yc9{bottom:141.066610pt;}
.y1ff{bottom:141.386610pt;}
.y10b{bottom:141.546610pt;}
.y1c3{bottom:142.026610pt;}
.y9a{bottom:142.826610pt;}
.yfe{bottom:142.986609pt;}
.y176{bottom:143.146609pt;}
.y225{bottom:144.906609pt;}
.y37{bottom:147.946607pt;}
.y6b{bottom:160.426602pt;}
.yc8{bottom:160.906602pt;}
.y11c{bottom:161.546602pt;}
.y10a{bottom:162.026602pt;}
.y1fe{bottom:162.506602pt;}
.y1c2{bottom:163.146601pt;}
.y99{bottom:163.626601pt;}
.yfd{bottom:163.786601pt;}
.y1d7{bottom:163.946601pt;}
.y175{bottom:164.266601pt;}
.y19c{bottom:164.906601pt;}
.y224{bottom:166.666600pt;}
.y36{bottom:166.986600pt;}
.y6a{bottom:180.746594pt;}
.y165{bottom:181.386594pt;}
.y11b{bottom:182.026594pt;}
.y109{bottom:182.506594pt;}
.y1fd{bottom:183.626593pt;}
.y1c1{bottom:184.266593pt;}
.y98{bottom:184.426593pt;}
.y1d6{bottom:184.586593pt;}
.y174{bottom:185.226593pt;}
.y19b{bottom:185.386593pt;}
.y35{bottom:186.026592pt;}
.y223{bottom:188.586591pt;}
.yc7{bottom:200.426586pt;}
.y69{bottom:201.226586pt;}
.y164{bottom:201.866586pt;}
.y11a{bottom:202.506586pt;}
.y108{bottom:202.986585pt;}
.y1fc{bottom:204.746585pt;}
.y97{bottom:205.066585pt;}
.y34{bottom:205.226585pt;}
.y1c0{bottom:205.386585pt;}
.y19a{bottom:205.866584pt;}
.y173{bottom:206.186584pt;}
.y222{bottom:210.346583pt;}
.yc6{bottom:220.266579pt;}
.y107{bottom:220.746578pt;}
.y68{bottom:221.706578pt;}
.y163{bottom:222.346578pt;}
.y119{bottom:222.986577pt;}
.y33{bottom:224.266577pt;}
.y96{bottom:225.866576pt;}
.yfc{bottom:226.026576pt;}
.y1d5{bottom:226.186576pt;}
.y199{bottom:226.346576pt;}
.y1bf{bottom:226.506576pt;}
.y172{bottom:227.306576pt;}
.y221{bottom:234.506573pt;}
.yc5{bottom:239.946571pt;}
.y67{bottom:242.186570pt;}
.y162{bottom:242.666570pt;}
.y32{bottom:243.306569pt;}
.y95{bottom:246.506568pt;}
.yfb{bottom:246.666568pt;}
.y1d4{bottom:246.826568pt;}
.y1fb{bottom:246.986568pt;}
.y1be{bottom:247.626568pt;}
.y171{bottom:248.266567pt;}
.y220{bottom:258.826563pt;}
.yc4{bottom:259.786563pt;}
.y31{bottom:262.506562pt;}
.y66{bottom:262.666562pt;}
.y161{bottom:263.146561pt;}
.y118{bottom:263.786561pt;}
.y198{bottom:267.146560pt;}
.y94{bottom:267.306560pt;}
.yfa{bottom:267.466560pt;}
.y1d3{bottom:267.626560pt;}
.y1fa{bottom:268.106559pt;}
.y1bd{bottom:268.906559pt;}
.y170{bottom:269.226559pt;}
.yc3{bottom:279.466555pt;}
.y21f{bottom:280.586554pt;}
.y30{bottom:281.546554pt;}
.y65{bottom:283.146553pt;}
.y160{bottom:283.626553pt;}
.y117{bottom:284.266553pt;}
.y93{bottom:288.106551pt;}
.y1d2{bottom:288.266551pt;}
.y197{bottom:288.426551pt;}
.y1f9{bottom:289.226551pt;}
.y1bc{bottom:290.026551pt;}
.y16f{bottom:290.346551pt;}
.yc2{bottom:299.306547pt;}
.y2f{bottom:300.586546pt;}
.y21e{bottom:302.506546pt;}
.y64{bottom:303.466545pt;}
.y15f{bottom:304.106545pt;}
.y116{bottom:304.746545pt;}
.y92{bottom:308.746543pt;}
.yf9{bottom:308.906543pt;}
.y1d1{bottom:309.066543pt;}
.y196{bottom:310.346543pt;}
.y1bb{bottom:311.146542pt;}
.y16e{bottom:311.306542pt;}
.yc1{bottom:318.986539pt;}
.y2e{bottom:319.786539pt;}
.y63{bottom:323.946537pt;}
.y21d{bottom:324.266537pt;}
.y15e{bottom:324.586537pt;}
.y115{bottom:325.226537pt;}
.y91{bottom:329.546535pt;}
.yf8{bottom:329.706535pt;}
.y1d0{bottom:329.866535pt;}
.y195{bottom:330.826534pt;}
.y1f8{bottom:331.626534pt;}
.y1ba{bottom:332.266534pt;}
.y16d{bottom:332.426534pt;}
.y2d{bottom:338.826531pt;}
.y62{bottom:344.586529pt;}
.y15d{bottom:345.066529pt;}
.y114{bottom:345.546528pt;}
.y21c{bottom:346.026528pt;}
.y90{bottom:350.186527pt;}
.yf7{bottom:350.346527pt;}
.y1cf{bottom:350.506526pt;}
.y194{bottom:351.306526pt;}
.y1f7{bottom:352.746526pt;}
.yea{bottom:353.386525pt;}
.y2c{bottom:357.866524pt;}
.yc0{bottom:358.666523pt;}
.y61{bottom:365.226521pt;}
.y15c{bottom:365.386521pt;}
.y113{bottom:366.026520pt;}
.y21b{bottom:367.946519pt;}
.y8f{bottom:370.986518pt;}
.yf6{bottom:371.146518pt;}
.y1ce{bottom:371.306518pt;}
.y193{bottom:371.786518pt;}
.ye9{bottom:373.866517pt;}
.y16c{bottom:374.026517pt;}
.y1b9{bottom:374.506517pt;}
.y2b{bottom:378.026515pt;}
.ybf{bottom:378.346515pt;}
.y106{bottom:382.186514pt;}
.y15b{bottom:385.866512pt;}
.y60{bottom:386.026512pt;}
.y112{bottom:386.506512pt;}
.y8e{bottom:391.786510pt;}
.y1cd{bottom:391.946510pt;}
.y192{bottom:392.106510pt;}
.ye8{bottom:394.346509pt;}
.y16b{bottom:394.506509pt;}
.y1f6{bottom:394.986509pt;}
.y1b8{bottom:395.626508pt;}
.ybe{bottom:398.186507pt;}
.y159{bottom:398.667200pt;}
.y105{bottom:402.666506pt;}
.y28{bottom:405.067200pt;}
.y156{bottom:405.547200pt;}
.y5f{bottom:406.826504pt;}
.y2a{bottom:407.786504pt;}
.y111{bottom:408.746503pt;}
.y157{bottom:412.267200pt;}
.y8d{bottom:412.426502pt;}
.yf5{bottom:412.586502pt;}
.y1cc{bottom:412.746502pt;}
.ye7{bottom:414.666501pt;}
.y16a{bottom:414.826501pt;}
.y1f5{bottom:416.106500pt;}
.y21a{bottom:416.426500pt;}
.y1b7{bottom:416.746500pt;}
.ybd{bottom:417.866500pt;}
.y104{bottom:423.146497pt;}
.y153{bottom:425.867200pt;}
.y5e{bottom:427.466496pt;}
.y155{bottom:428.586495pt;}
.y110{bottom:431.946494pt;}
.y191{bottom:433.066493pt;}
.yf4{bottom:433.386493pt;}
.y1cb{bottom:433.546493pt;}
.y8c{bottom:433.866493pt;}
.y26{bottom:434.827200pt;}
.ye6{bottom:435.146493pt;}
.y169{bottom:435.306493pt;}
.y1f4{bottom:437.226492pt;}
.ybc{bottom:437.706492pt;}
.y1b6{bottom:437.866492pt;}
.y25{bottom:438.026491pt;}
.y219{bottom:438.186491pt;}
.y151{bottom:439.627200pt;}
.y23{bottom:442.827200pt;}
.y103{bottom:443.626489pt;}
.y5d{bottom:448.266487pt;}
.y10f{bottom:452.426486pt;}
.y14f{bottom:453.227200pt;}
.y190{bottom:453.546485pt;}
.yf3{bottom:454.026485pt;}
.y1ca{bottom:454.186485pt;}
.ye5{bottom:455.626484pt;}
.y8b{bottom:455.786484pt;}
.ybb{bottom:457.386484pt;}
.y1f3{bottom:458.346483pt;}
.y1b5{bottom:458.986483pt;}
.y218{bottom:459.946483pt;}
.y102{bottom:464.106481pt;}
.y14d{bottom:466.827200pt;}
.y5c{bottom:468.906479pt;}
.y10e{bottom:470.186479pt;}
.y22{bottom:471.946478pt;}
.y18f{bottom:474.026477pt;}
.yf2{bottom:474.826477pt;}
.y1c9{bottom:474.986477pt;}
.ye4{bottom:476.106476pt;}
.y8a{bottom:476.266476pt;}
.yba{bottom:477.226476pt;}
.y1f2{bottom:479.466475pt;}
.y1b4{bottom:480.106475pt;}
.y14b{bottom:480.427200pt;}
.y101{bottom:481.706474pt;}
.y217{bottom:483.146473pt;}
.y144{bottom:487.307200pt;}
.y5b{bottom:489.706471pt;}
.y146{bottom:490.026471pt;}
.y149{bottom:494.187200pt;}
.y18e{bottom:494.346469pt;}
.yf1{bottom:495.466468pt;}
.y1c8{bottom:495.626468pt;}
.ye3{bottom:496.586468pt;}
.y89{bottom:496.746468pt;}
.yb9{bottom:497.066468pt;}
.y21{bottom:498.346467pt;}
.y1f1{bottom:500.586466pt;}
.y142{bottom:500.907200pt;}
.y1b3{bottom:501.386466pt;}
.y216{bottom:506.026464pt;}
.y147{bottom:507.787200pt;}
.y5a{bottom:510.506462pt;}
.y18d{bottom:514.826461pt;}
.yf0{bottom:516.266460pt;}
.y1c7{bottom:516.426460pt;}
.yb8{bottom:516.746460pt;}
.ye2{bottom:516.906460pt;}
.y88{bottom:517.066460pt;}
.y13c{bottom:521.387200pt;}
.y1f0{bottom:521.706458pt;}
.y1b2{bottom:522.506458pt;}
.y13e{bottom:524.106457pt;}
.y215{bottom:527.946455pt;}
.y13f{bottom:528.267200pt;}
.y20{bottom:529.866455pt;}
.y141{bottom:530.986454pt;}
.y59{bottom:531.146454pt;}
.y13a{bottom:534.987200pt;}
.y18c{bottom:535.306453pt;}
.yb7{bottom:536.586452pt;}
.yef{bottom:537.066452pt;}
.y1c6{bottom:537.226452pt;}
.ye1{bottom:537.386452pt;}
.y87{bottom:537.546452pt;}
.y1ef{bottom:542.826450pt;}
.y1b1{bottom:543.626449pt;}
.y138{bottom:548.587200pt;}
.y214{bottom:549.706447pt;}
.y58{bottom:551.946446pt;}
.y18b{bottom:555.786444pt;}
.y1f{bottom:556.106444pt;}
.yb6{bottom:556.266444pt;}
.yee{bottom:557.706444pt;}
.ye0{bottom:557.866444pt;}
.y86{bottom:558.026443pt;}
.y136{bottom:562.347200pt;}
.y1ee{bottom:564.106441pt;}
.y1b0{bottom:564.746441pt;}
.y213{bottom:571.466438pt;}
.y57{bottom:572.586438pt;}
.y133{bottom:575.947200pt;}
.yb5{bottom:576.106436pt;}
.y18a{bottom:576.266436pt;}
.ydf{bottom:578.346435pt;}
.y85{bottom:578.506435pt;}
.y135{bottom:578.666435pt;}
.y1e{bottom:582.506434pt;}
.y1ed{bottom:585.226433pt;}
.y1af{bottom:585.866432pt;}
.y131{bottom:589.547200pt;}
.y56{bottom:593.386429pt;}
.yb4{bottom:595.786428pt;}
.y189{bottom:596.746428pt;}
.yde{bottom:598.826427pt;}
.y84{bottom:598.986427pt;}
.y12f{bottom:603.147200pt;}
.y1ec{bottom:606.346424pt;}
.y1ae{bottom:606.986424pt;}
.y1d{bottom:608.746423pt;}
.y55{bottom:614.186421pt;}
.y212{bottom:615.146421pt;}
.yb3{bottom:615.626420pt;}
.y188{bottom:617.066420pt;}
.ydd{bottom:619.306419pt;}
.y83{bottom:619.466419pt;}
.y12e{bottom:620.266419pt;}
.y129{bottom:624.267200pt;}
.y12b{bottom:626.986416pt;}
.y1eb{bottom:627.466416pt;}
.y1ad{bottom:628.106415pt;}
.y1c{bottom:629.866415pt;}
.y12c{bottom:631.147200pt;}
.y54{bottom:634.826413pt;}
.yb2{bottom:635.466412pt;}
.y211{bottom:636.906412pt;}
.y187{bottom:637.546412pt;}
.ydc{bottom:639.626411pt;}
.y81{bottom:639.786411pt;}
.y82{bottom:643.146409pt;}
.y127{bottom:645.387200pt;}
.y126{bottom:648.106407pt;}
.y1ea{bottom:648.586407pt;}
.y1ac{bottom:649.226407pt;}
.y1a{bottom:651.787200pt;}
.y122{bottom:652.267200pt;}
.yb1{bottom:655.146405pt;}
.y100{bottom:655.306405pt;}
.y53{bottom:655.626404pt;}
.y186{bottom:658.026403pt;}
.y210{bottom:658.826403pt;}
.y124{bottom:658.987200pt;}
.ydb{bottom:660.106403pt;}
.y80{bottom:660.266403pt;}
.y19{bottom:661.386402pt;}
.y1e9{bottom:669.706399pt;}
.y1ab{bottom:670.346399pt;}
.y18{bottom:671.946398pt;}
.yb0{bottom:675.946396pt;}
.y52{bottom:676.266396pt;}
.y185{bottom:678.506395pt;}
.yda{bottom:680.586394pt;}
.y7f{bottom:680.746394pt;}
.y121{bottom:684.426393pt;}
.y1e8{bottom:690.826390pt;}
.y1aa{bottom:691.466390pt;}
.y16{bottom:696.426388pt;}
.yaf{bottom:696.586388pt;}
.y51{bottom:697.066388pt;}
.y184{bottom:698.986387pt;}
.y17{bottom:701.066386pt;}
.y7e{bottom:701.226386pt;}
.y20f{bottom:702.346386pt;}
.y120{bottom:704.906385pt;}
.y1e7{bottom:711.946382pt;}
.y1a9{bottom:712.586382pt;}
.yae{bottom:717.386380pt;}
.y50{bottom:717.866380pt;}
.y11f{bottom:718.826379pt;}
.y183{bottom:719.466379pt;}
.yd9{bottom:721.546378pt;}
.y7d{bottom:721.706378pt;}
.y14{bottom:723.626377pt;}
.y20e{bottom:724.266377pt;}
.y15{bottom:728.266375pt;}
.y1e6{bottom:733.066373pt;}
.y1a8{bottom:733.706373pt;}
.yad{bottom:738.026371pt;}
.y4f{bottom:738.506371pt;}
.y182{bottom:739.786371pt;}
.yd8{bottom:742.026370pt;}
.y7c{bottom:742.186370pt;}
.y20d{bottom:746.026368pt;}
.y11{bottom:746.507200pt;}
.y1e5{bottom:754.186365pt;}
.y1a7{bottom:754.986365pt;}
.y13{bottom:755.466364pt;}
.yac{bottom:758.826363pt;}
.y4e{bottom:759.306363pt;}
.y181{bottom:760.266363pt;}
.yd7{bottom:762.346362pt;}
.y7b{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.y20c{bottom:767.786360pt;}
.y1e4{bottom:775.306357pt;}
.y1a6{bottom:776.106356pt;}
.yab{bottom:779.626355pt;}
.y4d{bottom:779.946355pt;}
.y180{bottom:780.746354pt;}
.yd6{bottom:782.826354pt;}
.y7a{bottom:782.986353pt;}
.y20b{bottom:789.706351pt;}
.ye{bottom:794.346349pt;}
.y1e3{bottom:796.426348pt;}
.y1a5{bottom:797.226348pt;}
.yaa{bottom:800.266347pt;}
.y4c{bottom:800.746346pt;}
.y17f{bottom:801.226346pt;}
.yd5{bottom:803.306345pt;}
.y79{bottom:803.466345pt;}
.y20a{bottom:811.466342pt;}
.y1e2{bottom:817.706340pt;}
.y1a4{bottom:818.346339pt;}
.ya9{bottom:821.066338pt;}
.y4b{bottom:821.546338pt;}
.y17e{bottom:821.706338pt;}
.yd4{bottom:823.786337pt;}
.y78{bottom:823.946337pt;}
.yd{bottom:830.506334pt;}
.y209{bottom:833.386333pt;}
.y1e1{bottom:838.826331pt;}
.y1a3{bottom:839.466331pt;}
.ya8{bottom:841.866330pt;}
.y4a{bottom:842.186330pt;}
.yd3{bottom:844.266329pt;}
.y76{bottom:844.426329pt;}
.y77{bottom:847.786328pt;}
.y208{bottom:855.146325pt;}
.y1e0{bottom:859.946323pt;}
.y1a2{bottom:860.586322pt;}
.ya7{bottom:862.506322pt;}
.y49{bottom:862.986321pt;}
.yd2{bottom:864.746321pt;}
.y75{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y207{bottom:876.906316pt;}
.y1df{bottom:881.066314pt;}
.y1a1{bottom:881.706314pt;}
.y17d{bottom:882.986313pt;}
.ya6{bottom:883.306313pt;}
.y48{bottom:883.626313pt;}
.yd1{bottom:885.066313pt;}
.y74{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y206{bottom:898.826307pt;}
.y1de{bottom:902.186306pt;}
.y1a0{bottom:902.826306pt;}
.y17c{bottom:903.466305pt;}
.ya5{bottom:903.946305pt;}
.y47{bottom:904.426305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.yd0{bottom:905.546304pt;}
.y73{bottom:905.706304pt;}
.y205{bottom:920.586298pt;}
.y1dd{bottom:923.306297pt;}
.y17b{bottom:923.946297pt;}
.ya4{bottom:924.746297pt;}
.y46{bottom:925.226297pt;}
.ycf{bottom:926.026296pt;}
.y72{bottom:926.186296pt;}
.y40{bottom:934.667200pt;}
.y204{bottom:942.346290pt;}
.y1dc{bottom:944.426289pt;}
.y17a{bottom:944.746289pt;}
.y19f{bottom:945.066289pt;}
.ya3{bottom:945.546288pt;}
.y45{bottom:945.866288pt;}
.yce{bottom:946.506288pt;}
.y71{bottom:946.666288pt;}
.y3f{bottom:948.426287pt;}
.y203{bottom:964.266281pt;}
.y1db{bottom:965.546280pt;}
.y179{bottom:965.866280pt;}
.ya2{bottom:966.186280pt;}
.y3e{bottom:966.506280pt;}
.y44{bottom:966.666280pt;}
.ycd{bottom:966.986280pt;}
.y70{bottom:967.146280pt;}
.y3d{bottom:984.586273pt;}
.y202{bottom:986.026272pt;}
.y1da{bottom:986.666272pt;}
.y178{bottom:986.826272pt;}
.ya1{bottom:986.986272pt;}
.y43{bottom:987.306272pt;}
.y6f{bottom:987.466272pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y3b{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.ya0{bottom:1007.626264pt;}
.ycc{bottom:1007.786264pt;}
.y42{bottom:1007.946263pt;}
.y9e{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y9d{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h24{height:10.720000pt;}
.hc{height:12.000000pt;}
.h1a{height:13.440000pt;}
.h27{height:13.600000pt;}
.h26{height:13.760000pt;}
.h17{height:16.640000pt;}
.h9{height:16.687493pt;}
.h19{height:16.800000pt;}
.he{height:17.920000pt;}
.h13{height:18.080000pt;}
.h5{height:18.240000pt;}
.h12{height:19.708117pt;}
.h21{height:21.120000pt;}
.h15{height:21.723741pt;}
.h1{height:21.760000pt;}
.h1e{height:23.034366pt;}
.h10{height:23.068116pt;}
.h20{height:24.203115pt;}
.h1c{height:28.579676pt;}
.hd{height:28.621551pt;}
.h11{height:32.159987pt;}
.h1b{height:36.304673pt;}
.h1f{height:38.387485pt;}
.h1d{height:40.177171pt;}
.h6{height:42.656233pt;}
.hf{height:42.718733pt;}
.h14{height:42.843733pt;}
.h18{height:44.533732pt;}
.h23{height:47.999981pt;}
.h8{height:48.406231pt;}
.h25{height:49.919980pt;}
.h2{height:50.858417pt;}
.h22{height:56.159978pt;}
.ha{height:56.815915pt;}
.hb{height:60.043314pt;}
.h16{height:62.781225pt;}
.h28{height:63.824662pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w29{width:0.800000pt;}
.w2a{width:1.280000pt;}
.w39{width:3.200000pt;}
.w36{width:3.360000pt;}
.w25{width:3.520000pt;}
.w46{width:3.840000pt;}
.w56{width:4.000000pt;}
.w3{width:4.160000pt;}
.w10{width:4.320000pt;}
.w4c{width:4.480000pt;}
.w27{width:4.960000pt;}
.w2b{width:5.280000pt;}
.w33{width:5.600000pt;}
.we{width:5.760000pt;}
.w48{width:5.920000pt;}
.w1e{width:6.080000pt;}
.w5{width:6.240000pt;}
.w59{width:6.400000pt;}
.w49{width:6.560000pt;}
.w23{width:6.720000pt;}
.w31{width:6.880000pt;}
.w1b{width:7.200000pt;}
.w9{width:7.360000pt;}
.w8{width:7.840000pt;}
.w12{width:8.480000pt;}
.wc{width:8.640000pt;}
.w15{width:8.800000pt;}
.w22{width:9.600000pt;}
.w7{width:11.040000pt;}
.w4a{width:12.800000pt;}
.w3c{width:12.960000pt;}
.w3d{width:13.120000pt;}
.w44{width:13.440000pt;}
.w54{width:13.600000pt;}
.w51{width:13.920000pt;}
.w1{width:14.880000pt;}
.w32{width:19.840000pt;}
.w26{width:20.640000pt;}
.w6{width:22.080000pt;}
.w5c{width:23.040000pt;}
.w4d{width:24.320000pt;}
.w53{width:24.640000pt;}
.w2f{width:27.840000pt;}
.w60{width:28.960000pt;}
.w5b{width:29.280000pt;}
.w5a{width:29.440000pt;}
.w28{width:29.920000pt;}
.w5e{width:30.400000pt;}
.w3a{width:30.560000pt;}
.w20{width:31.200000pt;}
.w50{width:31.520000pt;}
.w4e{width:31.680000pt;}
.w37{width:31.840000pt;}
.w35{width:32.000000pt;}
.w3f{width:32.160000pt;}
.w4b{width:33.920000pt;}
.w34{width:34.240000pt;}
.wf{width:34.560000pt;}
.w55{width:35.040000pt;}
.w45{width:35.360000pt;}
.w52{width:35.840000pt;}
.w3e{width:36.320000pt;}
.w38{width:36.480000pt;}
.w2c{width:37.280000pt;}
.w14{width:37.600000pt;}
.w5f{width:38.560000pt;}
.w40{width:38.720000pt;}
.w2d{width:41.120000pt;}
.w3b{width:41.920000pt;}
.w24{width:42.240000pt;}
.wb{width:42.560000pt;}
.w17{width:42.880000pt;}
.w43{width:44.000000pt;}
.w57{width:44.800000pt;}
.wd{width:45.280000pt;}
.w41{width:48.480000pt;}
.w2{width:50.880000pt;}
.w30{width:51.680000pt;}
.w11{width:53.760000pt;}
.w47{width:54.240000pt;}
.w42{width:55.360000pt;}
.w5d{width:55.680000pt;}
.w2e{width:56.320000pt;}
.w4f{width:62.240000pt;}
.w58{width:64.480000pt;}
.w13{width:67.360000pt;}
.w18{width:68.640000pt;}
.w4{width:68.800000pt;}
.w16{width:69.120000pt;}
.w1c{width:72.320000pt;}
.wa{width:84.160000pt;}
.w1d{width:105.920000pt;}
.w1f{width:179.040000pt;}
.w19{width:215.520000pt;}
.w1a{width:315.360000pt;}
.w21{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3c{left:0.954600pt;}
.xa{left:95.999962pt;}
.x38{left:98.880000pt;}
.xc{left:103.200000pt;}
.xe{left:116.159918pt;}
.x39{left:166.560000pt;}
.xf{left:178.079873pt;}
.x1b{left:179.360000pt;}
.x10{left:182.079870pt;}
.xd{left:183.999926pt;}
.x2e{left:190.719924pt;}
.x2f{left:195.359922pt;}
.x1c{left:221.919911pt;}
.x11{left:230.880374pt;}
.x1d{left:244.000000pt;}
.x36{left:244.959902pt;}
.x37{left:249.599900pt;}
.x1e{left:252.640000pt;}
.x3d{left:272.480000pt;}
.x3e{left:278.560000pt;}
.x1f{left:297.920000pt;}
.x20{left:303.680000pt;}
.x30{left:337.279865pt;}
.xb{left:340.319864pt;}
.x31{left:341.919863pt;}
.x21{left:348.960000pt;}
.x4a{left:376.960854pt;}
.x3a{left:382.080000pt;}
.x22{left:383.520000pt;}
.x41{left:384.959846pt;}
.x23{left:387.840000pt;}
.x44{left:411.199836pt;}
.x4b{left:412.800000pt;}
.x45{left:416.319833pt;}
.x46{left:421.919831pt;}
.x3b{left:425.913163pt;}
.x19{left:434.719826pt;}
.x6e{left:435.840000pt;}
.x12{left:439.040697pt;}
.x59{left:440.639824pt;}
.x24{left:441.599823pt;}
.x25{left:446.080000pt;}
.x40{left:447.039821pt;}
.x13{left:450.880689pt;}
.x26{left:454.560000pt;}
.x3f{left:457.600000pt;}
.x14{left:466.560626pt;}
.x32{left:467.519813pt;}
.x42{left:470.231945pt;}
.x33{left:472.159811pt;}
.x6b{left:477.280000pt;}
.x15{left:478.400619pt;}
.x4c{left:483.200000pt;}
.x1{left:488.000000pt;}
.x16{left:490.240611pt;}
.x17{left:494.080609pt;}
.x2{left:502.880000pt;}
.x52{left:513.119795pt;}
.x5f{left:515.040000pt;}
.x27{left:521.920000pt;}
.x43{left:523.359791pt;}
.x60{left:525.120000pt;}
.x64{left:527.200000pt;}
.x5a{left:534.880000pt;}
.x67{left:537.440000pt;}
.x6f{left:538.880000pt;}
.x61{left:551.680000pt;}
.x3{left:553.760000pt;}
.x68{left:554.880000pt;}
.x4{left:557.920000pt;}
.x28{left:559.519776pt;}
.x4d{left:561.919775pt;}
.x29{left:564.000000pt;}
.x6a{left:565.120000pt;}
.x47{left:569.599772pt;}
.x53{left:571.520000pt;}
.x2a{left:572.800000pt;}
.x54{left:573.759770pt;}
.x48{left:575.199770pt;}
.x5b{left:578.080000pt;}
.x62{left:581.440000pt;}
.x18{left:592.319763pt;}
.x63{left:594.560000pt;}
.x5c{left:597.920000pt;}
.x34{left:600.159760pt;}
.x55{left:602.240000pt;}
.x35{left:604.799758pt;}
.x56{left:608.960000pt;}
.x57{left:617.280000pt;}
.x5d{left:618.880000pt;}
.x6c{left:621.280000pt;}
.x70{left:624.480000pt;}
.x5{left:626.720000pt;}
.x1a{left:633.919746pt;}
.x6{left:642.080000pt;}
.x71{left:647.520000pt;}
.x6d{left:650.720000pt;}
.x69{left:652.960000pt;}
.x4e{left:653.920000pt;}
.x58{left:658.400000pt;}
.x5e{left:661.120000pt;}
.x50{left:662.714402pt;}
.x7{left:664.160000pt;}
.x4f{left:668.160000pt;}
.x65{left:673.440000pt;}
.x8{left:675.200000pt;}
.x66{left:680.800000pt;}
.x2b{left:684.799726pt;}
.x9{left:686.240000pt;}
.x2c{left:689.280000pt;}
.x51{left:691.520000pt;}
.x2d{left:693.599723pt;}
.x49{left:697.277437pt;}
}




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