
    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_4293089bf5aac0ce3e64d532.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1519502bfb6c7d98bad95db0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b6bd51998300bca8e457e617.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_52eb6a3934ffa46fdbe034cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8c3ef0e96fc5f2e2e7f98382.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_55137a924647dc7a131a57da.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_14b8ad093f84d932d087a40d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:40.320000px;}
.v6{vertical-align:46.080000px;}
.ls3d{letter-spacing:-0.960000px;}
.ls4d{letter-spacing:-0.786000px;}
.ls16{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.579600px;}
.ls9{letter-spacing:-0.463800px;}
.ls3a{letter-spacing:-0.414000px;}
.lsc{letter-spacing:-0.303000px;}
.ls26{letter-spacing:-0.258000px;}
.ls35{letter-spacing:-0.240600px;}
.ls14{letter-spacing:-0.214800px;}
.ls40{letter-spacing:-0.208800px;}
.ls33{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.115800px;}
.ls32{letter-spacing:-0.078600px;}
.ls37{letter-spacing:-0.069600px;}
.ls18{letter-spacing:-0.064800px;}
.ls34{letter-spacing:-0.058320px;}
.ls2b{letter-spacing:-0.055440px;}
.ls28{letter-spacing:-0.041040px;}
.ls3c{letter-spacing:-0.032400px;}
.lsb{letter-spacing:-0.020160px;}
.ls6{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.023760px;}
.ls7{letter-spacing:0.038880px;}
.ls36{letter-spacing:0.060600px;}
.ls38{letter-spacing:0.061200px;}
.lse{letter-spacing:0.066000px;}
.ls10{letter-spacing:0.097200px;}
.ls2a{letter-spacing:0.109200px;}
.ls20{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls3b{letter-spacing:0.169200px;}
.ls4e{letter-spacing:0.174000px;}
.ls2f{letter-spacing:0.174240px;}
.ls2c{letter-spacing:0.175200px;}
.ls29{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.186600px;}
.lsd{letter-spacing:0.210000px;}
.ls41{letter-spacing:0.218400px;}
.ls22{letter-spacing:0.249120px;}
.ls1{letter-spacing:0.269760px;}
.ls39{letter-spacing:0.274800px;}
.ls2d{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.314400px;}
.ls27{letter-spacing:0.331800px;}
.ls4c{letter-spacing:0.357000px;}
.ls30{letter-spacing:0.393600px;}
.ls2{letter-spacing:0.427680px;}
.ls3e{letter-spacing:0.479520px;}
.ls1c{letter-spacing:0.532800px;}
.ls4{letter-spacing:0.617760px;}
.ls5{letter-spacing:0.637200px;}
.ls21{letter-spacing:0.894240px;}
.ls47{letter-spacing:1.594800px;}
.ls46{letter-spacing:1.936080px;}
.ls24{letter-spacing:2.106720px;}
.ls1b{letter-spacing:2.460960px;}
.ls49{letter-spacing:2.559600px;}
.ls1f{letter-spacing:3.054240px;}
.ls44{letter-spacing:3.180960px;}
.ls4b{letter-spacing:3.279600px;}
.ls48{letter-spacing:3.342240px;}
.ls4a{letter-spacing:3.945600px;}
.ls25{letter-spacing:4.494240px;}
.ls19{letter-spacing:5.706720px;}
.ls43{letter-spacing:8.940960px;}
.ls50{letter-spacing:12.186720px;}
.ls1a{letter-spacing:15.420960px;}
.ls3f{letter-spacing:15.786720px;}
.ls1e{letter-spacing:16.905600px;}
.ls1d{letter-spacing:17.022240px;}
.ls45{letter-spacing:17.025600px;}
.ls12{letter-spacing:17.226720px;}
.ls13{letter-spacing:20.106720px;}
.ls11{letter-spacing:21.546720px;}
.ls23{letter-spacing:22.986720px;}
.ls42{letter-spacing:24.426720px;}
.ls3{letter-spacing:38.106720px;}
.ls4f{letter-spacing:42.570720px;}
.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;}
}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws27{word-spacing:-13.862760px;}
.wsb{word-spacing:-13.820160px;}
.ws1a{word-spacing:-13.811760px;}
.ws23{word-spacing:-13.780560px;}
.ws26{word-spacing:-13.724160px;}
.ws1b{word-spacing:-13.692360px;}
.ws19{word-spacing:-13.680960px;}
.ws1c{word-spacing:-13.646160px;}
.ws20{word-spacing:-13.566360px;}
.ws7{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.479000px;}
.ws24{word-spacing:-13.473360px;}
.ws17{word-spacing:-13.464720px;}
.ws18{word-spacing:-13.450320px;}
.ws1e{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.ws21{word-spacing:-13.436160px;}
.ws1d{word-spacing:-13.427160px;}
.ws8{word-spacing:-13.389960px;}
.ws25{word-spacing:-13.296960px;}
.wsa{word-spacing:-13.290960px;}
.ws1f{word-spacing:-13.265160px;}
.ws22{word-spacing:-13.202760px;}
.wsd{word-spacing:-13.147200px;}
.ws5{word-spacing:-9.437760px;}
.ws16{word-spacing:-8.929200px;}
.ws6{word-spacing:-8.786880px;}
.ws15{word-spacing:-0.187920px;}
.ws9{word-spacing:0.000000px;}
.ws10{word-spacing:0.508080px;}
.ws13{word-spacing:0.532080px;}
.ws29{word-spacing:4.108080px;}
.wsf{word-spacing:4.132080px;}
.ws12{word-spacing:8.954640px;}
.ws2a{word-spacing:9.674640px;}
.ws14{word-spacing:9.854640px;}
.ws28{word-spacing:12.554640px;}
.wse{word-spacing:12.698640px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.765680px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._3e{margin-left:-5.404320px;}
._33{margin-left:-4.187280px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.027920px;}
._2e{width:2.176080px;}
._2a{width:3.190320px;}
._2c{width:4.661280px;}
._2b{width:5.983200px;}
._2d{width:6.991920px;}
._31{width:8.207280px;}
._30{width:9.334320px;}
._2f{width:10.458000px;}
._32{width:12.121920px;}
._37{width:14.626800px;}
._35{width:15.640080px;}
._34{width:17.466960px;}
._38{width:19.182960px;}
._3d{width:20.258400px;}
._3c{width:21.573120px;}
._3b{width:22.768560px;}
._39{width:24.370080px;}
._3a{width:25.577520px;}
._27{width:27.866160px;}
._29{width:29.111760px;}
._36{width:298.626720px;}
.fc2{color:rgb(51,58,63);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:3.960000px;}
.y101{bottom:4.005000px;}
.y8d{bottom:6.660000px;}
.ye3{bottom:22.140000px;}
.y9e{bottom:22.320000px;}
.y100{bottom:22.365000px;}
.y33{bottom:56.880000px;}
.y6{bottom:59.760000px;}
.yad{bottom:81.396000px;}
.y164{bottom:87.696000px;}
.y30{bottom:92.196000px;}
.y18e{bottom:98.136000px;}
.y137{bottom:99.216000px;}
.yac{bottom:99.756000px;}
.ye0{bottom:100.836000px;}
.y10f{bottom:103.896000px;}
.y60{bottom:104.256000px;}
.y163{bottom:108.756000px;}
.y2f{bottom:113.256000px;}
.yab{bottom:118.116000px;}
.y18d{bottom:119.196000px;}
.y136{bottom:120.276000px;}
.ydf{bottom:121.896000px;}
.y8b{bottom:122.436000px;}
.y10e{bottom:124.956000px;}
.y5f{bottom:125.316000px;}
.y162{bottom:129.816000px;}
.y2e{bottom:134.316000px;}
.yaa{bottom:136.296000px;}
.y18c{bottom:140.256000px;}
.y10d{bottom:140.796000px;}
.y135{bottom:141.336000px;}
.yde{bottom:142.956000px;}
.y8a{bottom:143.496000px;}
.y5e{bottom:146.376000px;}
.y161{bottom:150.870000px;}
.ya9{bottom:154.650000px;}
.y2d{bottom:155.370000px;}
.y10c{bottom:159.150000px;}
.y18b{bottom:161.310000px;}
.y134{bottom:162.390000px;}
.ydd{bottom:164.010000px;}
.y89{bottom:164.550000px;}
.y5d{bottom:167.430000px;}
.y160{bottom:171.930000px;}
.ya8{bottom:173.010000px;}
.y2c{bottom:176.430000px;}
.y10b{bottom:177.510000px;}
.y18a{bottom:182.370000px;}
.y133{bottom:183.450000px;}
.ydc{bottom:185.070000px;}
.y88{bottom:185.610000px;}
.y5c{bottom:188.490000px;}
.ya7{bottom:191.370000px;}
.y15f{bottom:192.990000px;}
.y10a{bottom:195.690000px;}
.y2b{bottom:197.490000px;}
.y189{bottom:203.430000px;}
.y132{bottom:204.510000px;}
.ydb{bottom:206.130000px;}
.y87{bottom:206.670000px;}
.y5b{bottom:209.550000px;}
.y109{bottom:214.050000px;}
.y2a{bottom:218.550000px;}
.y188{bottom:224.490000px;}
.y131{bottom:225.570000px;}
.yda{bottom:227.190000px;}
.y86{bottom:227.730000px;}
.ya6{bottom:227.910000px;}
.y5a{bottom:230.610000px;}
.y108{bottom:232.410000px;}
.y15e{bottom:235.110000px;}
.y29{bottom:239.610000px;}
.y187{bottom:245.550000px;}
.ya5{bottom:246.270000px;}
.y130{bottom:246.630000px;}
.yd9{bottom:248.250000px;}
.y85{bottom:248.790000px;}
.y107{bottom:250.770000px;}
.y59{bottom:251.670000px;}
.y15d{bottom:256.170000px;}
.y28{bottom:260.670000px;}
.ya4{bottom:264.450000px;}
.y186{bottom:266.610000px;}
.y12f{bottom:267.690000px;}
.y106{bottom:268.950000px;}
.yd8{bottom:269.310000px;}
.y84{bottom:269.850000px;}
.y58{bottom:272.730000px;}
.y15c{bottom:277.230000px;}
.y27{bottom:281.730000px;}
.ya3{bottom:282.810000px;}
.y105{bottom:287.310000px;}
.y185{bottom:287.670000px;}
.y12e{bottom:288.750000px;}
.yd7{bottom:290.370000px;}
.y83{bottom:290.910000px;}
.y57{bottom:293.790000px;}
.ya2{bottom:301.170000px;}
.y26{bottom:302.790000px;}
.y104{bottom:305.670000px;}
.y15b{bottom:306.750000px;}
.y184{bottom:308.730000px;}
.y12d{bottom:309.810000px;}
.yd6{bottom:311.430000px;}
.y82{bottom:311.970000px;}
.y56{bottom:314.850000px;}
.ya1{bottom:319.530000px;}
.y25{bottom:323.850000px;}
.y12c{bottom:325.650000px;}
.yff{bottom:326.190000px;}
.y183{bottom:329.835000px;}
.yd5{bottom:332.535000px;}
.y55{bottom:335.955000px;}
.y9d{bottom:340.095000px;}
.y81{bottom:340.995000px;}
.y12b{bottom:344.055000px;}
.y103{bottom:344.595000px;}
.y24{bottom:344.955000px;}
.y182{bottom:350.895000px;}
.y80{bottom:351.075000px;}
.yd4{bottom:353.595000px;}
.y54{bottom:357.015000px;}
.ya0{bottom:358.455000px;}
.y12a{bottom:362.235000px;}
.y102{bottom:362.775000px;}
.y15a{bottom:365.835000px;}
.y23{bottom:366.015000px;}
.y181{bottom:371.955000px;}
.yd3{bottom:374.655000px;}
.y53{bottom:378.075000px;}
.y129{bottom:380.595000px;}
.y9c{bottom:384.915000px;}
.y159{bottom:386.895000px;}
.y22{bottom:387.075000px;}
.yfe{bottom:389.235000px;}
.y7f{bottom:390.855000px;}
.y180{bottom:393.015000px;}
.yd2{bottom:395.715000px;}
.y128{bottom:398.955000px;}
.y52{bottom:399.135000px;}
.y158{bottom:407.955000px;}
.y21{bottom:408.135000px;}
.yfd{bottom:410.295000px;}
.y7e{bottom:411.915000px;}
.y17f{bottom:413.895000px;}
.y9b{bottom:414.975000px;}
.yd1{bottom:416.775000px;}
.y127{bottom:417.135000px;}
.y51{bottom:420.195000px;}
.y157{bottom:429.015000px;}
.y20{bottom:429.195000px;}
.yfc{bottom:431.355000px;}
.y7d{bottom:432.975000px;}
.y17e{bottom:434.955000px;}
.y126{bottom:435.495000px;}
.y9a{bottom:436.035000px;}
.yd0{bottom:437.835000px;}
.y50{bottom:441.255000px;}
.y156{bottom:450.075000px;}
.y1f{bottom:450.255000px;}
.yfb{bottom:452.415000px;}
.y125{bottom:453.855000px;}
.y7c{bottom:454.035000px;}
.y17d{bottom:456.015000px;}
.y99{bottom:457.095000px;}
.ycf{bottom:458.895000px;}
.y4f{bottom:462.315000px;}
.y155{bottom:471.135000px;}
.y1e{bottom:471.315000px;}
.y124{bottom:472.215000px;}
.yfa{bottom:473.475000px;}
.y7b{bottom:475.095000px;}
.y17c{bottom:477.075000px;}
.y98{bottom:478.155000px;}
.yce{bottom:479.955000px;}
.y4e{bottom:483.375000px;}
.y154{bottom:492.195000px;}
.y1d{bottom:492.375000px;}
.y122{bottom:492.735000px;}
.yf9{bottom:494.535000px;}
.y7a{bottom:496.155000px;}
.y17b{bottom:498.135000px;}
.y97{bottom:499.215000px;}
.ycd{bottom:501.015000px;}
.y123{bottom:511.095000px;}
.y153{bottom:513.255000px;}
.y1c{bottom:513.435000px;}
.y96{bottom:515.055000px;}
.yf8{bottom:515.595000px;}
.y79{bottom:517.215000px;}
.y17a{bottom:519.195000px;}
.ycc{bottom:522.075000px;}
.y152{bottom:534.315000px;}
.y1b{bottom:534.495000px;}
.y95{bottom:536.115000px;}
.yf7{bottom:536.655000px;}
.y121{bottom:537.555000px;}
.y78{bottom:538.275000px;}
.y179{bottom:540.255000px;}
.ycb{bottom:543.135000px;}
.y151{bottom:555.375000px;}
.y1a{bottom:555.555000px;}
.y94{bottom:557.175000px;}
.yf6{bottom:557.715000px;}
.y120{bottom:558.615000px;}
.y77{bottom:559.335000px;}
.y178{bottom:561.315000px;}
.yca{bottom:564.195000px;}
.y19{bottom:576.615000px;}
.y93{bottom:578.235000px;}
.yf5{bottom:578.775000px;}
.y11f{bottom:579.675000px;}
.y76{bottom:580.395000px;}
.y177{bottom:582.375000px;}
.yc9{bottom:585.255000px;}
.y150{bottom:585.435000px;}
.y18{bottom:597.705000px;}
.y92{bottom:599.325000px;}
.yf4{bottom:599.865000px;}
.y11e{bottom:600.765000px;}
.y75{bottom:601.485000px;}
.y176{bottom:603.465000px;}
.yc8{bottom:606.345000px;}
.y14f{bottom:606.525000px;}
.y4d{bottom:618.765000px;}
.y91{bottom:620.385000px;}
.yf3{bottom:620.925000px;}
.y11d{bottom:621.825000px;}
.y74{bottom:622.545000px;}
.y175{bottom:624.525000px;}
.yc7{bottom:627.405000px;}
.y14e{bottom:627.585000px;}
.y4c{bottom:639.825000px;}
.y90{bottom:641.445000px;}
.yf2{bottom:641.985000px;}
.y17{bottom:642.165000px;}
.y11c{bottom:642.885000px;}
.y73{bottom:643.605000px;}
.y174{bottom:645.585000px;}
.yc6{bottom:648.465000px;}
.y14d{bottom:648.645000px;}
.y4b{bottom:660.885000px;}
.y8f{bottom:662.505000px;}
.yf1{bottom:663.045000px;}
.y11b{bottom:663.945000px;}
.y72{bottom:664.665000px;}
.yc5{bottom:669.525000px;}
.y14c{bottom:669.705000px;}
.y16{bottom:672.045000px;}
.y173{bottom:675.645000px;}
.y4a{bottom:681.945000px;}
.y8e{bottom:683.565000px;}
.yf0{bottom:684.105000px;}
.y11a{bottom:685.005000px;}
.y71{bottom:685.725000px;}
.yc4{bottom:690.585000px;}
.y14b{bottom:690.765000px;}
.y172{bottom:691.665000px;}
.y15{bottom:693.105000px;}
.yef{bottom:699.585000px;}
.y49{bottom:703.005000px;}
.y119{bottom:706.065000px;}
.y70{bottom:706.785000px;}
.y171{bottom:709.845000px;}
.yc3{bottom:711.645000px;}
.y14a{bottom:711.825000px;}
.y14{bottom:714.165000px;}
.yee{bottom:717.945000px;}
.y48{bottom:724.065000px;}
.y118{bottom:727.125000px;}
.y170{bottom:728.205000px;}
.yc2{bottom:732.705000px;}
.y149{bottom:732.885000px;}
.y13{bottom:735.225000px;}
.y8c{bottom:736.125000px;}
.yed{bottom:736.305000px;}
.y6f{bottom:736.845000px;}
.y47{bottom:745.125000px;}
.y16f{bottom:746.565000px;}
.y117{bottom:748.005000px;}
.yc1{bottom:753.765000px;}
.y148{bottom:753.945000px;}
.yec{bottom:754.665000px;}
.y12{bottom:756.285000px;}
.y6e{bottom:757.905000px;}
.y16e{bottom:764.925000px;}
.y46{bottom:766.005000px;}
.y116{bottom:769.065000px;}
.yeb{bottom:772.845000px;}
.yc0{bottom:774.825000px;}
.y147{bottom:775.005000px;}
.y11{bottom:777.345000px;}
.y6d{bottom:778.965000px;}
.y16d{bottom:783.105000px;}
.y45{bottom:787.065000px;}
.y115{bottom:790.125000px;}
.yea{bottom:791.205000px;}
.ybf{bottom:795.885000px;}
.y146{bottom:796.065000px;}
.y10{bottom:798.405000px;}
.y6c{bottom:800.025000px;}
.y16c{bottom:801.465000px;}
.y44{bottom:808.125000px;}
.ye9{bottom:809.565000px;}
.y114{bottom:811.185000px;}
.y145{bottom:817.125000px;}
.yf{bottom:819.465000px;}
.y16b{bottom:819.825000px;}
.y6b{bottom:821.085000px;}
.ybe{bottom:825.945000px;}
.ye8{bottom:827.925000px;}
.y43{bottom:829.185000px;}
.y16a{bottom:838.005000px;}
.y144{bottom:838.185000px;}
.ye{bottom:840.525000px;}
.y113{bottom:841.245000px;}
.y6a{bottom:842.145000px;}
.ye7{bottom:846.105000px;}
.ybd{bottom:847.005000px;}
.y42{bottom:850.245000px;}
.y169{bottom:856.365000px;}
.yd{bottom:861.585000px;}
.y112{bottom:862.350000px;}
.y69{bottom:863.250000px;}
.ye6{bottom:864.510000px;}
.ybc{bottom:868.110000px;}
.y143{bottom:868.290000px;}
.y41{bottom:871.350000px;}
.y168{bottom:874.770000px;}
.ye5{bottom:882.870000px;}
.y111{bottom:883.410000px;}
.y142{bottom:883.770000px;}
.y68{bottom:884.310000px;}
.yc{bottom:884.850000px;}
.ybb{bottom:889.170000px;}
.y40{bottom:892.410000px;}
.y167{bottom:893.130000px;}
.y141{bottom:901.950000px;}
.ye2{bottom:902.310000px;}
.y110{bottom:904.470000px;}
.y67{bottom:905.370000px;}
.yba{bottom:910.230000px;}
.yb{bottom:911.130000px;}
.y166{bottom:911.310000px;}
.y3f{bottom:913.470000px;}
.y140{bottom:920.310000px;}
.ye4{bottom:920.490000px;}
.ya{bottom:927.870000px;}
.yb9{bottom:931.290000px;}
.y165{bottom:932.010000px;}
.y3e{bottom:934.530000px;}
.y66{bottom:935.430000px;}
.y13f{bottom:938.670000px;}
.ye1{bottom:946.590000px;}
.y9{bottom:950.190000px;}
.yb8{bottom:952.350000px;}
.y3d{bottom:955.590000px;}
.y65{bottom:956.490000px;}
.y13e{bottom:957.030000px;}
.yb7{bottom:973.410000px;}
.y13d{bottom:975.210000px;}
.y8{bottom:975.390000px;}
.y3c{bottom:976.650000px;}
.y64{bottom:977.550000px;}
.y13c{bottom:993.570000px;}
.yb6{bottom:994.470000px;}
.y3b{bottom:997.710000px;}
.y63{bottom:998.610000px;}
.y7{bottom:1009.050000px;}
.y13b{bottom:1011.930000px;}
.yb5{bottom:1015.530000px;}
.y3a{bottom:1018.770000px;}
.y62{bottom:1019.670000px;}
.y13a{bottom:1030.290000px;}
.yb4{bottom:1031.370000px;}
.y39{bottom:1039.830000px;}
.y61{bottom:1040.010000px;}
.y5{bottom:1049.190000px;}
.yb3{bottom:1049.730000px;}
.y38{bottom:1060.890000px;}
.y139{bottom:1067.910000px;}
.yb2{bottom:1068.090000px;}
.y4{bottom:1081.410000px;}
.y37{bottom:1081.950000px;}
.yb1{bottom:1086.270000px;}
.y138{bottom:1094.010000px;}
.y36{bottom:1103.010000px;}
.yb0{bottom:1104.630000px;}
.y3{bottom:1113.630000px;}
.yaf{bottom:1122.990000px;}
.y35{bottom:1124.070000px;}
.yae{bottom:1141.200000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h11{height:18.180000px;}
.h13{height:18.216000px;}
.h12{height:18.360000px;}
.h14{height:18.396000px;}
.he{height:21.060000px;}
.hf{height:21.096000px;}
.h10{height:36.540000px;}
.h7{height:38.671172px;}
.ha{height:45.578672px;}
.h8{height:48.088125px;}
.hb{height:50.364141px;}
.h15{height:54.936000px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.hc{height:96.444141px;}
.h4{height:98.051133px;}
.hd{height:99.759023px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:70.236000px;}
.w14{width:107.496000px;}
.w5{width:123.120000px;}
.w7{width:123.156000px;}
.w6{width:123.336000px;}
.w8{width:123.660000px;}
.w13{width:150.330000px;}
.w16{width:167.580000px;}
.w15{width:176.430000px;}
.wf{width:181.470000px;}
.we{width:181.620000px;}
.w17{width:182.910000px;}
.wb{width:185.430000px;}
.wa{width:185.610000px;}
.wd{width:198.255000px;}
.w3{width:221.070000px;}
.wc{width:223.410000px;}
.w1e{width:227.370000px;}
.w9{width:228.090000px;}
.w11{width:236.370000px;}
.w1b{width:243.030000px;}
.w1f{width:250.050000px;}
.w12{width:257.790000px;}
.w18{width:283.935000px;}
.w10{width:290.595000px;}
.w1a{width:298.695000px;}
.w1d{width:307.335000px;}
.w19{width:350.490000px;}
.w20{width:477.435000px;}
.w1c{width:486.075000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x6{left:53.999987px;}
.x8{left:70.199987px;}
.x7{left:75.599987px;}
.x1e{left:102.635987px;}
.x5{left:173.189987px;}
.x16{left:204.510000px;}
.x9{left:242.129987px;}
.xb{left:275.250000px;}
.x12{left:277.590000px;}
.x10{left:282.270000px;}
.x3{left:286.634987px;}
.x17{left:312.015000px;}
.xc{left:345.495000px;}
.x2{left:350.534987px;}
.x1a{left:352.875000px;}
.x1c{left:361.515000px;}
.x4{left:419.114987px;}
.xd{left:468.615000px;}
.x13{left:475.845000px;}
.x1{left:479.264987px;}
.x18{left:488.445000px;}
.x15{left:581.145000px;}
.x1d{left:588.885000px;}
.xe{left:591.945000px;}
.x1b{left:595.905000px;}
.x11{left:653.505000px;}
.x19{left:656.025000px;}
.x14{left:657.465000px;}
.xf{left:715.290000px;}
.x1f{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:35.840000pt;}
.v6{vertical-align:40.960000pt;}
.ls3d{letter-spacing:-0.853333pt;}
.ls4d{letter-spacing:-0.698667pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.515200pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls3a{letter-spacing:-0.368000pt;}
.lsc{letter-spacing:-0.269333pt;}
.ls26{letter-spacing:-0.229333pt;}
.ls35{letter-spacing:-0.213867pt;}
.ls14{letter-spacing:-0.190933pt;}
.ls40{letter-spacing:-0.185600pt;}
.ls33{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls32{letter-spacing:-0.069867pt;}
.ls37{letter-spacing:-0.061867pt;}
.ls18{letter-spacing:-0.057600pt;}
.ls34{letter-spacing:-0.051840pt;}
.ls2b{letter-spacing:-0.049280pt;}
.ls28{letter-spacing:-0.036480pt;}
.ls3c{letter-spacing:-0.028800pt;}
.lsb{letter-spacing:-0.017920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.021120pt;}
.ls7{letter-spacing:0.034560pt;}
.ls36{letter-spacing:0.053867pt;}
.ls38{letter-spacing:0.054400pt;}
.lse{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.086400pt;}
.ls2a{letter-spacing:0.097067pt;}
.ls20{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls3b{letter-spacing:0.150400pt;}
.ls4e{letter-spacing:0.154667pt;}
.ls2f{letter-spacing:0.154880pt;}
.ls2c{letter-spacing:0.155733pt;}
.ls29{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.165867pt;}
.lsd{letter-spacing:0.186667pt;}
.ls41{letter-spacing:0.194133pt;}
.ls22{letter-spacing:0.221440pt;}
.ls1{letter-spacing:0.239787pt;}
.ls39{letter-spacing:0.244267pt;}
.ls2d{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.279467pt;}
.ls27{letter-spacing:0.294933pt;}
.ls4c{letter-spacing:0.317333pt;}
.ls30{letter-spacing:0.349867pt;}
.ls2{letter-spacing:0.380160pt;}
.ls3e{letter-spacing:0.426240pt;}
.ls1c{letter-spacing:0.473600pt;}
.ls4{letter-spacing:0.549120pt;}
.ls5{letter-spacing:0.566400pt;}
.ls21{letter-spacing:0.794880pt;}
.ls47{letter-spacing:1.417600pt;}
.ls46{letter-spacing:1.720960pt;}
.ls24{letter-spacing:1.872640pt;}
.ls1b{letter-spacing:2.187520pt;}
.ls49{letter-spacing:2.275200pt;}
.ls1f{letter-spacing:2.714880pt;}
.ls44{letter-spacing:2.827520pt;}
.ls4b{letter-spacing:2.915200pt;}
.ls48{letter-spacing:2.970880pt;}
.ls4a{letter-spacing:3.507200pt;}
.ls25{letter-spacing:3.994880pt;}
.ls19{letter-spacing:5.072640pt;}
.ls43{letter-spacing:7.947520pt;}
.ls50{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:13.707520pt;}
.ls3f{letter-spacing:14.032640pt;}
.ls1e{letter-spacing:15.027200pt;}
.ls1d{letter-spacing:15.130880pt;}
.ls45{letter-spacing:15.133867pt;}
.ls12{letter-spacing:15.312640pt;}
.ls13{letter-spacing:17.872640pt;}
.ls11{letter-spacing:19.152640pt;}
.ls23{letter-spacing:20.432640pt;}
.ls42{letter-spacing:21.712640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls4f{letter-spacing:37.840640pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws27{word-spacing:-12.322453pt;}
.wsb{word-spacing:-12.284587pt;}
.ws1a{word-spacing:-12.277120pt;}
.ws23{word-spacing:-12.249387pt;}
.ws26{word-spacing:-12.199253pt;}
.ws1b{word-spacing:-12.170987pt;}
.ws19{word-spacing:-12.160853pt;}
.ws1c{word-spacing:-12.129920pt;}
.ws20{word-spacing:-12.058987pt;}
.ws7{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.981333pt;}
.ws24{word-spacing:-11.976320pt;}
.ws17{word-spacing:-11.968640pt;}
.ws18{word-spacing:-11.955840pt;}
.ws1e{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.ws21{word-spacing:-11.943253pt;}
.ws1d{word-spacing:-11.935253pt;}
.ws8{word-spacing:-11.902187pt;}
.ws25{word-spacing:-11.819520pt;}
.wsa{word-spacing:-11.814187pt;}
.ws1f{word-spacing:-11.791253pt;}
.ws22{word-spacing:-11.735787pt;}
.wsd{word-spacing:-11.686400pt;}
.ws5{word-spacing:-8.389120pt;}
.ws16{word-spacing:-7.937067pt;}
.ws6{word-spacing:-7.810560pt;}
.ws15{word-spacing:-0.167040pt;}
.ws9{word-spacing:0.000000pt;}
.ws10{word-spacing:0.451627pt;}
.ws13{word-spacing:0.472960pt;}
.ws29{word-spacing:3.651627pt;}
.wsf{word-spacing:3.672960pt;}
.ws12{word-spacing:7.959680pt;}
.ws2a{word-spacing:8.599680pt;}
.ws14{word-spacing:8.759680pt;}
.ws28{word-spacing:11.159680pt;}
.wse{word-spacing:11.287680pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.569493pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._3e{margin-left:-4.803840pt;}
._33{margin-left:-3.722027pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:0.913707pt;}
._2e{width:1.934293pt;}
._2a{width:2.835840pt;}
._2c{width:4.143360pt;}
._2b{width:5.318400pt;}
._2d{width:6.215040pt;}
._31{width:7.295360pt;}
._30{width:8.297173pt;}
._2f{width:9.296000pt;}
._32{width:10.775040pt;}
._37{width:13.001600pt;}
._35{width:13.902293pt;}
._34{width:15.526187pt;}
._38{width:17.051520pt;}
._3d{width:18.007467pt;}
._3c{width:19.176107pt;}
._3b{width:20.238720pt;}
._39{width:21.662293pt;}
._3a{width:22.735573pt;}
._27{width:24.769920pt;}
._29{width:25.877120pt;}
._36{width:265.445973pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:3.520000pt;}
.y101{bottom:3.560000pt;}
.y8d{bottom:5.920000pt;}
.ye3{bottom:19.680000pt;}
.y9e{bottom:19.840000pt;}
.y100{bottom:19.880000pt;}
.y33{bottom:50.560000pt;}
.y6{bottom:53.120000pt;}
.yad{bottom:72.352000pt;}
.y164{bottom:77.952000pt;}
.y30{bottom:81.952000pt;}
.y18e{bottom:87.232000pt;}
.y137{bottom:88.192000pt;}
.yac{bottom:88.672000pt;}
.ye0{bottom:89.632000pt;}
.y10f{bottom:92.352000pt;}
.y60{bottom:92.672000pt;}
.y163{bottom:96.672000pt;}
.y2f{bottom:100.672000pt;}
.yab{bottom:104.992000pt;}
.y18d{bottom:105.952000pt;}
.y136{bottom:106.912000pt;}
.ydf{bottom:108.352000pt;}
.y8b{bottom:108.832000pt;}
.y10e{bottom:111.072000pt;}
.y5f{bottom:111.392000pt;}
.y162{bottom:115.392000pt;}
.y2e{bottom:119.392000pt;}
.yaa{bottom:121.152000pt;}
.y18c{bottom:124.672000pt;}
.y10d{bottom:125.152000pt;}
.y135{bottom:125.632000pt;}
.yde{bottom:127.072000pt;}
.y8a{bottom:127.552000pt;}
.y5e{bottom:130.112000pt;}
.y161{bottom:134.106667pt;}
.ya9{bottom:137.466667pt;}
.y2d{bottom:138.106667pt;}
.y10c{bottom:141.466667pt;}
.y18b{bottom:143.386667pt;}
.y134{bottom:144.346667pt;}
.ydd{bottom:145.786667pt;}
.y89{bottom:146.266667pt;}
.y5d{bottom:148.826667pt;}
.y160{bottom:152.826667pt;}
.ya8{bottom:153.786667pt;}
.y2c{bottom:156.826667pt;}
.y10b{bottom:157.786667pt;}
.y18a{bottom:162.106667pt;}
.y133{bottom:163.066667pt;}
.ydc{bottom:164.506667pt;}
.y88{bottom:164.986667pt;}
.y5c{bottom:167.546667pt;}
.ya7{bottom:170.106667pt;}
.y15f{bottom:171.546667pt;}
.y10a{bottom:173.946667pt;}
.y2b{bottom:175.546667pt;}
.y189{bottom:180.826667pt;}
.y132{bottom:181.786667pt;}
.ydb{bottom:183.226667pt;}
.y87{bottom:183.706667pt;}
.y5b{bottom:186.266667pt;}
.y109{bottom:190.266667pt;}
.y2a{bottom:194.266667pt;}
.y188{bottom:199.546667pt;}
.y131{bottom:200.506667pt;}
.yda{bottom:201.946667pt;}
.y86{bottom:202.426667pt;}
.ya6{bottom:202.586667pt;}
.y5a{bottom:204.986667pt;}
.y108{bottom:206.586667pt;}
.y15e{bottom:208.986667pt;}
.y29{bottom:212.986667pt;}
.y187{bottom:218.266667pt;}
.ya5{bottom:218.906667pt;}
.y130{bottom:219.226667pt;}
.yd9{bottom:220.666667pt;}
.y85{bottom:221.146667pt;}
.y107{bottom:222.906667pt;}
.y59{bottom:223.706667pt;}
.y15d{bottom:227.706667pt;}
.y28{bottom:231.706667pt;}
.ya4{bottom:235.066667pt;}
.y186{bottom:236.986667pt;}
.y12f{bottom:237.946667pt;}
.y106{bottom:239.066667pt;}
.yd8{bottom:239.386667pt;}
.y84{bottom:239.866667pt;}
.y58{bottom:242.426667pt;}
.y15c{bottom:246.426667pt;}
.y27{bottom:250.426667pt;}
.ya3{bottom:251.386667pt;}
.y105{bottom:255.386667pt;}
.y185{bottom:255.706667pt;}
.y12e{bottom:256.666667pt;}
.yd7{bottom:258.106667pt;}
.y83{bottom:258.586667pt;}
.y57{bottom:261.146667pt;}
.ya2{bottom:267.706667pt;}
.y26{bottom:269.146667pt;}
.y104{bottom:271.706667pt;}
.y15b{bottom:272.666667pt;}
.y184{bottom:274.426667pt;}
.y12d{bottom:275.386667pt;}
.yd6{bottom:276.826667pt;}
.y82{bottom:277.306667pt;}
.y56{bottom:279.866667pt;}
.ya1{bottom:284.026667pt;}
.y25{bottom:287.866667pt;}
.y12c{bottom:289.466667pt;}
.yff{bottom:289.946667pt;}
.y183{bottom:293.186667pt;}
.yd5{bottom:295.586667pt;}
.y55{bottom:298.626667pt;}
.y9d{bottom:302.306667pt;}
.y81{bottom:303.106667pt;}
.y12b{bottom:305.826667pt;}
.y103{bottom:306.306667pt;}
.y24{bottom:306.626667pt;}
.y182{bottom:311.906667pt;}
.y80{bottom:312.066667pt;}
.yd4{bottom:314.306667pt;}
.y54{bottom:317.346667pt;}
.ya0{bottom:318.626667pt;}
.y12a{bottom:321.986667pt;}
.y102{bottom:322.466667pt;}
.y15a{bottom:325.186667pt;}
.y23{bottom:325.346667pt;}
.y181{bottom:330.626667pt;}
.yd3{bottom:333.026667pt;}
.y53{bottom:336.066667pt;}
.y129{bottom:338.306667pt;}
.y9c{bottom:342.146667pt;}
.y159{bottom:343.906667pt;}
.y22{bottom:344.066667pt;}
.yfe{bottom:345.986667pt;}
.y7f{bottom:347.426667pt;}
.y180{bottom:349.346667pt;}
.yd2{bottom:351.746667pt;}
.y128{bottom:354.626667pt;}
.y52{bottom:354.786667pt;}
.y158{bottom:362.626667pt;}
.y21{bottom:362.786667pt;}
.yfd{bottom:364.706667pt;}
.y7e{bottom:366.146667pt;}
.y17f{bottom:367.906667pt;}
.y9b{bottom:368.866667pt;}
.yd1{bottom:370.466667pt;}
.y127{bottom:370.786667pt;}
.y51{bottom:373.506667pt;}
.y157{bottom:381.346667pt;}
.y20{bottom:381.506667pt;}
.yfc{bottom:383.426667pt;}
.y7d{bottom:384.866667pt;}
.y17e{bottom:386.626667pt;}
.y126{bottom:387.106667pt;}
.y9a{bottom:387.586667pt;}
.yd0{bottom:389.186667pt;}
.y50{bottom:392.226667pt;}
.y156{bottom:400.066667pt;}
.y1f{bottom:400.226667pt;}
.yfb{bottom:402.146667pt;}
.y125{bottom:403.426667pt;}
.y7c{bottom:403.586667pt;}
.y17d{bottom:405.346667pt;}
.y99{bottom:406.306667pt;}
.ycf{bottom:407.906667pt;}
.y4f{bottom:410.946667pt;}
.y155{bottom:418.786667pt;}
.y1e{bottom:418.946667pt;}
.y124{bottom:419.746667pt;}
.yfa{bottom:420.866667pt;}
.y7b{bottom:422.306667pt;}
.y17c{bottom:424.066667pt;}
.y98{bottom:425.026667pt;}
.yce{bottom:426.626667pt;}
.y4e{bottom:429.666667pt;}
.y154{bottom:437.506667pt;}
.y1d{bottom:437.666667pt;}
.y122{bottom:437.986667pt;}
.yf9{bottom:439.586667pt;}
.y7a{bottom:441.026667pt;}
.y17b{bottom:442.786667pt;}
.y97{bottom:443.746667pt;}
.ycd{bottom:445.346667pt;}
.y123{bottom:454.306667pt;}
.y153{bottom:456.226667pt;}
.y1c{bottom:456.386667pt;}
.y96{bottom:457.826667pt;}
.yf8{bottom:458.306667pt;}
.y79{bottom:459.746667pt;}
.y17a{bottom:461.506667pt;}
.ycc{bottom:464.066667pt;}
.y152{bottom:474.946667pt;}
.y1b{bottom:475.106667pt;}
.y95{bottom:476.546667pt;}
.yf7{bottom:477.026667pt;}
.y121{bottom:477.826667pt;}
.y78{bottom:478.466667pt;}
.y179{bottom:480.226667pt;}
.ycb{bottom:482.786667pt;}
.y151{bottom:493.666667pt;}
.y1a{bottom:493.826667pt;}
.y94{bottom:495.266667pt;}
.yf6{bottom:495.746667pt;}
.y120{bottom:496.546667pt;}
.y77{bottom:497.186667pt;}
.y178{bottom:498.946667pt;}
.yca{bottom:501.506667pt;}
.y19{bottom:512.546667pt;}
.y93{bottom:513.986667pt;}
.yf5{bottom:514.466667pt;}
.y11f{bottom:515.266667pt;}
.y76{bottom:515.906667pt;}
.y177{bottom:517.666667pt;}
.yc9{bottom:520.226667pt;}
.y150{bottom:520.386667pt;}
.y18{bottom:531.293333pt;}
.y92{bottom:532.733333pt;}
.yf4{bottom:533.213333pt;}
.y11e{bottom:534.013333pt;}
.y75{bottom:534.653333pt;}
.y176{bottom:536.413333pt;}
.yc8{bottom:538.973333pt;}
.y14f{bottom:539.133333pt;}
.y4d{bottom:550.013333pt;}
.y91{bottom:551.453333pt;}
.yf3{bottom:551.933333pt;}
.y11d{bottom:552.733333pt;}
.y74{bottom:553.373333pt;}
.y175{bottom:555.133333pt;}
.yc7{bottom:557.693333pt;}
.y14e{bottom:557.853333pt;}
.y4c{bottom:568.733333pt;}
.y90{bottom:570.173333pt;}
.yf2{bottom:570.653333pt;}
.y17{bottom:570.813333pt;}
.y11c{bottom:571.453333pt;}
.y73{bottom:572.093333pt;}
.y174{bottom:573.853333pt;}
.yc6{bottom:576.413333pt;}
.y14d{bottom:576.573333pt;}
.y4b{bottom:587.453333pt;}
.y8f{bottom:588.893333pt;}
.yf1{bottom:589.373333pt;}
.y11b{bottom:590.173333pt;}
.y72{bottom:590.813333pt;}
.yc5{bottom:595.133333pt;}
.y14c{bottom:595.293333pt;}
.y16{bottom:597.373333pt;}
.y173{bottom:600.573333pt;}
.y4a{bottom:606.173333pt;}
.y8e{bottom:607.613333pt;}
.yf0{bottom:608.093333pt;}
.y11a{bottom:608.893333pt;}
.y71{bottom:609.533333pt;}
.yc4{bottom:613.853333pt;}
.y14b{bottom:614.013333pt;}
.y172{bottom:614.813333pt;}
.y15{bottom:616.093333pt;}
.yef{bottom:621.853333pt;}
.y49{bottom:624.893333pt;}
.y119{bottom:627.613333pt;}
.y70{bottom:628.253333pt;}
.y171{bottom:630.973333pt;}
.yc3{bottom:632.573333pt;}
.y14a{bottom:632.733333pt;}
.y14{bottom:634.813333pt;}
.yee{bottom:638.173333pt;}
.y48{bottom:643.613333pt;}
.y118{bottom:646.333333pt;}
.y170{bottom:647.293333pt;}
.yc2{bottom:651.293333pt;}
.y149{bottom:651.453333pt;}
.y13{bottom:653.533333pt;}
.y8c{bottom:654.333333pt;}
.yed{bottom:654.493333pt;}
.y6f{bottom:654.973333pt;}
.y47{bottom:662.333333pt;}
.y16f{bottom:663.613333pt;}
.y117{bottom:664.893333pt;}
.yc1{bottom:670.013333pt;}
.y148{bottom:670.173333pt;}
.yec{bottom:670.813333pt;}
.y12{bottom:672.253333pt;}
.y6e{bottom:673.693333pt;}
.y16e{bottom:679.933333pt;}
.y46{bottom:680.893333pt;}
.y116{bottom:683.613333pt;}
.yeb{bottom:686.973333pt;}
.yc0{bottom:688.733333pt;}
.y147{bottom:688.893333pt;}
.y11{bottom:690.973333pt;}
.y6d{bottom:692.413333pt;}
.y16d{bottom:696.093333pt;}
.y45{bottom:699.613333pt;}
.y115{bottom:702.333333pt;}
.yea{bottom:703.293333pt;}
.ybf{bottom:707.453333pt;}
.y146{bottom:707.613333pt;}
.y10{bottom:709.693333pt;}
.y6c{bottom:711.133333pt;}
.y16c{bottom:712.413333pt;}
.y44{bottom:718.333333pt;}
.ye9{bottom:719.613333pt;}
.y114{bottom:721.053333pt;}
.y145{bottom:726.333333pt;}
.yf{bottom:728.413333pt;}
.y16b{bottom:728.733333pt;}
.y6b{bottom:729.853333pt;}
.ybe{bottom:734.173333pt;}
.ye8{bottom:735.933333pt;}
.y43{bottom:737.053333pt;}
.y16a{bottom:744.893333pt;}
.y144{bottom:745.053333pt;}
.ye{bottom:747.133333pt;}
.y113{bottom:747.773333pt;}
.y6a{bottom:748.573333pt;}
.ye7{bottom:752.093333pt;}
.ybd{bottom:752.893333pt;}
.y42{bottom:755.773333pt;}
.y169{bottom:761.213333pt;}
.yd{bottom:765.853333pt;}
.y112{bottom:766.533333pt;}
.y69{bottom:767.333333pt;}
.ye6{bottom:768.453333pt;}
.ybc{bottom:771.653333pt;}
.y143{bottom:771.813333pt;}
.y41{bottom:774.533333pt;}
.y168{bottom:777.573333pt;}
.ye5{bottom:784.773333pt;}
.y111{bottom:785.253333pt;}
.y142{bottom:785.573333pt;}
.y68{bottom:786.053333pt;}
.yc{bottom:786.533333pt;}
.ybb{bottom:790.373333pt;}
.y40{bottom:793.253333pt;}
.y167{bottom:793.893333pt;}
.y141{bottom:801.733333pt;}
.ye2{bottom:802.053333pt;}
.y110{bottom:803.973333pt;}
.y67{bottom:804.773333pt;}
.yba{bottom:809.093333pt;}
.yb{bottom:809.893333pt;}
.y166{bottom:810.053333pt;}
.y3f{bottom:811.973333pt;}
.y140{bottom:818.053333pt;}
.ye4{bottom:818.213333pt;}
.ya{bottom:824.773333pt;}
.yb9{bottom:827.813333pt;}
.y165{bottom:828.453333pt;}
.y3e{bottom:830.693333pt;}
.y66{bottom:831.493333pt;}
.y13f{bottom:834.373333pt;}
.ye1{bottom:841.413333pt;}
.y9{bottom:844.613333pt;}
.yb8{bottom:846.533333pt;}
.y3d{bottom:849.413333pt;}
.y65{bottom:850.213333pt;}
.y13e{bottom:850.693333pt;}
.yb7{bottom:865.253333pt;}
.y13d{bottom:866.853333pt;}
.y8{bottom:867.013333pt;}
.y3c{bottom:868.133333pt;}
.y64{bottom:868.933333pt;}
.y13c{bottom:883.173333pt;}
.yb6{bottom:883.973333pt;}
.y3b{bottom:886.853333pt;}
.y63{bottom:887.653333pt;}
.y7{bottom:896.933333pt;}
.y13b{bottom:899.493333pt;}
.yb5{bottom:902.693333pt;}
.y3a{bottom:905.573333pt;}
.y62{bottom:906.373333pt;}
.y13a{bottom:915.813333pt;}
.yb4{bottom:916.773333pt;}
.y39{bottom:924.293333pt;}
.y61{bottom:924.453333pt;}
.y5{bottom:932.613333pt;}
.yb3{bottom:933.093333pt;}
.y38{bottom:943.013333pt;}
.y139{bottom:949.253333pt;}
.yb2{bottom:949.413333pt;}
.y4{bottom:961.253333pt;}
.y37{bottom:961.733333pt;}
.yb1{bottom:965.573333pt;}
.y138{bottom:972.453333pt;}
.y36{bottom:980.453333pt;}
.yb0{bottom:981.893333pt;}
.y3{bottom:989.893333pt;}
.yaf{bottom:998.213333pt;}
.y35{bottom:999.173333pt;}
.yae{bottom:1014.400000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h11{height:16.160000pt;}
.h13{height:16.192000pt;}
.h12{height:16.320000pt;}
.h14{height:16.352000pt;}
.he{height:18.720000pt;}
.hf{height:18.752000pt;}
.h10{height:32.480000pt;}
.h7{height:34.374375pt;}
.ha{height:40.514375pt;}
.h8{height:42.745000pt;}
.hb{height:44.768125pt;}
.h15{height:48.832000pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.hc{height:85.728125pt;}
.h4{height:87.156562pt;}
.hd{height:88.674688pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:62.432000pt;}
.w14{width:95.552000pt;}
.w5{width:109.440000pt;}
.w7{width:109.472000pt;}
.w6{width:109.632000pt;}
.w8{width:109.920000pt;}
.w13{width:133.626667pt;}
.w16{width:148.960000pt;}
.w15{width:156.826667pt;}
.wf{width:161.306667pt;}
.we{width:161.440000pt;}
.w17{width:162.586667pt;}
.wb{width:164.826667pt;}
.wa{width:164.986667pt;}
.wd{width:176.226667pt;}
.w3{width:196.506667pt;}
.wc{width:198.586667pt;}
.w1e{width:202.106667pt;}
.w9{width:202.746667pt;}
.w11{width:210.106667pt;}
.w1b{width:216.026667pt;}
.w1f{width:222.266667pt;}
.w12{width:229.146667pt;}
.w18{width:252.386667pt;}
.w10{width:258.306667pt;}
.w1a{width:265.506667pt;}
.w1d{width:273.186667pt;}
.w19{width:311.546667pt;}
.w20{width:424.386667pt;}
.w1c{width:432.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x6{left:47.999988pt;}
.x8{left:62.399988pt;}
.x7{left:67.199988pt;}
.x1e{left:91.231988pt;}
.x5{left:153.946655pt;}
.x16{left:181.786667pt;}
.x9{left:215.226655pt;}
.xb{left:244.666667pt;}
.x12{left:246.746667pt;}
.x10{left:250.906667pt;}
.x3{left:254.786655pt;}
.x17{left:277.346667pt;}
.xc{left:307.106667pt;}
.x2{left:311.586655pt;}
.x1a{left:313.666667pt;}
.x1c{left:321.346667pt;}
.x4{left:372.546655pt;}
.xd{left:416.546667pt;}
.x13{left:422.973333pt;}
.x1{left:426.013322pt;}
.x18{left:434.173333pt;}
.x15{left:516.573333pt;}
.x1d{left:523.453333pt;}
.xe{left:526.173333pt;}
.x1b{left:529.693333pt;}
.x11{left:580.893333pt;}
.x19{left:583.133333pt;}
.x14{left:584.413333pt;}
.xf{left:635.813333pt;}
.x1f{left:746.053322pt;}
}




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