
    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_cd19de7263632e82ddb9b23a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.213379;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_951003485ed7532c3bc9f5e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_896dabb69436707eda48bb2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.683000;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_0a22b05dd373e58ebe014fe4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109863;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_398fa9348160fc09cbe70c76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.578000;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_5f780ea5269acb97e055513e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_65019ca4ee5f8733ccd00e39.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_c19aa8226a19fa6d7e97d8f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_293eb50f956f84ef04cf1c61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.188000;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_d33d01fbaeae26325a197f9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.022949;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_c0dfc2b8fd768dffc691389b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.878906;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_06d5348472ee7ee95d058622.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022949;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_9e5af046215b78732ee9006d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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;}
.m4{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060518px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000006px;}
.lsb{letter-spacing:0.000012px;}
.ls6{letter-spacing:0.000126px;}
.lsc{letter-spacing:0.979338px;}
.lsa{letter-spacing:1.272028px;}
.ls4{letter-spacing:1.478295px;}
.ls1{letter-spacing:1.617677px;}
.ls3{letter-spacing:1.651467px;}
.ls2{letter-spacing:1.748612px;}
.ls0{letter-spacing:1.778178px;}
.ls8{letter-spacing:4.174686px;}
.ls5{letter-spacing:19.038201px;}
.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;}
}
.wsa{word-spacing:-38.256000px;}
.ws4{word-spacing:-30.844287px;}
.ws7{word-spacing:-24.230394px;}
.ws9{word-spacing:-21.270336px;}
.ws3{word-spacing:-14.011436px;}
.ws6{word-spacing:-13.437589px;}
.ws0{word-spacing:-12.375441px;}
.ws2{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.208832px;}
.ws14{word-spacing:-9.563850px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:1.897976px;}
.ws1{word-spacing:16.182491px;}
.ws11{word-spacing:98.098322px;}
.wsf{word-spacing:144.540378px;}
.wsb{word-spacing:165.630580px;}
.ws13{word-spacing:259.172684px;}
.ws10{word-spacing:795.195872px;}
.wse{word-spacing:883.921621px;}
.wsc{word-spacing:884.533708px;}
.wsd{word-spacing:890.118996px;}
.ws12{word-spacing:1715.192336px;}
._3{margin-left:-17.343592px;}
._e{margin-left:-12.555654px;}
._f{margin-left:-5.001117px;}
._6{margin-left:-3.090128px;}
._5{margin-left:-1.996963px;}
._2{width:1.279649px;}
._1{width:2.332143px;}
._0{width:3.574877px;}
._4{width:5.491649px;}
._8{width:6.610637px;}
._c{width:7.648745px;}
._9{width:8.822901px;}
._7{width:10.238740px;}
._10{width:11.260352px;}
._a{width:12.328151px;}
._b{width:15.245207px;}
._14{width:16.756338px;}
._13{width:17.899251px;}
._12{width:18.908265px;}
._d{width:20.318240px;}
._34{width:21.463051px;}
._11{width:30.193927px;}
._17{width:67.761790px;}
._26{width:69.011834px;}
._15{width:74.708971px;}
._18{width:77.884169px;}
._1a{width:79.349351px;}
._1b{width:90.366906px;}
._2a{width:95.684406px;}
._33{width:98.350808px;}
._1d{width:102.417357px;}
._27{width:103.565019px;}
._31{width:107.275793px;}
._25{width:114.341565px;}
._22{width:116.292590px;}
._1c{width:124.949787px;}
._1f{width:127.688874px;}
._2c{width:132.027036px;}
._1e{width:141.514376px;}
._2b{width:144.219032px;}
._19{width:146.870132px;}
._2f{width:165.309234px;}
._28{width:173.457635px;}
._20{width:174.987851px;}
._32{width:178.545603px;}
._2d{width:182.906718px;}
._29{width:186.655748px;}
._2e{width:212.019078px;}
._23{width:217.298323px;}
._30{width:231.911886px;}
._16{width:309.226049px;}
._24{width:762.181462px;}
._21{width:895.130454px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:26.761800px;}
.fs9{font-size:35.867400px;}
.fs4{font-size:38.255400px;}
.fsa{font-size:38.256000px;}
.fs5{font-size:41.842200px;}
.fs2{font-size:42.237000px;}
.fs6{font-size:43.038000px;}
.fs7{font-size:47.820600px;}
.fs1{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fs8{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:47.430000px;}
.ya3{bottom:78.410746px;}
.y153{bottom:78.411577px;}
.yf1{bottom:82.999876px;}
.y1a9{bottom:84.704591px;}
.y152{bottom:90.401776px;}
.y114{bottom:91.422716px;}
.y43{bottom:93.494940px;}
.y44{bottom:93.495030px;}
.ya2{bottom:94.143724px;}
.y83{bottom:95.082855px;}
.y1a8{bottom:96.694789px;}
.yf0{bottom:98.731658px;}
.y151{bottom:102.307813px;}
.y42{bottom:105.629970px;}
.y113{bottom:107.069616px;}
.y1a7{bottom:108.599870px;}
.ya1{bottom:109.790624px;}
.y82{bottom:110.730951px;}
.y150{bottom:114.298012px;}
.yef{bottom:114.378559px;}
.y40{bottom:119.905636px;}
.y1a6{bottom:120.591025px;}
.yea{bottom:120.927787px;}
.y112{bottom:122.802594px;}
.ya0{bottom:125.522406px;}
.y14f{bottom:126.203092px;}
.y81{bottom:126.462733px;}
.yee{bottom:130.111536px;}
.y1a5{bottom:132.581224px;}
.y3f{bottom:134.192100px;}
.ye9{bottom:135.299251px;}
.y14e{bottom:138.193291px;}
.y111{bottom:138.449494px;}
.y9f{bottom:141.169306px;}
.y80{bottom:142.109633px;}
.y1a4{bottom:144.486304px;}
.yed{bottom:145.758436px;}
.ye8{bottom:149.585715px;}
.y14d{bottom:150.184446px;}
.y110{bottom:154.181276px;}
.y1a3{bottom:156.476503px;}
.y9e{bottom:156.902284px;}
.y7f{bottom:157.841415px;}
.y3b{bottom:159.703536px;}
.yec{bottom:161.490218px;}
.y14c{bottom:162.089527px;}
.ye7{bottom:163.957179px;}
.y1a2{bottom:168.382540px;}
.y10f{bottom:169.913058px;}
.y9d{bottom:172.549184px;}
.y7e{bottom:173.574392px;}
.y3a{bottom:174.075000px;}
.y14b{bottom:174.079725px;}
.yeb{bottom:177.222000px;}
.ye6{bottom:178.328643px;}
.y1a1{bottom:180.372739px;}
.y10e{bottom:185.559958px;}
.y14a{bottom:185.984806px;}
.y9c{bottom:188.280966px;}
.y7d{bottom:189.221293px;}
.y1a0{bottom:192.277819px;}
.ye5{bottom:192.700108px;}
.y149{bottom:197.975961px;}
.y10d{bottom:201.292936px;}
.y9b{bottom:203.927866px;}
.y19f{bottom:204.268974px;}
.y7c{bottom:204.953075px;}
.ye4{bottom:206.986572px;}
.y148{bottom:209.966160px;}
.yf3{bottom:210.813036px;}
.y19e{bottom:216.259173px;}
.y10c{bottom:216.939836px;}
.y9a{bottom:219.660844px;}
.y7b{bottom:220.599975px;}
.y38{bottom:220.848798px;}
.ye3{bottom:221.358036px;}
.y147{bottom:221.871240px;}
.yf2{bottom:225.184500px;}
.y19d{bottom:228.164253px;}
.y10b{bottom:232.671618px;}
.y146{bottom:233.862395px;}
.y99{bottom:235.307744px;}
.ye2{bottom:235.729500px;}
.y7a{bottom:236.332952px;}
.y37{bottom:236.495698px;}
.y19c{bottom:240.154452px;}
.y145{bottom:245.767476px;}
.y10a{bottom:248.318518px;}
.y79{bottom:251.979853px;}
.y19b{bottom:252.060489px;}
.y36{bottom:252.227480px;}
.ye1{bottom:256.912896px;}
.y144{bottom:257.757674px;}
.y19a{bottom:264.050688px;}
.y109{bottom:264.051496px;}
.y98{bottom:266.686426px;}
.y78{bottom:267.711635px;}
.y35{bottom:267.875576px;}
.y143{bottom:269.662755px;}
.ye0{bottom:269.754277px;}
.y199{bottom:276.040887px;}
.y108{bottom:279.698396px;}
.y142{bottom:281.653910px;}
.y77{bottom:283.358535px;}
.y34{bottom:283.607358px;}
.y198{bottom:287.945967px;}
.y141{bottom:293.644109px;}
.y107{bottom:295.430178px;}
.y97{bottom:299.086078px;}
.y76{bottom:299.091512px;}
.y33{bottom:299.254258px;}
.y197{bottom:299.937122px;}
.ydf{bottom:302.918840px;}
.y140{bottom:305.549189px;}
.y106{bottom:311.077078px;}
.y196{bottom:311.842203px;}
.y96{bottom:314.732978px;}
.y75{bottom:314.738413px;}
.y32{bottom:314.986040px;}
.yde{bottom:315.844383px;}
.y13f{bottom:317.539388px;}
.y195{bottom:323.832401px;}
.y105{bottom:326.810055px;}
.ydd{bottom:328.685765px;}
.y13e{bottom:329.445425px;}
.y95{bottom:330.465956px;}
.y74{bottom:330.470195px;}
.y31{bottom:330.634136px;}
.y194{bottom:335.738438px;}
.y13d{bottom:341.435624px;}
.y104{bottom:342.456956px;}
.y94{bottom:346.112856px;}
.y73{bottom:346.117095px;}
.y30{bottom:346.365917px;}
.y193{bottom:347.728637px;}
.y13c{bottom:353.425822px;}
.y103{bottom:358.188738px;}
.y192{bottom:359.718836px;}
.y93{bottom:361.844638px;}
.y72{bottom:361.848877px;}
.ydc{bottom:361.850327px;}
.y2f{bottom:362.012818px;}
.y13b{bottom:365.330903px;}
.y191{bottom:371.623916px;}
.y102{bottom:373.835638px;}
.ydb{bottom:374.691709px;}
.y13a{bottom:377.322058px;}
.y92{bottom:377.491538px;}
.y71{bottom:377.496973px;}
.y39{bottom:377.744600px;}
.y190{bottom:383.615071px;}
.yda{bottom:387.532134px;}
.y139{bottom:389.227138px;}
.y101{bottom:389.568615px;}
.y91{bottom:393.224516px;}
.y70{bottom:393.228754px;}
.y2e{bottom:393.391500px;}
.y18f{bottom:395.520152px;}
.yd9{bottom:400.372559px;}
.y138{bottom:401.217337px;}
.y100{bottom:405.215516px;}
.y18e{bottom:407.510351px;}
.y90{bottom:408.871416px;}
.y6f{bottom:408.875655px;}
.y137{bottom:413.123374px;}
.yd8{bottom:413.213940px;}
.y18d{bottom:419.500549px;}
.yff{bottom:420.947298px;}
.y8f{bottom:424.603198px;}
.y6e{bottom:424.607437px;}
.y136{bottom:425.113573px;}
.yd7{bottom:426.054365px;}
.y18c{bottom:431.406586px;}
.yfe{bottom:436.594198px;}
.y135{bottom:437.103772px;}
.yd6{bottom:438.980865px;}
.y8e{bottom:440.250098px;}
.y6d{bottom:440.255532px;}
.y18b{bottom:443.396785px;}
.y134{bottom:449.008852px;}
.yd5{bottom:451.821290px;}
.yfd{bottom:452.325980px;}
.y2d{bottom:452.923038px;}
.y18a{bottom:455.301865px;}
.y8d{bottom:455.983076px;}
.y133{bottom:461.000007px;}
.yd4{bottom:464.661715px;}
.y189{bottom:467.292064px;}
.y2c{bottom:467.294502px;}
.yfc{bottom:467.974076px;}
.y8c{bottom:471.629976px;}
.y6c{bottom:471.634215px;}
.y132{bottom:472.905088px;}
.yd3{bottom:477.503096px;}
.y188{bottom:479.283219px;}
.y2b{bottom:481.580966px;}
.yfb{bottom:483.705858px;}
.y131{bottom:484.895286px;}
.y8b{bottom:487.361758px;}
.y6b{bottom:487.365997px;}
.yd2{bottom:490.343521px;}
.y187{bottom:491.188300px;}
.y2a{bottom:495.952430px;}
.y130{bottom:496.885485px;}
.yfa{bottom:499.352758px;}
.y8a{bottom:503.008658px;}
.y186{bottom:503.178498px;}
.yd1{bottom:503.184902px;}
.y12f{bottom:508.791522px;}
.y29{bottom:510.323895px;}
.y185{bottom:515.084535px;}
.yf9{bottom:515.084540px;}
.yd0{bottom:516.025327px;}
.y89{bottom:518.741636px;}
.y6a{bottom:518.745874px;}
.y12e{bottom:520.781721px;}
.y28{bottom:524.610359px;}
.y184{bottom:527.074734px;}
.ycf{bottom:528.865752px;}
.yf8{bottom:530.732636px;}
.y12d{bottom:532.686801px;}
.y88{bottom:534.388536px;}
.y69{bottom:534.392775px;}
.y183{bottom:538.979815px;}
.y27{bottom:538.981823px;}
.y12c{bottom:544.677000px;}
.yf7{bottom:546.464417px;}
.y87{bottom:550.120318px;}
.y68{bottom:550.124557px;}
.y182{bottom:550.969057px;}
.y26{bottom:553.353287px;}
.yf6{bottom:562.111318px;}
.yce{bottom:562.116390px;}
.y181{bottom:562.960212px;}
.y86{bottom:565.767218px;}
.y67{bottom:565.771457px;}
.y25{bottom:567.724751px;}
.y12b{bottom:572.234411px;}
.y180{bottom:574.865293px;}
.ycd{bottom:574.956815px;}
.yf5{bottom:577.843100px;}
.y85{bottom:581.499000px;}
.y66{bottom:581.504434px;}
.y24{bottom:582.011215px;}
.y84{bottom:586.771500px;}
.y17f{bottom:586.855491px;}
.ycc{bottom:587.798196px;}
.yf4{bottom:593.490000px;}
.y23{bottom:596.382679px;}
.y65{bottom:597.151335px;}
.y17e{bottom:598.760572px;}
.ycb{bottom:600.638621px;}
.y12a{bottom:604.889903px;}
.y1d{bottom:605.311800px;}
.y17d{bottom:610.751727px;}
.y22{bottom:610.754143px;}
.y64{bottom:612.883116px;}
.yca{bottom:613.479046px;}
.y1c{bottom:618.152225px;}
.y17c{bottom:622.741926px;}
.y21{bottom:625.040608px;}
.yc9{bottom:626.320428px;}
.y115{bottom:627.165000px;}
.y63{bottom:628.530017px;}
.y1b{bottom:631.077769px;}
.y17b{bottom:634.647006px;}
.y129{bottom:636.268585px;}
.yc8{bottom:639.160853px;}
.y20{bottom:639.412072px;}
.y1a{bottom:643.919150px;}
.y62{bottom:644.262994px;}
.y17a{bottom:646.637205px;}
.yc7{bottom:652.086396px;}
.y1f{bottom:653.783536px;}
.y19{bottom:656.759575px;}
.y179{bottom:658.543242px;}
.y61{bottom:659.909894px;}
.yc6{bottom:664.927777px;}
.y128{bottom:667.648463px;}
.y1e{bottom:668.070000px;}
.y18{bottom:669.600000px;}
.y178{bottom:670.533440px;}
.y60{bottom:675.641676px;}
.yc5{bottom:677.768202px;}
.y177{bottom:682.438521px;}
.y127{bottom:683.295363px;}
.yc4{bottom:690.609584px;}
.y5f{bottom:691.288577px;}
.y176{bottom:694.429676px;}
.y17{bottom:697.407000px;}
.yc3{bottom:703.450009px;}
.y175{bottom:706.419875px;}
.y5e{bottom:707.021554px;}
.y126{bottom:714.674046px;}
.yc2{bottom:716.290434px;}
.y174{bottom:718.324955px;}
.y5d{bottom:722.753336px;}
.yc1{bottom:729.131815px;}
.y173{bottom:730.315154px;}
.y5c{bottom:738.400236px;}
.yc0{bottom:741.972240px;}
.y172{bottom:742.221191px;}
.y16{bottom:746.901000px;}
.y125{bottom:747.414419px;}
.y15{bottom:751.068000px;}
.y5b{bottom:754.132018px;}
.y171{bottom:754.211390px;}
.ybf{bottom:754.898740px;}
.y14{bottom:759.741000px;}
.y124{bottom:763.061320px;}
.y13{bottom:763.993500px;}
.y170{bottom:766.201588px;}
.y5a{bottom:769.780114px;}
.y12{bottom:772.582500px;}
.y11{bottom:776.835000px;}
.y16f{bottom:778.106669px;}
.y123{bottom:778.793102px;}
.y10{bottom:785.424000px;}
.y59{bottom:785.511896px;}
.ybe{bottom:788.063302px;}
.yf{bottom:789.675000px;}
.y16e{bottom:790.097824px;}
.y122{bottom:794.441197px;}
.ye{bottom:798.264000px;}
.ybd{bottom:800.903727px;}
.y58{bottom:801.158796px;}
.y16d{bottom:802.002904px;}
.yd{bottom:802.516500px;}
.y121{bottom:810.172979px;}
.yc{bottom:811.105500px;}
.ybc{bottom:813.745109px;}
.y16c{bottom:813.993103px;}
.y1c3{bottom:813.999674px;}
.yb{bottom:815.358000px;}
.y57{bottom:816.890578px;}
.ya{bottom:823.947000px;}
.y120{bottom:825.819880px;}
.y16b{bottom:825.899140px;}
.y1c2{bottom:825.904755px;}
.ybb{bottom:826.585534px;}
.y9{bottom:828.198000px;}
.y56{bottom:832.537478px;}
.y16a{bottom:837.889339px;}
.y1c1{bottom:837.895910px;}
.yba{bottom:839.426915px;}
.y11f{bottom:841.551662px;}
.y55{bottom:848.270456px;}
.y7{bottom:848.608650px;}
.y169{bottom:849.879538px;}
.y1c0{bottom:849.886109px;}
.yb9{bottom:852.267340px;}
.y8{bottom:855.666000px;}
.y11e{bottom:857.199757px;}
.y168{bottom:861.784618px;}
.y1bf{bottom:861.791189px;}
.y54{bottom:863.917356px;}
.yb8{bottom:865.107765px;}
.y6{bottom:868.081500px;}
.y4{bottom:868.083190px;}
.y11d{bottom:872.931539px;}
.y167{bottom:873.775773px;}
.y1be{bottom:873.781388px;}
.y5{bottom:875.055000px;}
.yb7{bottom:878.034265px;}
.y53{bottom:879.649138px;}
.y166{bottom:885.680854px;}
.y1bd{bottom:885.687425px;}
.y2{bottom:887.470500px;}
.y11c{bottom:888.578440px;}
.yb6{bottom:890.874690px;}
.y3{bottom:894.529500px;}
.y52{bottom:895.296038px;}
.y165{bottom:897.671052px;}
.y1bc{bottom:897.677624px;}
.yb5{bottom:903.716071px;}
.y11b{bottom:904.310221px;}
.y164{bottom:909.661251px;}
.y1bb{bottom:909.667822px;}
.y51{bottom:911.029016px;}
.yb4{bottom:916.556496px;}
.y163{bottom:921.567288px;}
.y1ba{bottom:921.572903px;}
.y1{bottom:924.973500px;}
.y50{bottom:926.675916px;}
.yb3{bottom:929.396921px;}
.y162{bottom:933.557487px;}
.y1b9{bottom:933.564058px;}
.y11a{bottom:935.690099px;}
.yb2{bottom:942.238303px;}
.y4f{bottom:942.407698px;}
.y161{bottom:945.462567px;}
.y1b8{bottom:945.469138px;}
.yb1{bottom:955.078728px;}
.y160{bottom:957.452766px;}
.y1b7{bottom:957.459337px;}
.y4e{bottom:958.054598px;}
.yb0{bottom:967.920109px;}
.y119{bottom:968.344396px;}
.y15f{bottom:969.358803px;}
.y1b6{bottom:969.365374px;}
.y4d{bottom:973.787576px;}
.yaf{bottom:980.845652px;}
.y15e{bottom:981.349002px;}
.y1b5{bottom:981.355573px;}
.y118{bottom:983.991296px;}
.y4c{bottom:989.434476px;}
.y15d{bottom:993.339200px;}
.y1b4{bottom:993.345772px;}
.yae{bottom:993.686077px;}
.y117{bottom:999.724274px;}
.y3e{bottom:1003.719000px;}
.y4b{bottom:1005.166258px;}
.y15c{bottom:1005.245237px;}
.y1b3{bottom:1005.250852px;}
.yad{bottom:1006.527459px;}
.y15b{bottom:1017.235436px;}
.y1b2{bottom:1017.242007px;}
.yac{bottom:1019.367884px;}
.y4a{bottom:1020.813158px;}
.y15a{bottom:1029.140516px;}
.y1b1{bottom:1029.147088px;}
.y116{bottom:1031.102956px;}
.yab{bottom:1032.208309px;}
.y49{bottom:1036.546136px;}
.y159{bottom:1041.130715px;}
.y1b0{bottom:1041.137286px;}
.y3d{bottom:1045.474500px;}
.yaa{bottom:1051.937575px;}
.y48{bottom:1052.193036px;}
.y158{bottom:1053.121870px;}
.y1af{bottom:1053.127485px;}
.ya9{bottom:1064.778000px;}
.y157{bottom:1065.026951px;}
.y1ae{bottom:1065.033522px;}
.y47{bottom:1067.924818px;}
.y156{bottom:1077.017150px;}
.y1ad{bottom:1077.023721px;}
.y46{bottom:1083.571718px;}
.ya8{bottom:1084.507536px;}
.y3c{bottom:1087.312500px;}
.y155{bottom:1088.920317px;}
.y1ac{bottom:1088.928801px;}
.ya7{bottom:1098.879000px;}
.y45{bottom:1099.303500px;}
.y154{bottom:1100.911472px;}
.y1ab{bottom:1100.919000px;}
.y41{bottom:1127.504970px;}
.ya5{bottom:1128.629970px;}
.y1aa{bottom:1128.635161px;}
.y1c4{bottom:1128.640776px;}
.ya4{bottom:1128.642000px;}
.h5{height:26.343647px;}
.h6{height:33.622910px;}
.h10{height:33.623438px;}
.hd{height:34.526473px;}
.hf{height:35.306972px;}
.h8{height:37.657659px;}
.he{height:37.826367px;}
.h7{height:41.188416px;}
.h4{height:41.577047px;}
.ha{height:42.029824px;}
.h9{height:42.365531px;}
.hb{height:47.073403px;}
.h3{height:62.372363px;}
.h2{height:79.436109px;}
.hc{height:82.377422px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.x13{left:61.398300px;}
.x12{left:62.758950px;}
.x17{left:63.949500px;}
.x22{left:65.395200px;}
.x15{left:74.323389px;}
.x26{left:78.576300px;}
.x27{left:89.971254px;}
.x2f{left:127.897658px;}
.x1d{left:133.510946px;}
.x11{left:165.741000px;}
.x2{left:187.936500px;}
.xa{left:206.646000px;}
.x3{left:223.908000px;}
.x25{left:241.849189px;}
.x23{left:281.647238px;}
.x1a{left:290.580000px;}
.x14{left:302.995500px;}
.x19{left:329.782500px;}
.x4{left:333.949500px;}
.x1b{left:337.335000px;}
.x18{left:342.624000px;}
.x5{left:350.872500px;}
.xb{left:365.244000px;}
.xc{left:382.167000px;}
.x21{left:444.315030px;}
.x16{left:459.888932px;}
.x6{left:469.162500px;}
.x7{left:475.624500px;}
.x1e{left:477.831221px;}
.x2d{left:489.821477px;}
.xd{left:516.018000px;}
.xe{left:520.356000px;}
.x28{left:530.215354px;}
.x2b{left:553.600880px;}
.x1c{left:609.689985px;}
.x8{left:616.279500px;}
.x30{left:619.335133px;}
.x9{left:633.883500px;}
.xf{left:646.299000px;}
.x10{left:650.635500px;}
.x24{left:685.920741px;}
.x2a{left:722.827467px;}
.x29{left:741.194841px;}
.x1f{left:753.024000px;}
.x2c{left:755.397158px;}
.x20{left:758.125500px;}
.x2e{left:778.442211px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000005pt;}
.lsb{letter-spacing:0.000011pt;}
.ls6{letter-spacing:0.000112pt;}
.lsc{letter-spacing:0.870523pt;}
.lsa{letter-spacing:1.130692pt;}
.ls4{letter-spacing:1.314040pt;}
.ls1{letter-spacing:1.437935pt;}
.ls3{letter-spacing:1.467970pt;}
.ls2{letter-spacing:1.554322pt;}
.ls0{letter-spacing:1.580602pt;}
.ls8{letter-spacing:3.710832pt;}
.ls5{letter-spacing:16.922845pt;}
.wsa{word-spacing:-34.005333pt;}
.ws4{word-spacing:-27.417144pt;}
.ws7{word-spacing:-21.538128pt;}
.ws9{word-spacing:-18.906965pt;}
.ws3{word-spacing:-12.454610pt;}
.ws6{word-spacing:-11.944523pt;}
.ws0{word-spacing:-11.000392pt;}
.ws2{word-spacing:-10.626800pt;}
.ws15{word-spacing:-9.963406pt;}
.ws14{word-spacing:-8.501200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:1.687090pt;}
.ws1{word-spacing:14.384436pt;}
.ws11{word-spacing:87.198509pt;}
.wsf{word-spacing:128.480336pt;}
.wsb{word-spacing:147.227182pt;}
.ws13{word-spacing:230.375719pt;}
.ws10{word-spacing:706.840775pt;}
.wse{word-spacing:785.708108pt;}
.wsc{word-spacing:786.252185pt;}
.wsd{word-spacing:791.216885pt;}
.ws12{word-spacing:1524.615409pt;}
._3{margin-left:-15.416526pt;}
._e{margin-left:-11.160581pt;}
._f{margin-left:-4.445437pt;}
._6{margin-left:-2.746781pt;}
._5{margin-left:-1.775078pt;}
._2{width:1.137466pt;}
._1{width:2.073016pt;}
._0{width:3.177669pt;}
._4{width:4.881466pt;}
._8{width:5.876122pt;}
._c{width:6.798884pt;}
._9{width:7.842578pt;}
._7{width:9.101102pt;}
._10{width:10.009202pt;}
._a{width:10.958356pt;}
._b{width:13.551295pt;}
._14{width:14.894523pt;}
._13{width:15.910445pt;}
._12{width:16.807347pt;}
._d{width:18.060658pt;}
._34{width:19.078267pt;}
._11{width:26.839046pt;}
._17{width:60.232702pt;}
._26{width:61.343852pt;}
._15{width:66.407974pt;}
._18{width:69.230372pt;}
._1a{width:70.532756pt;}
._1b{width:80.326139pt;}
._2a{width:85.052806pt;}
._33{width:87.422940pt;}
._1d{width:91.037651pt;}
._27{width:92.057795pt;}
._31{width:95.356260pt;}
._25{width:101.636947pt;}
._22{width:103.371192pt;}
._1c{width:111.066478pt;}
._1f{width:113.501221pt;}
._2c{width:117.357366pt;}
._1e{width:125.790556pt;}
._2b{width:128.194696pt;}
._19{width:130.551228pt;}
._2f{width:146.941542pt;}
._28{width:154.184564pt;}
._20{width:155.544756pt;}
._32{width:158.707203pt;}
._2d{width:162.583750pt;}
._29{width:165.916220pt;}
._2e{width:188.461403pt;}
._23{width:193.154065pt;}
._30{width:206.143899pt;}
._16{width:274.867599pt;}
._24{width:677.494633pt;}
._21{width:795.671514pt;}
.fs3{font-size:23.788267pt;}
.fs9{font-size:31.882133pt;}
.fs4{font-size:34.004800pt;}
.fsa{font-size:34.005333pt;}
.fs5{font-size:37.193067pt;}
.fs2{font-size:37.544000pt;}
.fs6{font-size:38.256000pt;}
.fs7{font-size:42.507200pt;}
.fs1{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fs8{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:42.160000pt;}
.ya3{bottom:69.698441pt;}
.y153{bottom:69.699180pt;}
.yf1{bottom:73.777668pt;}
.y1a9{bottom:75.292969pt;}
.y152{bottom:80.357134pt;}
.y114{bottom:81.264637pt;}
.y43{bottom:83.106613pt;}
.y44{bottom:83.106693pt;}
.ya2{bottom:83.683310pt;}
.y83{bottom:84.518093pt;}
.y1a8{bottom:85.950924pt;}
.yf0{bottom:87.761474pt;}
.y151{bottom:90.940278pt;}
.y42{bottom:93.893307pt;}
.y113{bottom:95.172992pt;}
.y1a7{bottom:96.533218pt;}
.ya1{bottom:97.591666pt;}
.y82{bottom:98.427512pt;}
.y150{bottom:101.598233pt;}
.yef{bottom:101.669830pt;}
.y40{bottom:106.582787pt;}
.y1a6{bottom:107.192022pt;}
.yea{bottom:107.491366pt;}
.y112{bottom:109.157861pt;}
.ya0{bottom:111.575472pt;}
.y14f{bottom:112.180526pt;}
.y81{bottom:112.411318pt;}
.yee{bottom:115.654699pt;}
.y1a5{bottom:117.849977pt;}
.y3f{bottom:119.281867pt;}
.ye9{bottom:120.266001pt;}
.y14e{bottom:122.838481pt;}
.y111{bottom:123.066217pt;}
.y9f{bottom:125.483828pt;}
.y80{bottom:126.319674pt;}
.y1a4{bottom:128.432270pt;}
.yed{bottom:129.563054pt;}
.ye8{bottom:132.965080pt;}
.y14d{bottom:133.497285pt;}
.y110{bottom:137.050023pt;}
.y1a3{bottom:139.090225pt;}
.y9e{bottom:139.468697pt;}
.y7f{bottom:140.303480pt;}
.y3b{bottom:141.958699pt;}
.yec{bottom:143.546861pt;}
.y14c{bottom:144.079579pt;}
.ye7{bottom:145.739715pt;}
.y1a2{bottom:149.673369pt;}
.y10f{bottom:151.033829pt;}
.y9d{bottom:153.377052pt;}
.y7e{bottom:154.288349pt;}
.y3a{bottom:154.733333pt;}
.y14b{bottom:154.737534pt;}
.yeb{bottom:157.530667pt;}
.ye6{bottom:158.514350pt;}
.y1a1{bottom:160.331323pt;}
.y10e{bottom:164.942185pt;}
.y14a{bottom:165.319827pt;}
.y9c{bottom:167.360859pt;}
.y7d{bottom:168.196705pt;}
.y1a0{bottom:170.913617pt;}
.ye5{bottom:171.288985pt;}
.y149{bottom:175.978632pt;}
.y10d{bottom:178.927054pt;}
.y9b{bottom:181.269214pt;}
.y19f{bottom:181.572421pt;}
.y7c{bottom:182.180511pt;}
.ye4{bottom:183.988064pt;}
.y148{bottom:186.636586pt;}
.yf3{bottom:187.389365pt;}
.y19e{bottom:192.230376pt;}
.y10c{bottom:192.835410pt;}
.y9a{bottom:195.254083pt;}
.y7b{bottom:196.088867pt;}
.y38{bottom:196.310042pt;}
.ye3{bottom:196.762699pt;}
.y147{bottom:197.218880pt;}
.yf2{bottom:200.164000pt;}
.y19d{bottom:202.812670pt;}
.y10b{bottom:206.819216pt;}
.y146{bottom:207.877685pt;}
.y99{bottom:209.162439pt;}
.ye2{bottom:209.537333pt;}
.y7a{bottom:210.073735pt;}
.y37{bottom:210.218398pt;}
.y19c{bottom:213.470624pt;}
.y145{bottom:218.459978pt;}
.y10a{bottom:220.727572pt;}
.y79{bottom:223.982091pt;}
.y19b{bottom:224.053768pt;}
.y36{bottom:224.202204pt;}
.ye1{bottom:228.367018pt;}
.y144{bottom:229.117933pt;}
.y19a{bottom:234.711722pt;}
.y109{bottom:234.712441pt;}
.y98{bottom:237.054601pt;}
.y78{bottom:237.965897pt;}
.y35{bottom:238.111623pt;}
.y143{bottom:239.700227pt;}
.ye0{bottom:239.781580pt;}
.y199{bottom:245.369677pt;}
.y108{bottom:248.620796pt;}
.y142{bottom:250.359031pt;}
.y77{bottom:251.874253pt;}
.y34{bottom:252.095429pt;}
.y198{bottom:255.951971pt;}
.y141{bottom:261.016986pt;}
.y107{bottom:262.604602pt;}
.y97{bottom:265.854292pt;}
.y76{bottom:265.859122pt;}
.y33{bottom:266.003785pt;}
.y197{bottom:266.610775pt;}
.ydf{bottom:269.261191pt;}
.y140{bottom:271.599279pt;}
.y106{bottom:276.512958pt;}
.y196{bottom:277.193069pt;}
.y96{bottom:279.762647pt;}
.y75{bottom:279.767478pt;}
.y32{bottom:279.987591pt;}
.yde{bottom:280.750563pt;}
.y13f{bottom:282.257234pt;}
.y195{bottom:287.851023pt;}
.y105{bottom:290.497827pt;}
.ydd{bottom:292.165124pt;}
.y13e{bottom:292.840378pt;}
.y95{bottom:293.747516pt;}
.y74{bottom:293.751284pt;}
.y31{bottom:293.897009pt;}
.y194{bottom:298.434167pt;}
.y13d{bottom:303.498332pt;}
.y104{bottom:304.406183pt;}
.y94{bottom:307.655872pt;}
.y73{bottom:307.659640pt;}
.y30{bottom:307.880816pt;}
.y193{bottom:309.092122pt;}
.y13c{bottom:314.156287pt;}
.y103{bottom:318.389989pt;}
.y192{bottom:319.750076pt;}
.y93{bottom:321.639678pt;}
.y72{bottom:321.643446pt;}
.ydc{bottom:321.644735pt;}
.y2f{bottom:321.789171pt;}
.y13b{bottom:324.738580pt;}
.y191{bottom:330.332370pt;}
.y102{bottom:332.298345pt;}
.ydb{bottom:333.059296pt;}
.y13a{bottom:335.397385pt;}
.y92{bottom:335.548034pt;}
.y71{bottom:335.552865pt;}
.y39{bottom:335.772977pt;}
.y190{bottom:340.991174pt;}
.yda{bottom:344.473008pt;}
.y139{bottom:345.979679pt;}
.y101{bottom:346.283214pt;}
.y91{bottom:349.532903pt;}
.y70{bottom:349.536671pt;}
.y2e{bottom:349.681333pt;}
.y18f{bottom:351.573468pt;}
.yd9{bottom:355.886719pt;}
.y138{bottom:356.637633pt;}
.y100{bottom:360.191570pt;}
.y18e{bottom:362.231423pt;}
.y90{bottom:363.441259pt;}
.y6f{bottom:363.445026pt;}
.y137{bottom:367.220777pt;}
.yd8{bottom:367.301280pt;}
.y18d{bottom:372.889377pt;}
.yff{bottom:374.175376pt;}
.y8f{bottom:377.425065pt;}
.y6e{bottom:377.428833pt;}
.y136{bottom:377.878731pt;}
.yd7{bottom:378.714991pt;}
.y18c{bottom:383.472521pt;}
.yfe{bottom:388.083732pt;}
.y135{bottom:388.536686pt;}
.yd6{bottom:390.205213pt;}
.y8e{bottom:391.333421pt;}
.y6d{bottom:391.338251pt;}
.y18b{bottom:394.130475pt;}
.y134{bottom:399.118980pt;}
.yd5{bottom:401.618924pt;}
.yfd{bottom:402.067538pt;}
.y2d{bottom:402.598256pt;}
.y18a{bottom:404.712769pt;}
.y8d{bottom:405.318289pt;}
.y133{bottom:409.777784pt;}
.yd4{bottom:413.032635pt;}
.y189{bottom:415.370724pt;}
.y2c{bottom:415.372891pt;}
.yfc{bottom:415.976956pt;}
.y8c{bottom:419.226645pt;}
.y6c{bottom:419.230413pt;}
.y132{bottom:420.360078pt;}
.yd3{bottom:424.447196pt;}
.y188{bottom:426.029528pt;}
.y2b{bottom:428.071970pt;}
.yfb{bottom:429.960762pt;}
.y131{bottom:431.018032pt;}
.y8b{bottom:433.210451pt;}
.y6b{bottom:433.214219pt;}
.yd2{bottom:435.860908pt;}
.y187{bottom:436.611822pt;}
.y2a{bottom:440.846605pt;}
.y130{bottom:441.675987pt;}
.yfa{bottom:443.869118pt;}
.y8a{bottom:447.118807pt;}
.y186{bottom:447.269776pt;}
.yd1{bottom:447.275469pt;}
.y12f{bottom:452.259131pt;}
.y29{bottom:453.621240pt;}
.y185{bottom:457.852920pt;}
.yf9{bottom:457.852924pt;}
.yd0{bottom:458.689180pt;}
.y89{bottom:461.103676pt;}
.y6a{bottom:461.107444pt;}
.y12e{bottom:462.917085pt;}
.y28{bottom:466.320319pt;}
.y184{bottom:468.510875pt;}
.ycf{bottom:470.102891pt;}
.yf8{bottom:471.762343pt;}
.y12d{bottom:473.499379pt;}
.y88{bottom:475.012032pt;}
.y69{bottom:475.015800pt;}
.y183{bottom:479.093168pt;}
.y27{bottom:479.094954pt;}
.y12c{bottom:484.157333pt;}
.yf7{bottom:485.746149pt;}
.y87{bottom:488.995838pt;}
.y68{bottom:488.999606pt;}
.y182{bottom:489.750273pt;}
.y26{bottom:491.869588pt;}
.yf6{bottom:499.654505pt;}
.yce{bottom:499.659013pt;}
.y181{bottom:500.409077pt;}
.y86{bottom:502.904194pt;}
.y67{bottom:502.907962pt;}
.y25{bottom:504.644223pt;}
.y12b{bottom:508.652810pt;}
.y180{bottom:510.991371pt;}
.ycd{bottom:511.072724pt;}
.yf5{bottom:513.638311pt;}
.y85{bottom:516.888000pt;}
.y66{bottom:516.892830pt;}
.y24{bottom:517.343302pt;}
.y84{bottom:521.574667pt;}
.y17f{bottom:521.649326pt;}
.ycc{bottom:522.487285pt;}
.yf4{bottom:527.546667pt;}
.y23{bottom:530.117937pt;}
.y65{bottom:530.801186pt;}
.y17e{bottom:532.231619pt;}
.ycb{bottom:533.900997pt;}
.y12a{bottom:537.679914pt;}
.y1d{bottom:538.054934pt;}
.y17d{bottom:542.890424pt;}
.y22{bottom:542.892572pt;}
.y64{bottom:544.784992pt;}
.yca{bottom:545.314708pt;}
.y1c{bottom:549.468645pt;}
.y17c{bottom:553.548378pt;}
.y21{bottom:555.591651pt;}
.yc9{bottom:556.729269pt;}
.y115{bottom:557.480000pt;}
.y63{bottom:558.693348pt;}
.y1b{bottom:560.958017pt;}
.y17b{bottom:564.130672pt;}
.y129{bottom:565.572076pt;}
.yc8{bottom:568.142980pt;}
.y20{bottom:568.366286pt;}
.y1a{bottom:572.372578pt;}
.y62{bottom:572.678217pt;}
.y17a{bottom:574.788627pt;}
.yc7{bottom:579.632352pt;}
.y1f{bottom:581.140921pt;}
.y19{bottom:583.786289pt;}
.y179{bottom:585.371770pt;}
.y61{bottom:586.586573pt;}
.yc6{bottom:591.046913pt;}
.y128{bottom:593.465301pt;}
.y1e{bottom:593.840000pt;}
.y18{bottom:595.200000pt;}
.y178{bottom:596.029725pt;}
.y60{bottom:600.570379pt;}
.yc5{bottom:602.460624pt;}
.y177{bottom:606.612019pt;}
.y127{bottom:607.373656pt;}
.yc4{bottom:613.875185pt;}
.y5f{bottom:614.478735pt;}
.y176{bottom:617.270823pt;}
.y17{bottom:619.917333pt;}
.yc3{bottom:625.288897pt;}
.y175{bottom:627.928778pt;}
.y5e{bottom:628.463604pt;}
.y126{bottom:635.265818pt;}
.yc2{bottom:636.702608pt;}
.y174{bottom:638.511071pt;}
.y5d{bottom:642.447410pt;}
.yc1{bottom:648.117169pt;}
.y173{bottom:649.169026pt;}
.y5c{bottom:656.355766pt;}
.yc0{bottom:659.530880pt;}
.y172{bottom:659.752170pt;}
.y16{bottom:663.912000pt;}
.y125{bottom:664.368373pt;}
.y15{bottom:667.616000pt;}
.y5b{bottom:670.339572pt;}
.y171{bottom:670.410124pt;}
.ybf{bottom:671.021102pt;}
.y14{bottom:675.325333pt;}
.y124{bottom:678.276729pt;}
.y13{bottom:679.105333pt;}
.y170{bottom:681.068079pt;}
.y5a{bottom:684.248990pt;}
.y12{bottom:686.740000pt;}
.y11{bottom:690.520000pt;}
.y16f{bottom:691.650372pt;}
.y123{bottom:692.260535pt;}
.y10{bottom:698.154667pt;}
.y59{bottom:698.232796pt;}
.ybe{bottom:700.500713pt;}
.yf{bottom:701.933333pt;}
.y16e{bottom:702.309177pt;}
.y122{bottom:706.169953pt;}
.ye{bottom:709.568000pt;}
.ybd{bottom:711.914424pt;}
.y58{bottom:712.141152pt;}
.y16d{bottom:712.891471pt;}
.yd{bottom:713.348000pt;}
.y121{bottom:720.153759pt;}
.yc{bottom:720.982667pt;}
.ybc{bottom:723.328986pt;}
.y16c{bottom:723.549425pt;}
.y1c3{bottom:723.555266pt;}
.yb{bottom:724.762667pt;}
.y57{bottom:726.124958pt;}
.ya{bottom:732.397333pt;}
.y120{bottom:734.062115pt;}
.y16b{bottom:734.132569pt;}
.y1c2{bottom:734.137560pt;}
.ybb{bottom:734.742697pt;}
.y9{bottom:736.176000pt;}
.y56{bottom:740.033314pt;}
.y16a{bottom:744.790523pt;}
.y1c1{bottom:744.796365pt;}
.yba{bottom:746.157258pt;}
.y11f{bottom:748.045921pt;}
.y55{bottom:754.018183pt;}
.y7{bottom:754.318800pt;}
.y169{bottom:755.448478pt;}
.y1c0{bottom:755.454319pt;}
.yb9{bottom:757.570969pt;}
.y8{bottom:760.592000pt;}
.y11e{bottom:761.955340pt;}
.y168{bottom:766.030772pt;}
.y1bf{bottom:766.036613pt;}
.y54{bottom:767.926539pt;}
.yb8{bottom:768.984680pt;}
.y6{bottom:771.628000pt;}
.y4{bottom:771.629502pt;}
.y11d{bottom:775.939146pt;}
.y167{bottom:776.689576pt;}
.y1be{bottom:776.694567pt;}
.y5{bottom:777.826667pt;}
.yb7{bottom:780.474902pt;}
.y53{bottom:781.910345pt;}
.y166{bottom:787.271870pt;}
.y1bd{bottom:787.277711pt;}
.y2{bottom:788.862667pt;}
.y11c{bottom:789.847502pt;}
.yb6{bottom:791.888613pt;}
.y3{bottom:795.137333pt;}
.y52{bottom:795.818701pt;}
.y165{bottom:797.929824pt;}
.y1bc{bottom:797.935665pt;}
.yb5{bottom:803.303174pt;}
.y11b{bottom:803.831308pt;}
.y164{bottom:808.587779pt;}
.y1bb{bottom:808.593620pt;}
.y51{bottom:809.803570pt;}
.yb4{bottom:814.716886pt;}
.y163{bottom:819.170923pt;}
.y1ba{bottom:819.175914pt;}
.y1{bottom:822.198667pt;}
.y50{bottom:823.711925pt;}
.yb3{bottom:826.130597pt;}
.y162{bottom:829.828877pt;}
.y1b9{bottom:829.834718pt;}
.y11a{bottom:831.724533pt;}
.yb2{bottom:837.545158pt;}
.y4f{bottom:837.695732pt;}
.y161{bottom:840.411171pt;}
.y1b8{bottom:840.417012pt;}
.yb1{bottom:848.958869pt;}
.y160{bottom:851.069125pt;}
.y1b7{bottom:851.074966pt;}
.y4e{bottom:851.604087pt;}
.yb0{bottom:860.373430pt;}
.y119{bottom:860.750574pt;}
.y15f{bottom:861.652269pt;}
.y1b6{bottom:861.658110pt;}
.y4d{bottom:865.588956pt;}
.yaf{bottom:871.862802pt;}
.y15e{bottom:872.310224pt;}
.y1b5{bottom:872.316065pt;}
.y118{bottom:874.658930pt;}
.y4c{bottom:879.497312pt;}
.y15d{bottom:882.968178pt;}
.y1b4{bottom:882.974019pt;}
.yae{bottom:883.276513pt;}
.y117{bottom:888.643799pt;}
.y3e{bottom:892.194667pt;}
.y4b{bottom:893.481118pt;}
.y15c{bottom:893.551322pt;}
.y1b3{bottom:893.556313pt;}
.yad{bottom:894.691074pt;}
.y15b{bottom:904.209276pt;}
.y1b2{bottom:904.215118pt;}
.yac{bottom:906.104786pt;}
.y4a{bottom:907.389474pt;}
.y15a{bottom:914.791570pt;}
.y1b1{bottom:914.797411pt;}
.y116{bottom:916.535961pt;}
.yab{bottom:917.518497pt;}
.y49{bottom:921.374343pt;}
.y159{bottom:925.449525pt;}
.y1b0{bottom:925.455366pt;}
.y3d{bottom:929.310667pt;}
.yaa{bottom:935.055622pt;}
.y48{bottom:935.282699pt;}
.y158{bottom:936.108329pt;}
.y1af{bottom:936.113320pt;}
.ya9{bottom:946.469333pt;}
.y157{bottom:946.690623pt;}
.y1ae{bottom:946.696464pt;}
.y47{bottom:949.266505pt;}
.y156{bottom:957.348577pt;}
.y1ad{bottom:957.354418pt;}
.y46{bottom:963.174861pt;}
.ya8{bottom:964.006699pt;}
.y3c{bottom:966.500000pt;}
.y155{bottom:967.929171pt;}
.y1ac{bottom:967.936712pt;}
.ya7{bottom:976.781333pt;}
.y45{bottom:977.158667pt;}
.y154{bottom:978.587975pt;}
.y1ab{bottom:978.594667pt;}
.y41{bottom:1002.226640pt;}
.ya5{bottom:1003.226640pt;}
.y1aa{bottom:1003.231254pt;}
.y1c4{bottom:1003.236245pt;}
.ya4{bottom:1003.237333pt;}
.h5{height:23.416575pt;}
.h6{height:29.887031pt;}
.h10{height:29.887500pt;}
.hd{height:30.690198pt;}
.hf{height:31.383975pt;}
.h8{height:33.473475pt;}
.he{height:33.623437pt;}
.h7{height:36.611925pt;}
.h4{height:36.957375pt;}
.ha{height:37.359844pt;}
.h9{height:37.658250pt;}
.hb{height:41.843025pt;}
.h3{height:55.442100pt;}
.h2{height:70.609875pt;}
.hc{height:73.224375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.x13{left:54.576267pt;}
.x12{left:55.785733pt;}
.x17{left:56.844000pt;}
.x22{left:58.129067pt;}
.x15{left:66.065235pt;}
.x26{left:69.845600pt;}
.x27{left:79.974448pt;}
.x2f{left:113.686807pt;}
.x1d{left:118.676396pt;}
.x11{left:147.325333pt;}
.x2{left:167.054667pt;}
.xa{left:183.685333pt;}
.x3{left:199.029333pt;}
.x25{left:214.977057pt;}
.x23{left:250.353100pt;}
.x1a{left:258.293333pt;}
.x14{left:269.329333pt;}
.x19{left:293.140000pt;}
.x4{left:296.844000pt;}
.x1b{left:299.853333pt;}
.x18{left:304.554667pt;}
.x5{left:311.886667pt;}
.xb{left:324.661333pt;}
.xc{left:339.704000pt;}
.x21{left:394.946693pt;}
.x16{left:408.790162pt;}
.x6{left:417.033333pt;}
.x7{left:422.777333pt;}
.x1e{left:424.738863pt;}
.x2d{left:435.396868pt;}
.xd{left:458.682667pt;}
.xe{left:462.538667pt;}
.x28{left:471.302536pt;}
.x2b{left:492.089671pt;}
.x1c{left:541.946653pt;}
.x8{left:547.804000pt;}
.x30{left:550.520119pt;}
.x9{left:563.452000pt;}
.xf{left:574.488000pt;}
.x10{left:578.342667pt;}
.x24{left:609.707326pt;}
.x2a{left:642.513304pt;}
.x29{left:658.839859pt;}
.x1f{left:669.354667pt;}
.x2c{left:671.464141pt;}
.x20{left:673.889333pt;}
.x2e{left:691.948632pt;}
}




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