
    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_502fa3e5bc762cebdf3ad119.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_639f789d4f6661539a9220a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_36de5994a5dde501e69845da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_81395319c1b383ec47b6cf41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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_98ba32ef817e96bb08c3dd77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,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);}
.m6{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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:-64.770000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:77.724000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984234px;}
.ls0{letter-spacing:2.990234px;}
.ls3{letter-spacing:29.886360px;}
.ls2{letter-spacing:52.551900px;}
.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;}
}
.ws2{word-spacing:-85.747210px;}
.ws13{word-spacing:-49.620331px;}
.ws45{word-spacing:-41.344883px;}
.ws12{word-spacing:-10.530934px;}
.ws22{word-spacing:-9.459991px;}
.ws5{word-spacing:-8.389049px;}
.wsb{word-spacing:-4.640750px;}
.wsa{word-spacing:-4.462260px;}
.ws2b{word-spacing:-3.748298px;}
.ws1b{word-spacing:-0.892452px;}
.ws48{word-spacing:-0.743613px;}
.ws3a{word-spacing:-0.713962px;}
.ws34{word-spacing:-0.594890px;}
.ws41{word-spacing:-0.446168px;}
.ws18{word-spacing:-0.178490px;}
.ws42{word-spacing:-0.148723px;}
.wse{word-spacing:-0.008318px;}
.ws0{word-spacing:0.000000px;}
.ws46{word-spacing:0.148723px;}
.ws40{word-spacing:0.178490px;}
.ws14{word-spacing:0.290274px;}
.ws8{word-spacing:0.356981px;}
.ws26{word-spacing:0.535471px;}
.wsc{word-spacing:0.892452px;}
.ws4{word-spacing:2.320375px;}
.ws31{word-spacing:4.105279px;}
.ws49{word-spacing:4.759123px;}
.ws9{word-spacing:6.604145px;}
.ws43{word-spacing:6.692517px;}
.ws10{word-spacing:10.352443px;}
.ws20{word-spacing:11.244895px;}
.ws21{word-spacing:11.423386px;}
.ws27{word-spacing:11.958857px;}
.ws1{word-spacing:14.124545px;}
.ws2e{word-spacing:14.457722px;}
.ws3f{word-spacing:14.814703px;}
.ws15{word-spacing:16.064136px;}
.ws3e{word-spacing:23.560733px;}
.ws11{word-spacing:25.345637px;}
.ws2a{word-spacing:31.592801px;}
.ws29{word-spacing:32.128272px;}
.ws3{word-spacing:32.306762px;}
.wsf{word-spacing:35.341099px;}
.ws1c{word-spacing:38.196946px;}
.ws1d{word-spacing:38.375436px;}
.ws30{word-spacing:38.910907px;}
.ws25{word-spacing:39.624869px;}
.ws24{word-spacing:39.676270px;}
.ws47{word-spacing:40.452547px;}
.ws3c{word-spacing:46.942975px;}
.ws3b{word-spacing:47.121466px;}
.ws44{word-spacing:47.914720px;}
.ws1a{word-spacing:54.796553px;}
.ws38{word-spacing:55.510514px;}
.ws37{word-spacing:55.576270px;}
.ws2f{word-spacing:58.366361px;}
.ws2d{word-spacing:73.320242px;}
.ws39{word-spacing:75.858420px;}
.ws16{word-spacing:76.929362px;}
.ws17{word-spacing:77.107853px;}
.ws19{word-spacing:78.357286px;}
.ws2c{word-spacing:87.281806px;}
.ws32{word-spacing:87.460296px;}
.ws36{word-spacing:91.922556px;}
.ws35{word-spacing:91.943355px;}
.ws3d{word-spacing:92.636518px;}
.ws23{word-spacing:96.563306px;}
.ws6{word-spacing:100.205421px;}
.ws7{word-spacing:100.311605px;}
.ws1e{word-spacing:114.590837px;}
.ws28{word-spacing:117.982154px;}
.ws1f{word-spacing:143.684772px;}
.ws33{word-spacing:146.640484px;}
.wsd{word-spacing:171.350784px;}
._9{margin-left:-38.568139px;}
._2{margin-left:-25.701192px;}
._23{margin-left:-18.997807px;}
._8{margin-left:-17.142121px;}
._7{margin-left:-14.769301px;}
._17{margin-left:-13.565389px;}
._6{margin-left:-10.965264px;}
._0{margin-left:-6.168864px;}
._5{margin-left:-4.283532px;}
._10{margin-left:-3.212946px;}
._4{margin-left:-2.141766px;}
._14{margin-left:-1.121394px;}
._a{width:1.863204px;}
._1{width:3.084432px;}
._12{width:4.205529px;}
._3{width:5.354415px;}
._1a{width:7.318106px;}
._f{width:29.807897px;}
._21{width:42.659324px;}
._d{width:46.229014px;}
._27{width:50.536261px;}
._26{width:54.818443px;}
._19{width:56.879225px;}
._c{width:59.753906px;}
._e{width:60.865226px;}
._1d{width:62.142276px;}
._16{width:65.684467px;}
._15{width:83.068322px;}
._20{width:85.683027px;}
._b{width:89.780315px;}
._2b{width:92.839134px;}
._1b{width:94.340923px;}
._24{width:97.098778px;}
._2a{width:109.508315px;}
._18{width:112.815272px;}
._13{width:133.242820px;}
._25{width:146.362128px;}
._28{width:156.576753px;}
._1f{width:172.395854px;}
._22{width:197.410264px;}
._1c{width:216.871039px;}
._1e{width:218.763000px;}
._29{width:247.247691px;}
._11{width:404.637737px;}
.fc2{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(77,77,79);}
.fc0{color:rgb(0,76,151);}
.fs3{font-size:123.975000px;}
.fs2{font-size:148.722600px;}
.fs4{font-size:178.490400px;}
.fs1{font-size:214.176600px;}
.fs0{font-size:308.443200px;}
.y0{bottom:0.000000px;}
.yc7{bottom:58.642500px;}
.y83{bottom:65.833500px;}
.y3e{bottom:67.401000px;}
.yc6{bottom:98.991000px;}
.yc8{bottom:98.992500px;}
.y82{bottom:114.252000px;}
.y3d{bottom:127.116000px;}
.y3c{bottom:186.832500px;}
.y81{bottom:196.038000px;}
.y80{bottom:244.456500px;}
.y3b{bottom:246.549000px;}
.y7f{bottom:292.875000px;}
.y3a{bottom:306.265500px;}
.y7e{bottom:341.293500px;}
.yc5{bottom:359.026500px;}
.y7d{bottom:389.712000px;}
.y39{bottom:402.666000px;}
.y7c{bottom:438.130500px;}
.yc2{bottom:485.554500px;}
.y7b{bottom:486.549000px;}
.yc0{bottom:488.491500px;}
.yc4{bottom:489.253500px;}
.y38{bottom:525.315000px;}
.yc1{bottom:533.973000px;}
.y7a{bottom:534.967500px;}
.ybf{bottom:536.910000px;}
.yc3{bottom:537.672000px;}
.y79{bottom:583.386000px;}
.y37{bottom:585.030000px;}
.ybe{bottom:653.851500px;}
.y36{bottom:664.779000px;}
.y78{bottom:665.187000px;}
.ybd{bottom:702.270000px;}
.y35{bottom:724.495500px;}
.y77{bottom:724.903500px;}
.ybc{bottom:750.688500px;}
.y76{bottom:784.620000px;}
.y34{bottom:804.244500px;}
.y75{bottom:844.335000px;}
.y33{bottom:863.959500px;}
.ybb{bottom:873.484500px;}
.y74{bottom:912.540000px;}
.yba{bottom:921.903000px;}
.y32{bottom:943.708500px;}
.y73{bottom:972.256500px;}
.y31{bottom:1003.425000px;}
.yb9{bottom:1035.516000px;}
.y30{bottom:1083.174000px;}
.yb8{bottom:1083.934500px;}
.y72{bottom:1100.176500px;}
.y2f{bottom:1142.889000px;}
.yb7{bottom:1149.807000px;}
.y71{bottom:1159.893000px;}
.yb6{bottom:1198.225500px;}
.y70{bottom:1219.609500px;}
.y2e{bottom:1222.638000px;}
.yb5{bottom:1268.439000px;}
.y6f{bottom:1279.326000px;}
.y2d{bottom:1282.354500px;}
.yb4{bottom:1316.857500px;}
.y6e{bottom:1339.041000px;}
.yb3{bottom:1365.276000px;}
.y2c{bottom:1391.491500px;}
.yb2{bottom:1413.694500px;}
.y6d{bottom:1458.474000px;}
.yb1{bottom:1462.113000px;}
.yb0{bottom:1510.531500px;}
.y2b{bottom:1510.638000px;}
.y6c{bottom:1518.190500px;}
.yaf{bottom:1558.950000px;}
.y2a{bottom:1570.354500px;}
.yae{bottom:1607.368500px;}
.y29{bottom:1650.102000px;}
.yad{bottom:1655.787000px;}
.y6b{bottom:1673.383500px;}
.yac{bottom:1704.205500px;}
.y28{bottom:1709.818500px;}
.y6a{bottom:1721.802000px;}
.yab{bottom:1752.624000px;}
.y69{bottom:1770.220500px;}
.y27{bottom:1789.567500px;}
.yaa{bottom:1801.042500px;}
.y68{bottom:1818.639000px;}
.y26{bottom:1849.284000px;}
.ya9{bottom:1849.461000px;}
.y67{bottom:1867.057500px;}
.ya8{bottom:1897.879500px;}
.y66{bottom:1915.476000px;}
.y25{bottom:1929.031500px;}
.ya7{bottom:1946.298000px;}
.y65{bottom:1963.894500px;}
.y24{bottom:1988.748000px;}
.ya6{bottom:1994.716500px;}
.y64{bottom:2012.313000px;}
.ya5{bottom:2043.135000px;}
.y63{bottom:2060.731500px;}
.y23{bottom:2068.497000px;}
.ya4{bottom:2091.553500px;}
.y62{bottom:2109.150000px;}
.y22{bottom:2128.213500px;}
.ya3{bottom:2139.972000px;}
.y61{bottom:2157.568500px;}
.ya2{bottom:2188.390500px;}
.y21{bottom:2205.384000px;}
.y60{bottom:2205.987000px;}
.ya1{bottom:2236.809000px;}
.y5f{bottom:2254.405500px;}
.y20{bottom:2265.100500px;}
.ya0{bottom:2285.227500px;}
.y5e{bottom:2302.824000px;}
.y9f{bottom:2333.646000px;}
.y1f{bottom:2346.502500px;}
.y5d{bottom:2351.242500px;}
.y9e{bottom:2382.064500px;}
.y5c{bottom:2399.661000px;}
.y9d{bottom:2430.483000px;}
.y5b{bottom:2448.079500px;}
.y1e{bottom:2465.647500px;}
.y9c{bottom:2478.901500px;}
.y5a{bottom:2496.498000px;}
.y1d{bottom:2525.364000px;}
.y9b{bottom:2527.320000px;}
.y9a{bottom:2575.738500px;}
.y59{bottom:2578.299000px;}
.y1c{bottom:2605.113000px;}
.y99{bottom:2624.157000px;}
.y58{bottom:2638.015500px;}
.y1b{bottom:2664.829500px;}
.y98{bottom:2672.575500px;}
.y57{bottom:2707.182000px;}
.y97{bottom:2720.994000px;}
.y1a{bottom:2744.577000px;}
.y96{bottom:2769.412500px;}
.y19{bottom:2804.293500px;}
.y95{bottom:2817.831000px;}
.y56{bottom:2861.601000px;}
.y18{bottom:2884.042500px;}
.y94{bottom:2905.066500px;}
.y55{bottom:2910.019500px;}
.y17{bottom:2943.759000px;}
.y54{bottom:2958.438000px;}
.y93{bottom:2964.783000px;}
.y53{bottom:3006.856500px;}
.y16{bottom:3020.929500px;}
.y92{bottom:3024.499500px;}
.y52{bottom:3055.275000px;}
.y51{bottom:3103.693500px;}
.y15{bottom:3117.063000px;}
.y91{bottom:3143.931000px;}
.y50{bottom:3152.112000px;}
.y4f{bottom:3200.530500px;}
.y90{bottom:3203.647500px;}
.y14{bottom:3226.705500px;}
.y4e{bottom:3248.949000px;}
.y8f{bottom:3280.818000px;}
.y13{bottom:3286.422000px;}
.y4d{bottom:3297.367500px;}
.y8e{bottom:3340.534500px;}
.y4c{bottom:3345.786000px;}
.y12{bottom:3363.592500px;}
.y4b{bottom:3394.204500px;}
.y8d{bottom:3417.027000px;}
.y11{bottom:3423.309000px;}
.y4a{bottom:3442.623000px;}
.y8c{bottom:3476.743500px;}
.y49{bottom:3491.041500px;}
.y10{bottom:3503.058000px;}
.y8b{bottom:3553.234500px;}
.y48{bottom:3572.842500px;}
.yf{bottom:3582.807000px;}
.y8a{bottom:3612.951000px;}
.y47{bottom:3642.010500px;}
.ye{bottom:3659.977500px;}
.y89{bottom:3689.443500px;}
.yd{bottom:3719.694000px;}
.y46{bottom:3723.906000px;}
.y88{bottom:3749.160000px;}
.y45{bottom:3783.622500px;}
.yc{bottom:3801.096000px;}
.y87{bottom:3808.876500px;}
.y44{bottom:3843.339000px;}
.y86{bottom:3886.047000px;}
.y43{bottom:3903.054000px;}
.yb{bottom:3911.275500px;}
.y42{bottom:3962.770500px;}
.ya{bottom:3970.990500px;}
.y85{bottom:3971.259000px;}
.y41{bottom:4022.487000px;}
.y9{bottom:4030.707000px;}
.y84{bottom:4030.975500px;}
.y8{bottom:4090.423500px;}
.y40{bottom:4090.692000px;}
.y7{bottom:4150.140000px;}
.y3f{bottom:4150.407000px;}
.y6{bottom:4231.542000px;}
.y5{bottom:4379.658000px;}
.y4{bottom:4455.567000px;}
.y3{bottom:4505.467500px;}
.y2{bottom:4703.601000px;}
.y1{bottom:4788.985500px;}
.hc{height:75.997249px;}
.ha{height:91.208594px;}
.h5{height:91.865475px;}
.hb{height:108.418775px;}
.h9{height:110.203447px;}
.h6{height:132.261386px;}
.h8{height:141.286470px;}
.h3{height:158.704861px;}
.h7{height:169.565880px;}
.h4{height:187.927447px;}
.h2{height:228.556411px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x21{left:104.376000px;}
.x8{left:106.527000px;}
.x7{left:108.000000px;}
.x11{left:152.622000px;}
.x19{left:174.621000px;}
.x12{left:175.713000px;}
.x1a{left:262.002000px;}
.x9{left:279.189000px;}
.x1b{left:286.812000px;}
.x22{left:297.219000px;}
.xa{left:366.570000px;}
.xb{left:389.781000px;}
.x23{left:397.005000px;}
.x24{left:421.813500px;}
.xc{left:477.163500px;}
.xd{left:500.374500px;}
.x1c{left:505.266000px;}
.x25{left:509.196000px;}
.x1d{left:530.076000px;}
.xe{left:565.911000px;}
.xf{left:589.122000px;}
.x1e{left:595.612500px;}
.x2d{left:601.324500px;}
.x2c{left:603.006000px;}
.x1f{left:620.421000px;}
.x28{left:634.497000px;}
.x2e{left:651.514500px;}
.x10{left:676.504500px;}
.x20{left:685.957500px;}
.x29{left:687.220500px;}
.x13{left:707.785500px;}
.x2f{left:734.407500px;}
.x1{left:743.797500px;}
.x30{left:787.089000px;}
.x14{left:795.168000px;}
.x2a{left:799.413000px;}
.x3{left:811.183500px;}
.x2b{left:862.195500px;}
.x4{left:876.924000px;}
.x15{left:962.041500px;}
.x16{left:1049.424000px;}
.x2{left:1058.946000px;}
.x26{left:1068.370500px;}
.x17{left:1071.154500px;}
.x27{left:1133.907000px;}
.x18{left:1136.691000px;}
.x4b{left:1265.835000px;}
.x4a{left:1267.215000px;}
.x32{left:1268.955000px;}
.x31{left:1270.204500px;}
.x5{left:1281.703500px;}
.x55{left:1288.531500px;}
.x37{left:1314.828000px;}
.x56{left:1325.185500px;}
.x43{left:1333.548000px;}
.x3a{left:1337.917500px;}
.x57{left:1361.838000px;}
.x4d{left:1371.186000px;}
.x3b{left:1374.570000px;}
.x58{left:1398.492000px;}
.x3c{left:1411.224000px;}
.x49{left:1423.123500px;}
.x59{left:1435.144500px;}
.x53{left:1436.332500px;}
.x3d{left:1447.878000px;}
.x4e{left:1458.567000px;}
.x6{left:1463.224500px;}
.x3e{left:1484.530500px;}
.x5a{left:1490.125500px;}
.x3f{left:1521.184500px;}
.x54{left:1523.715000px;}
.x40{left:1557.838500px;}
.x33{left:1567.359000px;}
.x44{left:1594.491000px;}
.x34{left:1654.741500px;}
.x4c{left:1659.054000px;}
.x45{left:1669.309500px;}
.x46{left:1904.115000px;}
.x38{left:1972.666500px;}
.x51{left:1985.281500px;}
.x41{left:1999.975500px;}
.x39{left:2060.049000px;}
.x42{left:2087.358000px;}
.x35{left:2130.576000px;}
.x47{left:2145.481500px;}
.x4f{left:2205.301500px;}
.x36{left:2217.957000px;}
.x52{left:2233.005000px;}
.x50{left:2292.684000px;}
.x48{left:2298.400500px;}
.x67{left:2428.041000px;}
.x5c{left:2430.937500px;}
.x5b{left:2432.409000px;}
.x75{left:2445.399000px;}
.x68{left:2469.063000px;}
.x5d{left:2477.032500px;}
.x74{left:2478.694500px;}
.x6f{left:2490.075000px;}
.x63{left:2498.515500px;}
.x5e{left:2500.122000px;}
.x69{left:2505.717000px;}
.x6a{left:2542.369500px;}
.x6b{left:2579.023500px;}
.x72{left:2596.827000px;}
.x6c{left:2615.676000px;}
.x70{left:2630.353500px;}
.x73{left:2644.347000px;}
.x6d{left:2652.330000px;}
.x71{left:2679.808500px;}
.x64{left:2752.593000px;}
.x77{left:2798.302500px;}
.x76{left:2829.477000px;}
.x65{left:2896.071000px;}
.x5f{left:2918.587500px;}
.x60{left:2974.683000px;}
.x61{left:3031.711500px;}
.x7a{left:3091.042500px;}
.x6e{left:3092.170500px;}
.x7b{left:3130.216500px;}
.x66{left:3151.576500px;}
.x62{left:3162.783000px;}
.x79{left:3213.297000px;}
.x78{left:3227.295000px;}
@media print{
.v2{vertical-align:-57.573333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:69.088000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.652653pt;}
.ls0{letter-spacing:2.657986pt;}
.ls3{letter-spacing:26.565653pt;}
.ls2{letter-spacing:46.712800pt;}
.ws2{word-spacing:-76.219742pt;}
.ws13{word-spacing:-44.106961pt;}
.ws45{word-spacing:-36.751007pt;}
.ws12{word-spacing:-9.360830pt;}
.ws22{word-spacing:-8.408881pt;}
.ws5{word-spacing:-7.456932pt;}
.wsb{word-spacing:-4.125111pt;}
.wsa{word-spacing:-3.966453pt;}
.ws2b{word-spacing:-3.331821pt;}
.ws1b{word-spacing:-0.793291pt;}
.ws48{word-spacing:-0.660989pt;}
.ws3a{word-spacing:-0.634633pt;}
.ws34{word-spacing:-0.528791pt;}
.ws41{word-spacing:-0.396594pt;}
.ws18{word-spacing:-0.158658pt;}
.ws42{word-spacing:-0.132198pt;}
.wse{word-spacing:-0.007394pt;}
.ws0{word-spacing:0.000000pt;}
.ws46{word-spacing:0.132198pt;}
.ws40{word-spacing:0.158658pt;}
.ws14{word-spacing:0.258021pt;}
.ws8{word-spacing:0.317316pt;}
.ws26{word-spacing:0.475974pt;}
.wsc{word-spacing:0.793291pt;}
.ws4{word-spacing:2.062556pt;}
.ws31{word-spacing:3.649137pt;}
.ws49{word-spacing:4.230332pt;}
.ws9{word-spacing:5.870351pt;}
.ws43{word-spacing:5.948904pt;}
.ws10{word-spacing:9.202172pt;}
.ws20{word-spacing:9.995462pt;}
.ws21{word-spacing:10.154121pt;}
.ws27{word-spacing:10.630095pt;}
.ws1{word-spacing:12.555151pt;}
.ws2e{word-spacing:12.851309pt;}
.ws3f{word-spacing:13.168625pt;}
.ws15{word-spacing:14.279232pt;}
.ws3e{word-spacing:20.942874pt;}
.ws11{word-spacing:22.529455pt;}
.ws2a{word-spacing:28.082490pt;}
.ws29{word-spacing:28.558464pt;}
.ws3{word-spacing:28.717122pt;}
.wsf{word-spacing:31.414310pt;}
.ws1c{word-spacing:33.952841pt;}
.ws1d{word-spacing:34.111499pt;}
.ws30{word-spacing:34.587473pt;}
.ws25{word-spacing:35.222106pt;}
.ws24{word-spacing:35.267795pt;}
.ws47{word-spacing:35.957820pt;}
.ws3c{word-spacing:41.727089pt;}
.ws3b{word-spacing:41.885747pt;}
.ws44{word-spacing:42.590862pt;}
.ws1a{word-spacing:48.708047pt;}
.ws38{word-spacing:49.342679pt;}
.ws37{word-spacing:49.401129pt;}
.ws2f{word-spacing:51.881210pt;}
.ws2d{word-spacing:65.173548pt;}
.ws39{word-spacing:67.429707pt;}
.ws16{word-spacing:68.381655pt;}
.ws17{word-spacing:68.540314pt;}
.ws19{word-spacing:69.650921pt;}
.ws2c{word-spacing:77.583827pt;}
.ws32{word-spacing:77.742485pt;}
.ws36{word-spacing:81.708939pt;}
.ws35{word-spacing:81.727427pt;}
.ws3d{word-spacing:82.343571pt;}
.ws23{word-spacing:85.834050pt;}
.ws6{word-spacing:89.071485pt;}
.ws7{word-spacing:89.165871pt;}
.ws1e{word-spacing:101.858522pt;}
.ws28{word-spacing:104.873026pt;}
.ws1f{word-spacing:127.719797pt;}
.ws33{word-spacing:130.347097pt;}
.wsd{word-spacing:152.311808pt;}
._9{margin-left:-34.282790pt;}
._2{margin-left:-22.845504pt;}
._23{margin-left:-16.886940pt;}
._8{margin-left:-15.237441pt;}
._7{margin-left:-13.128267pt;}
._17{margin-left:-12.058124pt;}
._6{margin-left:-9.746901pt;}
._0{margin-left:-5.483435pt;}
._5{margin-left:-3.807584pt;}
._10{margin-left:-2.855952pt;}
._4{margin-left:-1.903792pt;}
._14{margin-left:-0.996795pt;}
._a{width:1.656181pt;}
._1{width:2.741717pt;}
._12{width:3.738248pt;}
._3{width:4.759480pt;}
._1a{width:6.504983pt;}
._f{width:26.495908pt;}
._21{width:37.919399pt;}
._d{width:41.092457pt;}
._27{width:44.921121pt;}
._26{width:48.727505pt;}
._19{width:50.559311pt;}
._c{width:53.114583pt;}
._e{width:54.102423pt;}
._1d{width:55.237579pt;}
._16{width:58.386193pt;}
._15{width:73.838508pt;}
._20{width:76.162691pt;}
._b{width:79.804724pt;}
._2b{width:82.523675pt;}
._1b{width:83.858598pt;}
._24{width:86.310025pt;}
._2a{width:97.340725pt;}
._18{width:100.280242pt;}
._13{width:118.438062pt;}
._25{width:130.099669pt;}
._28{width:139.179336pt;}
._1f{width:153.240759pt;}
._22{width:175.475790pt;}
._1c{width:192.774257pt;}
._1e{width:194.456000pt;}
._29{width:219.775725pt;}
._11{width:359.677988pt;}
.fs3{font-size:110.200000pt;}
.fs2{font-size:132.197867pt;}
.fs4{font-size:158.658133pt;}
.fs1{font-size:190.379200pt;}
.fs0{font-size:274.171733pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:52.126667pt;}
.y83{bottom:58.518667pt;}
.y3e{bottom:59.912000pt;}
.yc6{bottom:87.992000pt;}
.yc8{bottom:87.993333pt;}
.y82{bottom:101.557333pt;}
.y3d{bottom:112.992000pt;}
.y3c{bottom:166.073333pt;}
.y81{bottom:174.256000pt;}
.y80{bottom:217.294667pt;}
.y3b{bottom:219.154667pt;}
.y7f{bottom:260.333333pt;}
.y3a{bottom:272.236000pt;}
.y7e{bottom:303.372000pt;}
.yc5{bottom:319.134667pt;}
.y7d{bottom:346.410667pt;}
.y39{bottom:357.925333pt;}
.y7c{bottom:389.449333pt;}
.yc2{bottom:431.604000pt;}
.y7b{bottom:432.488000pt;}
.yc0{bottom:434.214667pt;}
.yc4{bottom:434.892000pt;}
.y38{bottom:466.946667pt;}
.yc1{bottom:474.642667pt;}
.y7a{bottom:475.526667pt;}
.ybf{bottom:477.253333pt;}
.yc3{bottom:477.930667pt;}
.y79{bottom:518.565333pt;}
.y37{bottom:520.026667pt;}
.ybe{bottom:581.201333pt;}
.y36{bottom:590.914667pt;}
.y78{bottom:591.277333pt;}
.ybd{bottom:624.240000pt;}
.y35{bottom:643.996000pt;}
.y77{bottom:644.358667pt;}
.ybc{bottom:667.278667pt;}
.y76{bottom:697.440000pt;}
.y34{bottom:714.884000pt;}
.y75{bottom:750.520000pt;}
.y33{bottom:767.964000pt;}
.ybb{bottom:776.430667pt;}
.y74{bottom:811.146667pt;}
.yba{bottom:819.469333pt;}
.y32{bottom:838.852000pt;}
.y73{bottom:864.228000pt;}
.y31{bottom:891.933333pt;}
.yb9{bottom:920.458667pt;}
.y30{bottom:962.821333pt;}
.yb8{bottom:963.497333pt;}
.y72{bottom:977.934667pt;}
.y2f{bottom:1015.901333pt;}
.yb7{bottom:1022.050667pt;}
.y71{bottom:1031.016000pt;}
.yb6{bottom:1065.089333pt;}
.y70{bottom:1084.097333pt;}
.y2e{bottom:1086.789333pt;}
.yb5{bottom:1127.501333pt;}
.y6f{bottom:1137.178667pt;}
.y2d{bottom:1139.870667pt;}
.yb4{bottom:1170.540000pt;}
.y6e{bottom:1190.258667pt;}
.yb3{bottom:1213.578667pt;}
.y2c{bottom:1236.881333pt;}
.yb2{bottom:1256.617333pt;}
.y6d{bottom:1296.421333pt;}
.yb1{bottom:1299.656000pt;}
.yb0{bottom:1342.694667pt;}
.y2b{bottom:1342.789333pt;}
.y6c{bottom:1349.502667pt;}
.yaf{bottom:1385.733333pt;}
.y2a{bottom:1395.870667pt;}
.yae{bottom:1428.772000pt;}
.y29{bottom:1466.757333pt;}
.yad{bottom:1471.810667pt;}
.y6b{bottom:1487.452000pt;}
.yac{bottom:1514.849333pt;}
.y28{bottom:1519.838667pt;}
.y6a{bottom:1530.490667pt;}
.yab{bottom:1557.888000pt;}
.y69{bottom:1573.529333pt;}
.y27{bottom:1590.726667pt;}
.yaa{bottom:1600.926667pt;}
.y68{bottom:1616.568000pt;}
.y26{bottom:1643.808000pt;}
.ya9{bottom:1643.965333pt;}
.y67{bottom:1659.606667pt;}
.ya8{bottom:1687.004000pt;}
.y66{bottom:1702.645333pt;}
.y25{bottom:1714.694667pt;}
.ya7{bottom:1730.042667pt;}
.y65{bottom:1745.684000pt;}
.y24{bottom:1767.776000pt;}
.ya6{bottom:1773.081333pt;}
.y64{bottom:1788.722667pt;}
.ya5{bottom:1816.120000pt;}
.y63{bottom:1831.761333pt;}
.y23{bottom:1838.664000pt;}
.ya4{bottom:1859.158667pt;}
.y62{bottom:1874.800000pt;}
.y22{bottom:1891.745333pt;}
.ya3{bottom:1902.197333pt;}
.y61{bottom:1917.838667pt;}
.ya2{bottom:1945.236000pt;}
.y21{bottom:1960.341333pt;}
.y60{bottom:1960.877333pt;}
.ya1{bottom:1988.274667pt;}
.y5f{bottom:2003.916000pt;}
.y20{bottom:2013.422667pt;}
.ya0{bottom:2031.313333pt;}
.y5e{bottom:2046.954667pt;}
.y9f{bottom:2074.352000pt;}
.y1f{bottom:2085.780000pt;}
.y5d{bottom:2089.993333pt;}
.y9e{bottom:2117.390667pt;}
.y5c{bottom:2133.032000pt;}
.y9d{bottom:2160.429333pt;}
.y5b{bottom:2176.070667pt;}
.y1e{bottom:2191.686667pt;}
.y9c{bottom:2203.468000pt;}
.y5a{bottom:2219.109333pt;}
.y1d{bottom:2244.768000pt;}
.y9b{bottom:2246.506667pt;}
.y9a{bottom:2289.545333pt;}
.y59{bottom:2291.821333pt;}
.y1c{bottom:2315.656000pt;}
.y99{bottom:2332.584000pt;}
.y58{bottom:2344.902667pt;}
.y1b{bottom:2368.737333pt;}
.y98{bottom:2375.622667pt;}
.y57{bottom:2406.384000pt;}
.y97{bottom:2418.661333pt;}
.y1a{bottom:2439.624000pt;}
.y96{bottom:2461.700000pt;}
.y19{bottom:2492.705333pt;}
.y95{bottom:2504.738667pt;}
.y56{bottom:2543.645333pt;}
.y18{bottom:2563.593333pt;}
.y94{bottom:2582.281333pt;}
.y55{bottom:2586.684000pt;}
.y17{bottom:2616.674667pt;}
.y54{bottom:2629.722667pt;}
.y93{bottom:2635.362667pt;}
.y53{bottom:2672.761333pt;}
.y16{bottom:2685.270667pt;}
.y92{bottom:2688.444000pt;}
.y52{bottom:2715.800000pt;}
.y51{bottom:2758.838667pt;}
.y15{bottom:2770.722667pt;}
.y91{bottom:2794.605333pt;}
.y50{bottom:2801.877333pt;}
.y4f{bottom:2844.916000pt;}
.y90{bottom:2847.686667pt;}
.y14{bottom:2868.182667pt;}
.y4e{bottom:2887.954667pt;}
.y8f{bottom:2916.282667pt;}
.y13{bottom:2921.264000pt;}
.y4d{bottom:2930.993333pt;}
.y8e{bottom:2969.364000pt;}
.y4c{bottom:2974.032000pt;}
.y12{bottom:2989.860000pt;}
.y4b{bottom:3017.070667pt;}
.y8d{bottom:3037.357333pt;}
.y11{bottom:3042.941333pt;}
.y4a{bottom:3060.109333pt;}
.y8c{bottom:3090.438667pt;}
.y49{bottom:3103.148000pt;}
.y10{bottom:3113.829333pt;}
.y8b{bottom:3158.430667pt;}
.y48{bottom:3175.860000pt;}
.yf{bottom:3184.717333pt;}
.y8a{bottom:3211.512000pt;}
.y47{bottom:3237.342667pt;}
.ye{bottom:3253.313333pt;}
.y89{bottom:3279.505333pt;}
.yd{bottom:3306.394667pt;}
.y46{bottom:3310.138667pt;}
.y88{bottom:3332.586667pt;}
.y45{bottom:3363.220000pt;}
.yc{bottom:3378.752000pt;}
.y87{bottom:3385.668000pt;}
.y44{bottom:3416.301333pt;}
.y86{bottom:3454.264000pt;}
.y43{bottom:3469.381333pt;}
.yb{bottom:3476.689333pt;}
.y42{bottom:3522.462667pt;}
.ya{bottom:3529.769333pt;}
.y85{bottom:3530.008000pt;}
.y41{bottom:3575.544000pt;}
.y9{bottom:3582.850667pt;}
.y84{bottom:3583.089333pt;}
.y8{bottom:3635.932000pt;}
.y40{bottom:3636.170667pt;}
.y7{bottom:3689.013333pt;}
.y3f{bottom:3689.250667pt;}
.y6{bottom:3761.370667pt;}
.y5{bottom:3893.029333pt;}
.y4{bottom:3960.504000pt;}
.y3{bottom:4004.860000pt;}
.y2{bottom:4180.978667pt;}
.y1{bottom:4256.876000pt;}
.hc{height:67.553110pt;}
.ha{height:81.074306pt;}
.h5{height:81.658200pt;}
.hb{height:96.372245pt;}
.h9{height:97.958619pt;}
.h6{height:117.565677pt;}
.h8{height:125.587973pt;}
.h3{height:141.070987pt;}
.h7{height:150.725227pt;}
.h4{height:167.046619pt;}
.h2{height:203.161254pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x21{left:92.778667pt;}
.x8{left:94.690667pt;}
.x7{left:96.000000pt;}
.x11{left:135.664000pt;}
.x19{left:155.218667pt;}
.x12{left:156.189333pt;}
.x1a{left:232.890667pt;}
.x9{left:248.168000pt;}
.x1b{left:254.944000pt;}
.x22{left:264.194667pt;}
.xa{left:325.840000pt;}
.xb{left:346.472000pt;}
.x23{left:352.893333pt;}
.x24{left:374.945333pt;}
.xc{left:424.145333pt;}
.xd{left:444.777333pt;}
.x1c{left:449.125333pt;}
.x25{left:452.618667pt;}
.x1d{left:471.178667pt;}
.xe{left:503.032000pt;}
.xf{left:523.664000pt;}
.x1e{left:529.433333pt;}
.x2d{left:534.510667pt;}
.x2c{left:536.005333pt;}
.x1f{left:551.485333pt;}
.x28{left:563.997333pt;}
.x2e{left:579.124000pt;}
.x10{left:601.337333pt;}
.x20{left:609.740000pt;}
.x29{left:610.862667pt;}
.x13{left:629.142667pt;}
.x2f{left:652.806667pt;}
.x1{left:661.153333pt;}
.x30{left:699.634667pt;}
.x14{left:706.816000pt;}
.x2a{left:710.589333pt;}
.x3{left:721.052000pt;}
.x2b{left:766.396000pt;}
.x4{left:779.488000pt;}
.x15{left:855.148000pt;}
.x16{left:932.821333pt;}
.x2{left:941.285333pt;}
.x26{left:949.662667pt;}
.x17{left:952.137333pt;}
.x27{left:1007.917333pt;}
.x18{left:1010.392000pt;}
.x4b{left:1125.186667pt;}
.x4a{left:1126.413333pt;}
.x32{left:1127.960000pt;}
.x31{left:1129.070667pt;}
.x5{left:1139.292000pt;}
.x55{left:1145.361333pt;}
.x37{left:1168.736000pt;}
.x56{left:1177.942667pt;}
.x43{left:1185.376000pt;}
.x3a{left:1189.260000pt;}
.x57{left:1210.522667pt;}
.x4d{left:1218.832000pt;}
.x3b{left:1221.840000pt;}
.x58{left:1243.104000pt;}
.x3c{left:1254.421333pt;}
.x49{left:1264.998667pt;}
.x59{left:1275.684000pt;}
.x53{left:1276.740000pt;}
.x3d{left:1287.002667pt;}
.x4e{left:1296.504000pt;}
.x6{left:1300.644000pt;}
.x3e{left:1319.582667pt;}
.x5a{left:1324.556000pt;}
.x3f{left:1352.164000pt;}
.x54{left:1354.413333pt;}
.x40{left:1384.745333pt;}
.x33{left:1393.208000pt;}
.x44{left:1417.325333pt;}
.x34{left:1470.881333pt;}
.x4c{left:1474.714667pt;}
.x45{left:1483.830667pt;}
.x46{left:1692.546667pt;}
.x38{left:1753.481333pt;}
.x51{left:1764.694667pt;}
.x41{left:1777.756000pt;}
.x39{left:1831.154667pt;}
.x42{left:1855.429333pt;}
.x35{left:1893.845333pt;}
.x47{left:1907.094667pt;}
.x4f{left:1960.268000pt;}
.x36{left:1971.517333pt;}
.x52{left:1984.893333pt;}
.x50{left:2037.941333pt;}
.x48{left:2043.022667pt;}
.x67{left:2158.258667pt;}
.x5c{left:2160.833333pt;}
.x5b{left:2162.141333pt;}
.x75{left:2173.688000pt;}
.x68{left:2194.722667pt;}
.x5d{left:2201.806667pt;}
.x74{left:2203.284000pt;}
.x6f{left:2213.400000pt;}
.x63{left:2220.902667pt;}
.x5e{left:2222.330667pt;}
.x69{left:2227.304000pt;}
.x6a{left:2259.884000pt;}
.x6b{left:2292.465333pt;}
.x72{left:2308.290667pt;}
.x6c{left:2325.045333pt;}
.x70{left:2338.092000pt;}
.x73{left:2350.530667pt;}
.x6d{left:2357.626667pt;}
.x71{left:2382.052000pt;}
.x64{left:2446.749333pt;}
.x77{left:2487.380000pt;}
.x76{left:2515.090667pt;}
.x65{left:2574.285333pt;}
.x5f{left:2594.300000pt;}
.x60{left:2644.162667pt;}
.x61{left:2694.854667pt;}
.x7a{left:2747.593333pt;}
.x6e{left:2748.596000pt;}
.x7b{left:2782.414667pt;}
.x66{left:2801.401333pt;}
.x62{left:2811.362667pt;}
.x79{left:2856.264000pt;}
.x78{left:2868.706667pt;}
}




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