
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_307e4b13361c74143cab8c42.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_936767103f7cf5d5cae06226.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_1d187b4f8fef83e2f2417669.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_045c6d677bd16250d81a328e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_7da58e2a6305a85594b73c54.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_287f5aa9815c22518984c36b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_cb4c8522616db585aec04170.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1a108fd9aaa4dd9579906370.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_c1274cdfa6ff6720a3e00e3a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls27{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.942000px;}
.ls6{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.ls21{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.450600px;}
.ls1d{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.274800px;}
.ls11{letter-spacing:-0.109200px;}
.ls18{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.045360px;}
.ls5{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls1c{letter-spacing:0.127872px;}
.ls16{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.152400px;}
.ls1b{letter-spacing:0.156240px;}
.ls2{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.181200px;}
.ls24{letter-spacing:0.223800px;}
.ls1a{letter-spacing:0.223920px;}
.ls4{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls23{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.666000px;}
.lsf{letter-spacing:4.320000px;}
.ls13{letter-spacing:5.040000px;}
.ls17{letter-spacing:6.785280px;}
.ls12{letter-spacing:12.240000px;}
.lse{letter-spacing:12.960000px;}
.ls15{letter-spacing:39.905280px;}
.ls10{letter-spacing:46.800000px;}
.ls9{letter-spacing:59.345280px;}
.ls8{letter-spacing:81.809280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsd{word-spacing:-66.384000px;}
.wsa{word-spacing:-66.240000px;}
.ws0{word-spacing:-59.760000px;}
.ws20{word-spacing:-28.987200px;}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.wse{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.wsc{word-spacing:-16.254600px;}
.ws12{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.444000px;}
.ws1{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.264000px;}
.ws1c{word-spacing:-15.046800px;}
.ws1f{word-spacing:-14.993280px;}
.ws1a{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.939200px;}
.ws1b{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws13{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.283800px;}
.ws18{word-spacing:-12.241200px;}
.ws17{word-spacing:-12.096000px;}
.ws15{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.118000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._38{margin-left:-6.027840px;}
._33{margin-left:-3.905280px;}
._3e{margin-left:-2.100480px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._4{width:2.679360px;}
._1f{width:3.791040px;}
._8{width:5.465280px;}
._9{width:6.636480px;}
._7{width:8.539680px;}
._6{width:9.774720px;}
._a{width:10.825920px;}
._14{width:11.871360px;}
._13{width:12.931200px;}
._20{width:14.160000px;}
._12{width:15.231360px;}
._b{width:17.661120px;}
._2a{width:18.946560px;}
._e{width:20.110080px;}
._10{width:22.124160px;}
._28{width:23.964480px;}
._f{width:24.972480px;}
._3{width:26.231040px;}
._5{width:27.290880px;}
._29{width:28.593600px;}
._2e{width:30.159360px;}
._22{width:31.360320px;}
._21{width:32.457600px;}
._27{width:33.503040px;}
._26{width:34.591680px;}
._17{width:36.167040px;}
._15{width:37.889280px;}
._16{width:39.876480px;}
._1d{width:41.031360px;}
._3f{width:42.459840px;}
._3a{width:44.553600px;}
._1a{width:45.573120px;}
._1b{width:46.647360px;}
._18{width:47.891520px;}
._19{width:49.282560px;}
._41{width:50.522640px;}
._1c{width:51.865920px;}
._39{width:53.985600px;}
._30{width:55.457280px;}
._24{width:56.502720px;}
._25{width:57.628800px;}
._23{width:58.688640px;}
._32{width:59.961600px;}
._11{width:61.007040px;}
._40{width:62.464320px;}
._48{width:63.479808px;}
._43{width:66.400320px;}
._3d{width:68.425920px;}
._1e{width:73.160640px;}
._31{width:77.633280px;}
._2f{width:79.752960px;}
._44{width:80.945280px;}
._36{width:82.133760px;}
._35{width:83.710080px;}
._45{width:85.449600px;}
._34{width:86.941440px;}
._c{width:88.827840px;}
._d{width:90.493920px;}
._2d{width:95.760000px;}
._2b{width:97.770240px;}
._2c{width:98.776800px;}
._42{width:104.526720px;}
._3c{width:115.243200px;}
._3b{width:116.530560px;}
._46{width:120.623040px;}
._47{width:125.906400px;}
._4a{width:141.536160px;}
._37{width:143.396640px;}
._49{width:188.039520px;}
._4b{width:887.978400px;}
._2{width:961.680000px;}
.fc9{color:rgb(26,25,25);}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(41,45,120);}
.fc1{color:rgb(255,0,0);}
.fcb{color:rgb(35,31,32);}
.fca{color:rgb(51,51,51);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y16a{bottom:8.820000px;}
.y16f{bottom:9.000000px;}
.y13c{bottom:9.750000px;}
.y136{bottom:9.795000px;}
.y11f{bottom:9.825000px;}
.y112{bottom:9.870000px;}
.y142{bottom:9.894000px;}
.y113{bottom:9.900000px;}
.y8{bottom:10.800000px;}
.y159{bottom:12.210000px;}
.y160{bottom:12.345000px;}
.y14e{bottom:12.390000px;}
.y14f{bottom:12.420000px;}
.yfc{bottom:13.395000px;}
.yfe{bottom:13.500000px;}
.y16b{bottom:15.120000px;}
.y16d{bottom:19.905000px;}
.y170{bottom:19.980000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y168{bottom:23.145000px;}
.y166{bottom:23.760000px;}
.y15d{bottom:23.805000px;}
.y154{bottom:23.940000px;}
.y15c{bottom:27.045000px;}
.y153{bottom:27.180000px;}
.y15b{bottom:27.225000px;}
.y152{bottom:27.360000px;}
.y162{bottom:30.240000px;}
.y13b{bottom:30.450000px;}
.y135{bottom:30.495000px;}
.y124{bottom:30.525000px;}
.y110{bottom:30.570000px;}
.y145{bottom:30.594000px;}
.y111{bottom:30.600000px;}
.y11d{bottom:30.645000px;}
.y35{bottom:37.080000px;}
.y164{bottom:38.085000px;}
.y158{bottom:38.130000px;}
.y15f{bottom:38.265000px;}
.y14c{bottom:38.310000px;}
.y14d{bottom:38.340000px;}
.y100{bottom:42.015000px;}
.y102{bottom:42.120000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y13a{bottom:51.150000px;}
.y134{bottom:51.195000px;}
.y123{bottom:51.225000px;}
.y10f{bottom:51.270000px;}
.y143{bottom:51.294000px;}
.y114{bottom:51.300000px;}
.y11e{bottom:51.345000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y149{bottom:64.230000px;}
.y14b{bottom:64.260000px;}
.y5{bottom:68.976000px;}
.y141{bottom:71.850000px;}
.y133{bottom:71.895000px;}
.y121{bottom:71.925000px;}
.y119{bottom:71.970000px;}
.y144{bottom:71.994000px;}
.y10e{bottom:72.000000px;}
.y10c{bottom:72.030000px;}
.y11c{bottom:72.045000px;}
.y147{bottom:86.436000px;}
.y89{bottom:87.876000px;}
.ya8{bottom:89.136000px;}
.y13e{bottom:92.550000px;}
.y132{bottom:92.595000px;}
.y116{bottom:92.670000px;}
.y140{bottom:92.694000px;}
.y118{bottom:92.700000px;}
.y139{bottom:92.745000px;}
.yd6{bottom:95.076000px;}
.y65{bottom:96.156000px;}
.y30{bottom:97.596000px;}
.y5e{bottom:99.396000px;}
.yd7{bottom:99.756000px;}
.y109{bottom:103.716000px;}
.y146{bottom:107.136000px;}
.y131{bottom:113.295000px;}
.y88{bottom:116.496000px;}
.ya7{bottom:117.576000px;}
.yb7{bottom:119.916000px;}
.yd5{bottom:123.516000px;}
.y64{bottom:124.776000px;}
.y2f{bottom:126.036000px;}
.ydd{bottom:127.116000px;}
.y5d{bottom:127.836000px;}
.y5b{bottom:128.196000px;}
.y12d{bottom:133.995000px;}
.y12e{bottom:134.100000px;}
.y87{bottom:144.936000px;}
.y13f{bottom:145.476000px;}
.y13d{bottom:145.620000px;}
.ya6{bottom:145.656000px;}
.yb6{bottom:148.356000px;}
.yd4{bottom:151.950000px;}
.yfa{bottom:153.210000px;}
.y63{bottom:154.290000px;}
.y2e{bottom:154.470000px;}
.y12c{bottom:154.695000px;}
.y130{bottom:154.800000px;}
.ydc{bottom:155.550000px;}
.y5a{bottom:156.630000px;}
.y108{bottom:160.050000px;}
.y86{bottom:173.370000px;}
.ya5{bottom:174.450000px;}
.y12b{bottom:175.395000px;}
.y12f{bottom:175.500000px;}
.yb5{bottom:176.790000px;}
.yd3{bottom:180.390000px;}
.yf9{bottom:181.650000px;}
.y2d{bottom:182.910000px;}
.ydb{bottom:183.990000px;}
.y59{bottom:185.250000px;}
.y128{bottom:196.125000px;}
.y12a{bottom:196.230000px;}
.y85{bottom:201.810000px;}
.ya4{bottom:202.890000px;}
.yb4{bottom:205.410000px;}
.yd2{bottom:208.830000px;}
.yf8{bottom:210.090000px;}
.y2c{bottom:211.350000px;}
.yda{bottom:212.430000px;}
.y62{bottom:212.610000px;}
.y58{bottom:213.690000px;}
.y107{bottom:216.570000px;}
.y84{bottom:231.510000px;}
.yb3{bottom:233.850000px;}
.yd1{bottom:237.270000px;}
.yf7{bottom:238.530000px;}
.y2b{bottom:239.790000px;}
.yd9{bottom:241.050000px;}
.y61{bottom:241.770000px;}
.y57{bottom:242.130000px;}
.ya3{bottom:259.950000px;}
.y83{bottom:261.210000px;}
.y138{bottom:261.750000px;}
.y137{bottom:261.900000px;}
.yb2{bottom:261.930000px;}
.yd0{bottom:265.890000px;}
.yf6{bottom:266.970000px;}
.y2a{bottom:268.230000px;}
.y56{bottom:270.570000px;}
.y106{bottom:272.910000px;}
.ya2{bottom:288.390000px;}
.y82{bottom:290.730000px;}
.ycf{bottom:294.330000px;}
.yf5{bottom:295.410000px;}
.y29{bottom:296.850000px;}
.y55{bottom:299.010000px;}
.ya1{bottom:316.830000px;}
.y81{bottom:319.215000px;}
.yce{bottom:322.815000px;}
.yf4{bottom:323.895000px;}
.y28{bottom:325.335000px;}
.y54{bottom:327.495000px;}
.y105{bottom:329.295000px;}
.ya0{bottom:345.315000px;}
.y80{bottom:347.655000px;}
.ycd{bottom:351.255000px;}
.yf3{bottom:352.335000px;}
.y27{bottom:353.775000px;}
.y53{bottom:355.935000px;}
.y175{bottom:366.735000px;}
.y9f{bottom:373.755000px;}
.y7f{bottom:376.095000px;}
.y129{bottom:378.075000px;}
.y127{bottom:378.180000px;}
.ycc{bottom:379.695000px;}
.yf2{bottom:380.955000px;}
.y26{bottom:382.215000px;}
.y52{bottom:384.375000px;}
.y104{bottom:385.635000px;}
.y174{bottom:388.695000px;}
.y9e{bottom:401.835000px;}
.y7e{bottom:404.535000px;}
.ycb{bottom:408.135000px;}
.yf1{bottom:409.395000px;}
.y25{bottom:410.655000px;}
.y51{bottom:412.815000px;}
.y9d{bottom:430.275000px;}
.y7d{bottom:432.615000px;}
.yb1{bottom:432.975000px;}
.yca{bottom:436.575000px;}
.yf0{bottom:437.835000px;}
.y24{bottom:439.095000px;}
.y50{bottom:441.435000px;}
.y103{bottom:442.155000px;}
.y9c{bottom:459.075000px;}
.y7c{bottom:461.595000px;}
.yc9{bottom:465.015000px;}
.y101{bottom:465.195000px;}
.yff{bottom:465.300000px;}
.yef{bottom:466.275000px;}
.y23{bottom:467.535000px;}
.y4f{bottom:469.875000px;}
.y9b{bottom:487.695000px;}
.yb0{bottom:490.035000px;}
.y7b{bottom:491.115000px;}
.yc8{bottom:493.455000px;}
.yee{bottom:494.355000px;}
.y22{bottom:495.975000px;}
.y4e{bottom:498.315000px;}
.y178{bottom:503.355000px;}
.y173{bottom:503.535000px;}
.y9a{bottom:517.395000px;}
.yaf{bottom:518.475000px;}
.y7a{bottom:519.735000px;}
.yc7{bottom:522.075000px;}
.yed{bottom:523.155000px;}
.y21{bottom:524.415000px;}
.y4d{bottom:526.755000px;}
.y172{bottom:531.975000px;}
.yfd{bottom:534.855000px;}
.yfb{bottom:534.960000px;}
.y99{bottom:546.915000px;}
.yae{bottom:548.175000px;}
.y79{bottom:549.435000px;}
.yc6{bottom:550.515000px;}
.yec{bottom:551.595000px;}
.y20{bottom:553.035000px;}
.y4c{bottom:554.835000px;}
.y5c{bottom:555.195000px;}
.y177{bottom:555.555000px;}
.y171{bottom:560.415000px;}
.y98{bottom:575.385000px;}
.yad{bottom:577.905000px;}
.yc5{bottom:578.625000px;}
.y78{bottom:578.985000px;}
.yeb{bottom:580.065000px;}
.y1f{bottom:581.145000px;}
.y176{bottom:581.325000px;}
.y31{bottom:581.505000px;}
.y16e{bottom:582.405000px;}
.y16c{bottom:582.480000px;}
.y4b{bottom:583.665000px;}
.y126{bottom:597.705000px;}
.y125{bottom:597.780000px;}
.y97{bottom:603.465000px;}
.yac{bottom:607.425000px;}
.y77{bottom:608.145000px;}
.yea{bottom:608.505000px;}
.y60{bottom:611.745000px;}
.y4a{bottom:612.105000px;}
.y1e{bottom:613.725000px;}
.y169{bottom:629.025000px;}
.y167{bottom:629.100000px;}
.y96{bottom:632.265000px;}
.yc4{bottom:635.865000px;}
.y76{bottom:637.125000px;}
.yd8{bottom:640.185000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.y95{bottom:660.705000px;}
.yc3{bottom:664.305000px;}
.ye9{bottom:665.565000px;}
.y75{bottom:666.645000px;}
.yab{bottom:666.825000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.y165{bottom:678.885000px;}
.y163{bottom:678.960000px;}
.y94{bottom:689.145000px;}
.yc2{bottom:692.745000px;}
.y122{bottom:693.285000px;}
.y120{bottom:693.360000px;}
.ye8{bottom:694.005000px;}
.y74{bottom:695.085000px;}
.yaa{bottom:696.525000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.y93{bottom:717.765000px;}
.yc1{bottom:721.185000px;}
.ye7{bottom:722.445000px;}
.y73{bottom:723.705000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.y161{bottom:743.685000px;}
.y15e{bottom:743.760000px;}
.y92{bottom:745.845000px;}
.yc0{bottom:749.265000px;}
.ye6{bottom:750.885000px;}
.y72{bottom:752.865000px;}
.y45{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.y91{bottom:774.645000px;}
.ybf{bottom:778.245000px;}
.ye5{bottom:779.325000px;}
.y71{bottom:781.665000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.y11b{bottom:788.865000px;}
.y11a{bottom:788.940000px;}
.y90{bottom:804.345000px;}
.ybe{bottom:806.685000px;}
.ye4{bottom:807.945000px;}
.y15a{bottom:808.665000px;}
.y157{bottom:808.740000px;}
.y70{bottom:810.105000px;}
.y43{bottom:811.365000px;}
.y17{bottom:812.805000px;}
.y8f{bottom:834.090000px;}
.ybd{bottom:835.170000px;}
.ye3{bottom:837.510000px;}
.y6f{bottom:838.770000px;}
.y42{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.y8e{bottom:863.610000px;}
.ybc{bottom:864.690000px;}
.ye2{bottom:865.950000px;}
.y6e{bottom:867.210000px;}
.y41{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.y156{bottom:873.510000px;}
.y155{bottom:873.540000px;}
.y117{bottom:884.490000px;}
.y115{bottom:884.520000px;}
.y8d{bottom:893.310000px;}
.ye1{bottom:894.390000px;}
.y6d{bottom:895.650000px;}
.y40{bottom:896.730000px;}
.y14{bottom:898.350000px;}
.ybb{bottom:921.750000px;}
.ye0{bottom:922.830000px;}
.y8c{bottom:923.010000px;}
.y6c{bottom:924.090000px;}
.ya9{bottom:924.810000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:926.790000px;}
.y151{bottom:938.310000px;}
.y150{bottom:938.340000px;}
.yba{bottom:951.270000px;}
.ydf{bottom:951.450000px;}
.y6b{bottom:952.530000px;}
.y8b{bottom:952.710000px;}
.y3e{bottom:953.790000px;}
.y12{bottom:961.170000px;}
.yb9{bottom:979.890000px;}
.y6a{bottom:980.970000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:983.310000px;}
.y10b{bottom:1000.770000px;}
.y10d{bottom:1000.800000px;}
.y14a{bottom:1005.450000px;}
.y148{bottom:1005.480000px;}
.y69{bottom:1009.410000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.y68{bottom:1037.850000px;}
.yb8{bottom:1038.030000px;}
.y8a{bottom:1038.750000px;}
.y3b{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y67{bottom:1065.930000px;}
.yde{bottom:1066.290000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y66{bottom:1094.940000px;}
.y5f{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y10a{bottom:1100.160000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h15{height:28.440000px;}
.h6{height:33.480000px;}
.h1c{height:34.884492px;}
.h1b{height:34.988625px;}
.h2a{height:36.720000px;}
.hb{height:41.250937px;}
.h18{height:47.344922px;}
.h1e{height:47.486250px;}
.h11{height:47.901094px;}
.h1{height:48.045938px;}
.h22{height:48.616875px;}
.h27{height:51.660000px;}
.h29{height:51.696000px;}
.h26{height:51.840000px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h16{height:57.060000px;}
.h2{height:58.621992px;}
.h24{height:58.651172px;}
.h28{height:58.792500px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.h14{height:65.152266px;}
.ha{height:66.757500px;}
.h12{height:68.084282px;}
.h17{height:70.664062px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h23{height:77.760000px;}
.h25{height:77.796000px;}
.h1a{height:82.800000px;}
.h19{height:82.836000px;}
.h1d{height:103.500000px;}
.h21{height:103.536000px;}
.hf{height:111.043849px;}
.h13{height:111.043854px;}
.h4{height:167.250000px;}
.h1f{height:207.000000px;}
.h20{height:207.030000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w12{width:39.816000px;}
.w15{width:57.060000px;}
.w16{width:57.096000px;}
.w19{width:57.780000px;}
.w1a{width:57.816000px;}
.w8{width:59.940000px;}
.w9{width:59.976000px;}
.w2b{width:61.380000px;}
.w17{width:66.600000px;}
.w1f{width:68.400000px;}
.w1e{width:68.580000px;}
.w1c{width:70.200000px;}
.w1d{width:70.236000px;}
.w27{width:75.600000px;}
.w13{width:76.500000px;}
.w2a{width:83.160000px;}
.w14{width:86.940000px;}
.w18{width:89.100000px;}
.w28{width:95.580000px;}
.w29{width:95.616000px;}
.w25{width:101.520000px;}
.w26{width:101.556000px;}
.w22{width:101.880000px;}
.w23{width:101.916000px;}
.w24{width:103.860000px;}
.w1b{width:113.940000px;}
.w10{width:139.140000px;}
.w11{width:139.176000px;}
.w20{width:181.800000px;}
.w21{width:181.830000px;}
.wc{width:196.740000px;}
.wd{width:196.770000px;}
.we{width:207.900000px;}
.wf{width:207.930000px;}
.wa{width:208.800000px;}
.wb{width:208.830000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x48{left:2.700000px;}
.x10{left:5.580000px;}
.x43{left:8.205000px;}
.x2f{left:9.540000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.x4a{left:21.600000px;}
.x35{left:23.760000px;}
.x34{left:26.820000px;}
.x2e{left:29.520000px;}
.xa{left:31.680000px;}
.x2a{left:33.705000px;}
.x26{left:36.930000px;}
.x39{left:37.980000px;}
.x11{left:39.096000px;}
.x31{left:41.040000px;}
.x20{left:43.065000px;}
.x33{left:44.100000px;}
.x3a{left:45.210000px;}
.x22{left:46.260000px;}
.x36{left:48.240000px;}
.x2d{left:50.760000px;}
.x47{left:52.740000px;}
.x2{left:53.999986px;}
.x49{left:58.500000px;}
.x1c{left:59.574000px;}
.x38{left:61.020000px;}
.x24{left:62.640000px;}
.x1e{left:68.040000px;}
.xc{left:70.559986px;}
.x46{left:71.670000px;}
.x37{left:72.720000px;}
.x3d{left:74.745000px;}
.x30{left:76.500000px;}
.x3f{left:79.560000px;}
.xe{left:80.999986px;}
.x32{left:82.620000px;}
.x14{left:90.360000px;}
.x1b{left:94.860000px;}
.x28{left:98.280000px;}
.x3b{left:103.170000px;}
.xd{left:108.035986px;}
.x1a{left:112.320000px;}
.x12{left:115.200000px;}
.x1{left:122.435986px;}
.x18{left:127.440000px;}
.x6{left:130.860000px;}
.x19{left:143.460000px;}
.x1d{left:172.080000px;}
.x17{left:196.779000px;}
.x3c{left:231.300000px;}
.x1f{left:259.740000px;}
.x21{left:317.700000px;}
.x13{left:324.900000px;}
.x3e{left:334.260000px;}
.x23{left:385.200000px;}
.x40{left:439.200000px;}
.x25{left:475.020000px;}
.x8{left:486.104986px;}
.xf{left:513.104986px;}
.x5{left:521.025000px;}
.x15{left:522.360000px;}
.x27{left:533.700000px;}
.x41{left:541.800000px;}
.x42{left:618.480000px;}
.x29{left:648.360000px;}
.x44{left:715.140000px;}
.x2b{left:719.280000px;}
.x16{left:731.160000px;}
.x4b{left:765.149986px;}
.x2c{left:788.580000px;}
.x45{left:799.200000px;}
.x4c{left:828.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.837333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.400533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.244267pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.040320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls1c{letter-spacing:0.113664pt;}
.ls16{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.135467pt;}
.ls1b{letter-spacing:0.138880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.161067pt;}
.ls24{letter-spacing:0.198933pt;}
.ls1a{letter-spacing:0.199040pt;}
.ls4{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls23{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.592000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls17{letter-spacing:6.031360pt;}
.ls12{letter-spacing:10.880000pt;}
.lse{letter-spacing:11.520000pt;}
.ls15{letter-spacing:35.471360pt;}
.ls10{letter-spacing:41.600000pt;}
.ls9{letter-spacing:52.751360pt;}
.ls8{letter-spacing:72.719360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsd{word-spacing:-59.008000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.120000pt;}
.ws20{word-spacing:-25.766400pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.728000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.568000pt;}
.ws1c{word-spacing:-13.374933pt;}
.ws1f{word-spacing:-13.327360pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.918933pt;}
.ws18{word-spacing:-10.881067pt;}
.ws17{word-spacing:-10.752000pt;}
.ws15{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.400000pt;}
.ws16{word-spacing:-9.882667pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._38{margin-left:-5.358080pt;}
._33{margin-left:-3.471360pt;}
._3e{margin-left:-1.867093pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._4{width:2.381653pt;}
._1f{width:3.369813pt;}
._8{width:4.858027pt;}
._9{width:5.899093pt;}
._7{width:7.590827pt;}
._6{width:8.688640pt;}
._a{width:9.623040pt;}
._14{width:10.552320pt;}
._13{width:11.494400pt;}
._20{width:12.586667pt;}
._12{width:13.538987pt;}
._b{width:15.698773pt;}
._2a{width:16.841387pt;}
._e{width:17.875627pt;}
._10{width:19.665920pt;}
._28{width:21.301760pt;}
._f{width:22.197760pt;}
._3{width:23.316480pt;}
._5{width:24.258560pt;}
._29{width:25.416533pt;}
._2e{width:26.808320pt;}
._22{width:27.875840pt;}
._21{width:28.851200pt;}
._27{width:29.780480pt;}
._26{width:30.748160pt;}
._17{width:32.148480pt;}
._15{width:33.679360pt;}
._16{width:35.445760pt;}
._1d{width:36.472320pt;}
._3f{width:37.742080pt;}
._3a{width:39.603200pt;}
._1a{width:40.509440pt;}
._1b{width:41.464320pt;}
._18{width:42.570240pt;}
._19{width:43.806720pt;}
._41{width:44.909013pt;}
._1c{width:46.103040pt;}
._39{width:47.987200pt;}
._30{width:49.295360pt;}
._24{width:50.224640pt;}
._25{width:51.225600pt;}
._23{width:52.167680pt;}
._32{width:53.299200pt;}
._11{width:54.228480pt;}
._40{width:55.523840pt;}
._48{width:56.426496pt;}
._43{width:59.022507pt;}
._3d{width:60.823040pt;}
._1e{width:65.031680pt;}
._31{width:69.007360pt;}
._2f{width:70.891520pt;}
._44{width:71.951360pt;}
._36{width:73.007787pt;}
._35{width:74.408960pt;}
._45{width:75.955200pt;}
._34{width:77.281280pt;}
._c{width:78.958080pt;}
._d{width:80.439040pt;}
._2d{width:85.120000pt;}
._2b{width:86.906880pt;}
._2c{width:87.801600pt;}
._42{width:92.912640pt;}
._3c{width:102.438400pt;}
._3b{width:103.582720pt;}
._46{width:107.220480pt;}
._47{width:111.916800pt;}
._4a{width:125.809920pt;}
._37{width:127.463680pt;}
._49{width:167.146240pt;}
._4b{width:789.314133pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y16a{bottom:7.840000pt;}
.y16f{bottom:8.000000pt;}
.y13c{bottom:8.666667pt;}
.y136{bottom:8.706667pt;}
.y11f{bottom:8.733333pt;}
.y112{bottom:8.773333pt;}
.y142{bottom:8.794667pt;}
.y113{bottom:8.800000pt;}
.y8{bottom:9.600000pt;}
.y159{bottom:10.853333pt;}
.y160{bottom:10.973333pt;}
.y14e{bottom:11.013333pt;}
.y14f{bottom:11.040000pt;}
.yfc{bottom:11.906667pt;}
.yfe{bottom:12.000000pt;}
.y16b{bottom:13.440000pt;}
.y16d{bottom:17.693333pt;}
.y170{bottom:17.760000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y168{bottom:20.573333pt;}
.y166{bottom:21.120000pt;}
.y15d{bottom:21.160000pt;}
.y154{bottom:21.280000pt;}
.y15c{bottom:24.040000pt;}
.y153{bottom:24.160000pt;}
.y15b{bottom:24.200000pt;}
.y152{bottom:24.320000pt;}
.y162{bottom:26.880000pt;}
.y13b{bottom:27.066667pt;}
.y135{bottom:27.106667pt;}
.y124{bottom:27.133333pt;}
.y110{bottom:27.173333pt;}
.y145{bottom:27.194667pt;}
.y111{bottom:27.200000pt;}
.y11d{bottom:27.240000pt;}
.y35{bottom:32.960000pt;}
.y164{bottom:33.853333pt;}
.y158{bottom:33.893333pt;}
.y15f{bottom:34.013333pt;}
.y14c{bottom:34.053333pt;}
.y14d{bottom:34.080000pt;}
.y100{bottom:37.346667pt;}
.y102{bottom:37.440000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y13a{bottom:45.466667pt;}
.y134{bottom:45.506667pt;}
.y123{bottom:45.533333pt;}
.y10f{bottom:45.573333pt;}
.y143{bottom:45.594667pt;}
.y114{bottom:45.600000pt;}
.y11e{bottom:45.640000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y149{bottom:57.093333pt;}
.y14b{bottom:57.120000pt;}
.y5{bottom:61.312000pt;}
.y141{bottom:63.866667pt;}
.y133{bottom:63.906667pt;}
.y121{bottom:63.933333pt;}
.y119{bottom:63.973333pt;}
.y144{bottom:63.994667pt;}
.y10e{bottom:64.000000pt;}
.y10c{bottom:64.026667pt;}
.y11c{bottom:64.040000pt;}
.y147{bottom:76.832000pt;}
.y89{bottom:78.112000pt;}
.ya8{bottom:79.232000pt;}
.y13e{bottom:82.266667pt;}
.y132{bottom:82.306667pt;}
.y116{bottom:82.373333pt;}
.y140{bottom:82.394667pt;}
.y118{bottom:82.400000pt;}
.y139{bottom:82.440000pt;}
.yd6{bottom:84.512000pt;}
.y65{bottom:85.472000pt;}
.y30{bottom:86.752000pt;}
.y5e{bottom:88.352000pt;}
.yd7{bottom:88.672000pt;}
.y109{bottom:92.192000pt;}
.y146{bottom:95.232000pt;}
.y131{bottom:100.706667pt;}
.y88{bottom:103.552000pt;}
.ya7{bottom:104.512000pt;}
.yb7{bottom:106.592000pt;}
.yd5{bottom:109.792000pt;}
.y64{bottom:110.912000pt;}
.y2f{bottom:112.032000pt;}
.ydd{bottom:112.992000pt;}
.y5d{bottom:113.632000pt;}
.y5b{bottom:113.952000pt;}
.y12d{bottom:119.106667pt;}
.y12e{bottom:119.200000pt;}
.y87{bottom:128.832000pt;}
.y13f{bottom:129.312000pt;}
.y13d{bottom:129.440000pt;}
.ya6{bottom:129.472000pt;}
.yb6{bottom:131.872000pt;}
.yd4{bottom:135.066667pt;}
.yfa{bottom:136.186667pt;}
.y63{bottom:137.146667pt;}
.y2e{bottom:137.306667pt;}
.y12c{bottom:137.506667pt;}
.y130{bottom:137.600000pt;}
.ydc{bottom:138.266667pt;}
.y5a{bottom:139.226667pt;}
.y108{bottom:142.266667pt;}
.y86{bottom:154.106667pt;}
.ya5{bottom:155.066667pt;}
.y12b{bottom:155.906667pt;}
.y12f{bottom:156.000000pt;}
.yb5{bottom:157.146667pt;}
.yd3{bottom:160.346667pt;}
.yf9{bottom:161.466667pt;}
.y2d{bottom:162.586667pt;}
.ydb{bottom:163.546667pt;}
.y59{bottom:164.666667pt;}
.y128{bottom:174.333333pt;}
.y12a{bottom:174.426667pt;}
.y85{bottom:179.386667pt;}
.ya4{bottom:180.346667pt;}
.yb4{bottom:182.586667pt;}
.yd2{bottom:185.626667pt;}
.yf8{bottom:186.746667pt;}
.y2c{bottom:187.866667pt;}
.yda{bottom:188.826667pt;}
.y62{bottom:188.986667pt;}
.y58{bottom:189.946667pt;}
.y107{bottom:192.506667pt;}
.y84{bottom:205.786667pt;}
.yb3{bottom:207.866667pt;}
.yd1{bottom:210.906667pt;}
.yf7{bottom:212.026667pt;}
.y2b{bottom:213.146667pt;}
.yd9{bottom:214.266667pt;}
.y61{bottom:214.906667pt;}
.y57{bottom:215.226667pt;}
.ya3{bottom:231.066667pt;}
.y83{bottom:232.186667pt;}
.y138{bottom:232.666667pt;}
.y137{bottom:232.800000pt;}
.yb2{bottom:232.826667pt;}
.yd0{bottom:236.346667pt;}
.yf6{bottom:237.306667pt;}
.y2a{bottom:238.426667pt;}
.y56{bottom:240.506667pt;}
.y106{bottom:242.586667pt;}
.ya2{bottom:256.346667pt;}
.y82{bottom:258.426667pt;}
.ycf{bottom:261.626667pt;}
.yf5{bottom:262.586667pt;}
.y29{bottom:263.866667pt;}
.y55{bottom:265.786667pt;}
.ya1{bottom:281.626667pt;}
.y81{bottom:283.746667pt;}
.yce{bottom:286.946667pt;}
.yf4{bottom:287.906667pt;}
.y28{bottom:289.186667pt;}
.y54{bottom:291.106667pt;}
.y105{bottom:292.706667pt;}
.ya0{bottom:306.946667pt;}
.y80{bottom:309.026667pt;}
.ycd{bottom:312.226667pt;}
.yf3{bottom:313.186667pt;}
.y27{bottom:314.466667pt;}
.y53{bottom:316.386667pt;}
.y175{bottom:325.986667pt;}
.y9f{bottom:332.226667pt;}
.y7f{bottom:334.306667pt;}
.y129{bottom:336.066667pt;}
.y127{bottom:336.160000pt;}
.ycc{bottom:337.506667pt;}
.yf2{bottom:338.626667pt;}
.y26{bottom:339.746667pt;}
.y52{bottom:341.666667pt;}
.y104{bottom:342.786667pt;}
.y174{bottom:345.506667pt;}
.y9e{bottom:357.186667pt;}
.y7e{bottom:359.586667pt;}
.ycb{bottom:362.786667pt;}
.yf1{bottom:363.906667pt;}
.y25{bottom:365.026667pt;}
.y51{bottom:366.946667pt;}
.y9d{bottom:382.466667pt;}
.y7d{bottom:384.546667pt;}
.yb1{bottom:384.866667pt;}
.yca{bottom:388.066667pt;}
.yf0{bottom:389.186667pt;}
.y24{bottom:390.306667pt;}
.y50{bottom:392.386667pt;}
.y103{bottom:393.026667pt;}
.y9c{bottom:408.066667pt;}
.y7c{bottom:410.306667pt;}
.yc9{bottom:413.346667pt;}
.y101{bottom:413.506667pt;}
.yff{bottom:413.600000pt;}
.yef{bottom:414.466667pt;}
.y23{bottom:415.586667pt;}
.y4f{bottom:417.666667pt;}
.y9b{bottom:433.506667pt;}
.yb0{bottom:435.586667pt;}
.y7b{bottom:436.546667pt;}
.yc8{bottom:438.626667pt;}
.yee{bottom:439.426667pt;}
.y22{bottom:440.866667pt;}
.y4e{bottom:442.946667pt;}
.y178{bottom:447.426667pt;}
.y173{bottom:447.586667pt;}
.y9a{bottom:459.906667pt;}
.yaf{bottom:460.866667pt;}
.y7a{bottom:461.986667pt;}
.yc7{bottom:464.066667pt;}
.yed{bottom:465.026667pt;}
.y21{bottom:466.146667pt;}
.y4d{bottom:468.226667pt;}
.y172{bottom:472.866667pt;}
.yfd{bottom:475.426667pt;}
.yfb{bottom:475.520000pt;}
.y99{bottom:486.146667pt;}
.yae{bottom:487.266667pt;}
.y79{bottom:488.386667pt;}
.yc6{bottom:489.346667pt;}
.yec{bottom:490.306667pt;}
.y20{bottom:491.586667pt;}
.y4c{bottom:493.186667pt;}
.y5c{bottom:493.506667pt;}
.y177{bottom:493.826667pt;}
.y171{bottom:498.146667pt;}
.y98{bottom:511.453333pt;}
.yad{bottom:513.693333pt;}
.yc5{bottom:514.333333pt;}
.y78{bottom:514.653333pt;}
.yeb{bottom:515.613333pt;}
.y1f{bottom:516.573333pt;}
.y176{bottom:516.733333pt;}
.y31{bottom:516.893333pt;}
.y16e{bottom:517.693333pt;}
.y16c{bottom:517.760000pt;}
.y4b{bottom:518.813333pt;}
.y126{bottom:531.293333pt;}
.y125{bottom:531.360000pt;}
.y97{bottom:536.413333pt;}
.yac{bottom:539.933333pt;}
.y77{bottom:540.573333pt;}
.yea{bottom:540.893333pt;}
.y60{bottom:543.773333pt;}
.y4a{bottom:544.093333pt;}
.y1e{bottom:545.533333pt;}
.y169{bottom:559.133333pt;}
.y167{bottom:559.200000pt;}
.y96{bottom:562.013333pt;}
.yc4{bottom:565.213333pt;}
.y76{bottom:566.333333pt;}
.yd8{bottom:569.053333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.y95{bottom:587.293333pt;}
.yc3{bottom:590.493333pt;}
.ye9{bottom:591.613333pt;}
.y75{bottom:592.573333pt;}
.yab{bottom:592.733333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.y165{bottom:603.453333pt;}
.y163{bottom:603.520000pt;}
.y94{bottom:612.573333pt;}
.yc2{bottom:615.773333pt;}
.y122{bottom:616.253333pt;}
.y120{bottom:616.320000pt;}
.ye8{bottom:616.893333pt;}
.y74{bottom:617.853333pt;}
.yaa{bottom:619.133333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.y93{bottom:638.013333pt;}
.yc1{bottom:641.053333pt;}
.ye7{bottom:642.173333pt;}
.y73{bottom:643.293333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.y161{bottom:661.053333pt;}
.y15e{bottom:661.120000pt;}
.y92{bottom:662.973333pt;}
.yc0{bottom:666.013333pt;}
.ye6{bottom:667.453333pt;}
.y72{bottom:669.213333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.y91{bottom:688.573333pt;}
.ybf{bottom:691.773333pt;}
.ye5{bottom:692.733333pt;}
.y71{bottom:694.813333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.y11b{bottom:701.213333pt;}
.y11a{bottom:701.280000pt;}
.y90{bottom:714.973333pt;}
.ybe{bottom:717.053333pt;}
.ye4{bottom:718.173333pt;}
.y15a{bottom:718.813333pt;}
.y157{bottom:718.880000pt;}
.y70{bottom:720.093333pt;}
.y43{bottom:721.213333pt;}
.y17{bottom:722.493333pt;}
.y8f{bottom:741.413333pt;}
.ybd{bottom:742.373333pt;}
.ye3{bottom:744.453333pt;}
.y6f{bottom:745.573333pt;}
.y42{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.y8e{bottom:767.653333pt;}
.ybc{bottom:768.613333pt;}
.ye2{bottom:769.733333pt;}
.y6e{bottom:770.853333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.y156{bottom:776.453333pt;}
.y155{bottom:776.480000pt;}
.y117{bottom:786.213333pt;}
.y115{bottom:786.240000pt;}
.y8d{bottom:794.053333pt;}
.ye1{bottom:795.013333pt;}
.y6d{bottom:796.133333pt;}
.y40{bottom:797.093333pt;}
.y14{bottom:798.533333pt;}
.ybb{bottom:819.333333pt;}
.ye0{bottom:820.293333pt;}
.y8c{bottom:820.453333pt;}
.y6c{bottom:821.413333pt;}
.ya9{bottom:822.053333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:823.813333pt;}
.y151{bottom:834.053333pt;}
.y150{bottom:834.080000pt;}
.yba{bottom:845.573333pt;}
.ydf{bottom:845.733333pt;}
.y6b{bottom:846.693333pt;}
.y8b{bottom:846.853333pt;}
.y3e{bottom:847.813333pt;}
.y12{bottom:854.373333pt;}
.yb9{bottom:871.013333pt;}
.y6a{bottom:871.973333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:874.053333pt;}
.y10b{bottom:889.573333pt;}
.y10d{bottom:889.600000pt;}
.y14a{bottom:893.733333pt;}
.y148{bottom:893.760000pt;}
.y69{bottom:897.253333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.y68{bottom:922.533333pt;}
.yb8{bottom:922.693333pt;}
.y8a{bottom:923.333333pt;}
.y3b{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y67{bottom:947.493333pt;}
.yde{bottom:947.813333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y66{bottom:973.280000pt;}
.y5f{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y10a{bottom:977.920000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h15{height:25.280000pt;}
.h6{height:29.760000pt;}
.h1c{height:31.008437pt;}
.h1b{height:31.101000pt;}
.h2a{height:32.640000pt;}
.hb{height:36.667500pt;}
.h18{height:42.084375pt;}
.h1e{height:42.210000pt;}
.h11{height:42.578750pt;}
.h1{height:42.707500pt;}
.h22{height:43.215000pt;}
.h27{height:45.920000pt;}
.h29{height:45.952000pt;}
.h26{height:46.080000pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h16{height:50.720000pt;}
.h2{height:52.108438pt;}
.h24{height:52.134375pt;}
.h28{height:52.260000pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.h14{height:57.913125pt;}
.ha{height:59.340000pt;}
.h12{height:60.519362pt;}
.h17{height:62.812500pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h23{height:69.120000pt;}
.h25{height:69.152000pt;}
.h1a{height:73.600000pt;}
.h19{height:73.632000pt;}
.h1d{height:92.000000pt;}
.h21{height:92.032000pt;}
.hf{height:98.705643pt;}
.h13{height:98.705648pt;}
.h4{height:148.666667pt;}
.h1f{height:184.000000pt;}
.h20{height:184.026667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w12{width:35.392000pt;}
.w15{width:50.720000pt;}
.w16{width:50.752000pt;}
.w19{width:51.360000pt;}
.w1a{width:51.392000pt;}
.w8{width:53.280000pt;}
.w9{width:53.312000pt;}
.w2b{width:54.560000pt;}
.w17{width:59.200000pt;}
.w1f{width:60.800000pt;}
.w1e{width:60.960000pt;}
.w1c{width:62.400000pt;}
.w1d{width:62.432000pt;}
.w27{width:67.200000pt;}
.w13{width:68.000000pt;}
.w2a{width:73.920000pt;}
.w14{width:77.280000pt;}
.w18{width:79.200000pt;}
.w28{width:84.960000pt;}
.w29{width:84.992000pt;}
.w25{width:90.240000pt;}
.w26{width:90.272000pt;}
.w22{width:90.560000pt;}
.w23{width:90.592000pt;}
.w24{width:92.320000pt;}
.w1b{width:101.280000pt;}
.w10{width:123.680000pt;}
.w11{width:123.712000pt;}
.w20{width:161.600000pt;}
.w21{width:161.626667pt;}
.wc{width:174.880000pt;}
.wd{width:174.906667pt;}
.we{width:184.800000pt;}
.wf{width:184.826667pt;}
.wa{width:185.600000pt;}
.wb{width:185.626667pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x48{left:2.400000pt;}
.x10{left:4.960000pt;}
.x43{left:7.293333pt;}
.x2f{left:8.480000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.x4a{left:19.200000pt;}
.x35{left:21.120000pt;}
.x34{left:23.840000pt;}
.x2e{left:26.240000pt;}
.xa{left:28.160000pt;}
.x2a{left:29.960000pt;}
.x26{left:32.826667pt;}
.x39{left:33.760000pt;}
.x11{left:34.752000pt;}
.x31{left:36.480000pt;}
.x20{left:38.280000pt;}
.x33{left:39.200000pt;}
.x3a{left:40.186667pt;}
.x22{left:41.120000pt;}
.x36{left:42.880000pt;}
.x2d{left:45.120000pt;}
.x47{left:46.880000pt;}
.x2{left:47.999988pt;}
.x49{left:52.000000pt;}
.x1c{left:52.954667pt;}
.x38{left:54.240000pt;}
.x24{left:55.680000pt;}
.x1e{left:60.480000pt;}
.xc{left:62.719988pt;}
.x46{left:63.706667pt;}
.x37{left:64.640000pt;}
.x3d{left:66.440000pt;}
.x30{left:68.000000pt;}
.x3f{left:70.720000pt;}
.xe{left:71.999988pt;}
.x32{left:73.440000pt;}
.x14{left:80.320000pt;}
.x1b{left:84.320000pt;}
.x28{left:87.360000pt;}
.x3b{left:91.706667pt;}
.xd{left:96.031988pt;}
.x1a{left:99.840000pt;}
.x12{left:102.400000pt;}
.x1{left:108.831988pt;}
.x18{left:113.280000pt;}
.x6{left:116.320000pt;}
.x19{left:127.520000pt;}
.x1d{left:152.960000pt;}
.x17{left:174.914667pt;}
.x3c{left:205.600000pt;}
.x1f{left:230.880000pt;}
.x21{left:282.400000pt;}
.x13{left:288.800000pt;}
.x3e{left:297.120000pt;}
.x23{left:342.400000pt;}
.x40{left:390.400000pt;}
.x25{left:422.240000pt;}
.x8{left:432.093321pt;}
.xf{left:456.093321pt;}
.x5{left:463.133333pt;}
.x15{left:464.320000pt;}
.x27{left:474.400000pt;}
.x41{left:481.600000pt;}
.x42{left:549.760000pt;}
.x29{left:576.320000pt;}
.x44{left:635.680000pt;}
.x2b{left:639.360000pt;}
.x16{left:649.920000pt;}
.x4b{left:680.133321pt;}
.x2c{left:700.960000pt;}
.x45{left:710.400000pt;}
.x4c{left:736.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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