
    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_11238aecd08695f379cfdd48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aed6950799bbe0f8299ad215.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_872ede45e732041272c93da0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_e785ad8dabf378680eaa20a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c8809b2048d3b404fd6dc721.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_724ef9c75fc12e42fe323843.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d5f1d80a7d0e895932b30ac1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_af1105356d11ff3873f938d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765625;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.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,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:-31.088400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.792000px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.029390px;}
.lsb{letter-spacing:0.145980px;}
.lsa{letter-spacing:0.224376px;}
.ls7{letter-spacing:0.317016px;}
.ls0{letter-spacing:0.395665px;}
.ls9{letter-spacing:0.468509px;}
.ls4{letter-spacing:0.608705px;}
.ls3{letter-spacing:0.857078px;}
.ls1{letter-spacing:0.892471px;}
.ls5{letter-spacing:0.892531px;}
.ls8{letter-spacing:14.705784px;}
.ls6{letter-spacing:54.851157px;}
.lsf{letter-spacing:70.864384px;}
.lse{letter-spacing:71.990788px;}
.lsd{letter-spacing:73.351448px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-22.471380px;}
.ws19{word-spacing:-19.768065px;}
.wsc{word-spacing:-18.393420px;}
.ws6{word-spacing:-18.247440px;}
.ws12{word-spacing:-15.544110px;}
.ws17{word-spacing:-15.541890px;}
.ws7{word-spacing:-14.868284px;}
.wsf{word-spacing:-14.023494px;}
.ws13{word-spacing:-14.021486px;}
.ws18{word-spacing:-12.671832px;}
.ws9{word-spacing:-3.069538px;}
.wse{word-spacing:0.000000px;}
.wsb{word-spacing:0.206884px;}
.wsa{word-spacing:1.210734px;}
.ws1{word-spacing:1.603094px;}
.ws5{word-spacing:1.611541px;}
.ws2{word-spacing:1.901132px;}
.ws4{word-spacing:2.283530px;}
.ws15{word-spacing:2.762812px;}
.ws1b{word-spacing:2.828065px;}
.ws14{word-spacing:3.807770px;}
.ws1c{word-spacing:6.903250px;}
.ws16{word-spacing:11.039380px;}
.ws10{word-spacing:11.618265px;}
.wsd{word-spacing:22.406519px;}
.ws8{word-spacing:29.964259px;}
.ws1a{word-spacing:41.498865px;}
.ws11{word-spacing:63.884480px;}
.ws0{word-spacing:1673.034668px;}
._3{margin-left:-1.322413px;}
._0{width:1.121880px;}
._1{width:2.799861px;}
._8{width:4.199890px;}
._5{width:5.318044px;}
._a{width:7.180029px;}
._b{width:8.245814px;}
._10{width:9.456040px;}
._7{width:10.826137px;}
._6{width:12.452863px;}
._19{width:13.463527px;}
._11{width:14.487111px;}
._d{width:15.625217px;}
._c{width:16.814921px;}
._4{width:18.218597px;}
._13{width:19.273327px;}
._e{width:20.357087px;}
._15{width:21.363304px;}
._f{width:23.330439px;}
._1a{width:24.805539px;}
._2{width:25.901439px;}
._9{width:27.020797px;}
._1b{width:28.284603px;}
._18{width:30.233533px;}
._17{width:31.948407px;}
._14{width:34.697460px;}
._12{width:36.613007px;}
._16{width:39.498202px;}
._1c{width:42.651520px;}
._1e{width:50.161031px;}
._20{width:51.306118px;}
._1d{width:53.642414px;}
._1f{width:55.571991px;}
._22{width:57.838712px;}
._23{width:75.087061px;}
._21{width:78.200826px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.280680px;}
.fs6{font-size:47.984004px;}
.fsf{font-size:50.687328px;}
.fs1{font-size:53.390652px;}
.fsb{font-size:56.085942px;}
.fs0{font-size:56.093976px;}
.fs5{font-size:59.473134px;}
.fsc{font-size:62.167560px;}
.fsa{font-size:62.176440px;}
.fsd{font-size:67.573440px;}
.fs8{font-size:67.583100px;}
.fs4{font-size:72.989760px;}
.fse{font-size:79.060920px;}
.fs9{font-size:79.072260px;}
.fs3{font-size:89.885520px;}
.fs2{font-size:112.863780px;}
.yd3{bottom:-21.457500px;}
.y0{bottom:0.000000px;}
.yc8{bottom:0.675750px;}
.y1{bottom:0.722581px;}
.yc5{bottom:2.534400px;}
.yce{bottom:2.703300px;}
.yd0{bottom:2.703450px;}
.yd6{bottom:2.872200px;}
.yca{bottom:3.379050px;}
.yd2{bottom:3.548100px;}
.y10d{bottom:3.885900px;}
.y109{bottom:3.886050px;}
.yd8{bottom:4.055100px;}
.y56{bottom:4.223850px;}
.y52{bottom:4.224000px;}
.ycc{bottom:4.561950px;}
.y4d{bottom:4.730850px;}
.y10b{bottom:6.927300px;}
.y59{bottom:10.306500px;}
.y54{bottom:13.178700px;}
.y50{bottom:13.347600px;}
.y4e{bottom:13.685550px;}
.yc7{bottom:15.206100px;}
.y5a{bottom:19.261200px;}
.y55{bottom:22.133400px;}
.y51{bottom:22.302450px;}
.y4c{bottom:22.471350px;}
.y58{bottom:28.215900px;}
.y63{bottom:35.495820px;}
.y61{bottom:71.177970px;}
.y86{bottom:73.168005px;}
.y85{bottom:91.074930px;}
.y3{bottom:105.936508px;}
.y84{bottom:117.259680px;}
.y2e{bottom:125.873534px;}
.y83{bottom:134.997630px;}
.y60{bottom:140.910779px;}
.y2d{bottom:143.614109px;}
.yc3{bottom:147.669089px;}
.y82{bottom:152.904630px;}
.ya6{bottom:155.776530px;}
.y5f{bottom:158.820269px;}
.y2c{bottom:161.354669px;}
.yc2{bottom:165.578669px;}
.y157{bottom:168.957718px;}
.y81{bottom:170.642730px;}
.y101{bottom:172.168019px;}
.ya5{bottom:173.683530px;}
.y2b{bottom:179.264219px;}
.y156{bottom:185.177669px;}
.y5e{bottom:186.022469px;}
.y80{bottom:188.549580px;}
.y100{bottom:189.908519px;}
.ya4{bottom:191.421480px;}
.yc1{bottom:191.767019px;}
.y2a{bottom:197.004719px;}
.y5d{bottom:203.932019px;}
.y7f{bottom:206.287680px;}
.yff{bottom:207.649019px;}
.ya3{bottom:209.328480px;}
.yc0{bottom:209.507668px;}
.y155{bottom:209.845619px;}
.y29{bottom:223.362119px;}
.y7e{bottom:224.025630px;}
.yfe{bottom:225.220769px;}
.y154{bottom:226.065419px;}
.ybf{bottom:227.417218px;}
.y12b{bottom:228.261869px;}
.y5c{bottom:231.303118px;}
.ya2{bottom:235.682130px;}
.y28{bottom:241.102768px;}
.yfd{bottom:244.481968px;}
.y12a{bottom:246.171419px;}
.y7d{bottom:250.379280px;}
.y153{bottom:250.733369px;}
.ybe{bottom:253.605569px;}
.y5b{bottom:258.505318px;}
.y27{bottom:258.843268px;}
.yfc{bottom:262.222468px;}
.ya1{bottom:263.387130px;}
.y129{bottom:263.912069px;}
.y152{bottom:266.953319px;}
.y7c{bottom:268.117380px;}
.ybd{bottom:271.515119px;}
.y26{bottom:276.752818px;}
.yfb{bottom:279.794069px;}
.ya0{bottom:281.125230px;}
.y128{bottom:281.821469px;}
.y151{bottom:283.004219px;}
.y57{bottom:283.219950px;}
.y25{bottom:294.493318px;}
.y7b{bottom:294.977730px;}
.ybc{bottom:297.703619px;}
.y9f{bottom:299.032230px;}
.y127{bottom:299.562118px;}
.yfa{bottom:307.503119px;}
.y150{bottom:307.672168px;}
.y24{bottom:312.402869px;}
.ybb{bottom:315.613169px;}
.y9e{bottom:316.770180px;}
.y126{bottom:317.302618px;}
.y14f{bottom:323.891969px;}
.yf9{bottom:325.243769px;}
.y7a{bottom:325.554780px;}
.y23{bottom:330.143519px;}
.y53{bottom:333.569400px;}
.y9d{bottom:334.677180px;}
.y125{bottom:335.212169px;}
.yba{bottom:341.801518px;}
.yf8{bottom:343.153168px;}
.y79{bottom:343.292730px;}
.y22{bottom:347.884019px;}
.y14e{bottom:348.559919px;}
.yb9{bottom:359.542168px;}
.y9c{bottom:360.861780px;}
.yf7{bottom:360.893819px;}
.y78{bottom:361.199730px;}
.y124{bottom:361.907518px;}
.y14d{bottom:364.779869px;}
.y21{bottom:365.793568px;}
.y4f{bottom:371.753850px;}
.yb8{bottom:377.451719px;}
.y9b{bottom:378.599880px;}
.yf6{bottom:378.634319px;}
.y14c{bottom:380.999819px;}
.y123{bottom:382.520369px;}
.y20{bottom:383.534068px;}
.y77{bottom:387.384480px;}
.yb7{bottom:395.192219px;}
.y9a{bottom:396.506880px;}
.yf5{bottom:396.543869px;}
.y1f{bottom:401.443619px;}
.y122{bottom:403.133218px;}
.y76{bottom:405.122430px;}
.y14b{bottom:405.498568px;}
.y4b{bottom:409.938300px;}
.yb6{bottom:413.101768px;}
.y1e{bottom:419.184268px;}
.y14a{bottom:421.718519px;}
.y99{bottom:422.691480px;}
.yf4{bottom:422.732368px;}
.y75{bottom:423.029430px;}
.y121{bottom:423.914968px;}
.yb5{bottom:430.842268px;}
.y1d{bottom:436.924769px;}
.y98{bottom:440.598480px;}
.yf3{bottom:440.641919px;}
.y120{bottom:444.527819px;}
.y149{bottom:446.386469px;}
.y74{bottom:449.214180px;}
.y1c{bottom:454.834319px;}
.yb4{bottom:457.030769px;}
.y97{bottom:458.336580px;}
.y148{bottom:462.606418px;}
.y11f{bottom:464.633819px;}
.y73{bottom:467.121030px;}
.yf2{bottom:467.506169px;}
.y4a{bottom:469.364668px;}
.yb3{bottom:474.940319px;}
.y96{bottom:476.074530px;}
.y147{bottom:478.826219px;}
.y1b{bottom:481.698569px;}
.y72{bottom:484.859130px;}
.yf1{bottom:490.146418px;}
.y11e{bottom:490.991219px;}
.yb2{bottom:501.297719px;}
.y95{bottom:502.428180px;}
.y49{bottom:502.480468px;}
.y146{bottom:503.325118px;}
.y11d{bottom:508.731868px;}
.y71{bottom:511.212780px;}
.y145{bottom:519.545068px;}
.y48{bottom:520.220968px;}
.y11c{bottom:526.303469px;}
.y70{bottom:528.950730px;}
.y1a{bottom:529.006769px;}
.y47{bottom:538.130518px;}
.y94{bottom:538.579980px;}
.y144{bottom:544.213018px;}
.yb1{bottom:546.916318px;}
.y19{bottom:553.843618px;}
.y6f{bottom:555.135480px;}
.y143{bottom:560.432968px;}
.y46{bottom:563.981068px;}
.yb0{bottom:564.656818px;}
.y11b{bottom:571.753169px;}
.y6e{bottom:573.042480px;}
.yaf{bottom:582.397468px;}
.y142{bottom:585.100768px;}
.y11a{bottom:589.324619px;}
.y45{bottom:590.676418px;}
.y18{bottom:591.521068px;}
.y6d{bottom:599.227080px;}
.yae{bottom:600.306868px;}
.y141{bottom:601.320718px;}
.y17{bottom:607.741018px;}
.y44{bottom:608.416918px;}
.y119{bottom:616.864768px;}
.y6c{bottom:617.134080px;}
.y140{bottom:617.371618px;}
.yf0{bottom:617.878619px;}
.yad{bottom:618.047518px;}
.y16{bottom:623.961118px;}
.y43{bottom:634.436368px;}
.y118{bottom:634.774319px;}
.yef{bottom:636.970768px;}
.y15{bottom:640.180918px;}
.y13f{bottom:642.039568px;}
.y6b{bottom:643.487730px;}
.yac{bottom:644.404918px;}
.y117{bottom:652.514818px;}
.yee{bottom:654.880318px;}
.y14{bottom:656.400868px;}
.y13e{bottom:658.259518px;}
.y42{bottom:660.962819px;}
.yab{bottom:662.145418px;}
.y116{bottom:670.086568px;}
.y13{bottom:672.451918px;}
.yed{bottom:672.620818px;}
.y41{bottom:678.703318px;}
.y6a{bottom:679.470480px;}
.yaa{bottom:679.886068px;}
.y13d{bottom:682.927318px;}
.y12{bottom:688.671868px;}
.yec{bottom:690.530368px;}
.y115{bottom:697.626568px;}
.ya9{bottom:697.795618px;}
.y13c{bottom:699.147268px;}
.y40{bottom:704.722768px;}
.y11{bottom:704.891818px;}
.yeb{bottom:708.271018px;}
.y13b{bottom:715.367218px;}
.ya8{bottom:715.536119px;}
.y10{bottom:721.111768px;}
.yea{bottom:726.011518px;}
.y3f{bottom:731.249218px;}
.y114{bottom:733.107718px;}
.yf{bottom:737.331718px;}
.ye9{bottom:743.921068px;}
.y165{bottom:745.861380px;}
.y3e{bottom:749.158768px;}
.y93{bottom:749.578080px;}
.ya7{bottom:750.172468px;}
.ye{bottom:753.551669px;}
.y113{bottom:760.647868px;}
.ye8{bottom:761.661568px;}
.y164{bottom:762.079080px;}
.y3d{bottom:766.899268px;}
.y92{bottom:767.316030px;}
.ycf{bottom:768.635550px;}
.y163{bottom:778.296780px;}
.yd{bottom:778.388368px;}
.y112{bottom:778.557418px;}
.ye7{bottom:779.571119px;}
.y3c{bottom:784.639919px;}
.y91{bottom:785.223030px;}
.y13a{bottom:788.019118px;}
.ycd{bottom:789.586350px;}
.y162{bottom:794.345430px;}
.y111{bottom:796.297918px;}
.ye6{bottom:797.142718px;}
.y90{bottom:802.960980px;}
.y139{bottom:805.928518px;}
.y161{bottom:810.562980px;}
.y3b{bottom:810.997168px;}
.y110{bottom:813.869518px;}
.yd4{bottom:814.930050px;}
.ye5{bottom:816.235019px;}
.y8f{bottom:820.699080px;}
.y138{bottom:823.669168px;}
.y160{bottom:826.780530px;}
.yc{bottom:829.413718px;}
.ye4{bottom:833.975518px;}
.y8e{bottom:838.605930px;}
.y3a{bottom:838.875268px;}
.y10f{bottom:839.091000px;}
.yc6{bottom:840.780600px;}
.y137{bottom:841.409668px;}
.y15f{bottom:842.998230px;}
.yb{bottom:848.843818px;}
.ye3{bottom:851.885068px;}
.y8d{bottom:856.344030px;}
.y39{bottom:856.615918px;}
.y10e{bottom:857.676300px;}
.y15e{bottom:859.215930px;}
.y136{bottom:859.319218px;}
.ye2{bottom:869.625568px;}
.y8c{bottom:874.250880px;}
.y38{bottom:874.525469px;}
.ya{bottom:876.046018px;}
.y10c{bottom:876.261750px;}
.y135{bottom:877.059719px;}
.yd1{bottom:878.289150px;}
.y69{bottom:881.515080px;}
.ye1{bottom:887.535119px;}
.y8b{bottom:891.988980px;}
.y15d{bottom:892.157880px;}
.y37{bottom:892.265968px;}
.y10a{bottom:894.847050px;}
.y134{bottom:894.969268px;}
.y9{bottom:895.476118px;}
.y68{bottom:899.253030px;}
.ye0{bottom:905.275619px;}
.y15c{bottom:908.375430px;}
.y8a{bottom:909.726930px;}
.y36{bottom:910.006468px;}
.y8{bottom:912.034019px;}
.y133{bottom:912.709918px;}
.y67{bottom:917.160030px;}
.y108{bottom:919.514850px;}
.yd5{bottom:922.218300px;}
.yc4{bottom:922.556100px;}
.ydf{bottom:922.847369px;}
.y15b{bottom:924.593130px;}
.yc9{bottom:926.780100px;}
.y35{bottom:927.916018px;}
.y132{bottom:930.450418px;}
.y89{bottom:936.080580px;}
.y107{bottom:938.100300px;}
.y7{bottom:939.236218px;}
.y15a{bottom:940.810830px;}
.yde{bottom:941.939518px;}
.y66{bottom:943.344780px;}
.y34{bottom:945.656518px;}
.y131{bottom:948.359969px;}
.y88{bottom:953.818680px;}
.y159{bottom:957.028380px;}
.ydd{bottom:959.849068px;}
.y65{bottom:961.251780px;}
.y33{bottom:963.566068px;}
.y130{bottom:966.100469px;}
.y6{bottom:967.958969px;}
.y106{bottom:977.251618px;}
.ydc{bottom:977.589569px;}
.y64{bottom:979.158630px;}
.y87{bottom:980.172330px;}
.y158{bottom:981.185880px;}
.y32{bottom:981.306718px;}
.y12f{bottom:984.010019px;}
.yd7{bottom:992.842500px;}
.ydb{bottom:995.161168px;}
.y105{bottom:996.175019px;}
.ycb{bottom:996.221700px;}
.y31{bottom:999.047218px;}
.y12e{bottom:1001.750518px;}
.y5{bottom:1008.677818px;}
.y62{bottom:1013.790030px;}
.y104{bottom:1013.915518px;}
.y30{bottom:1016.956768px;}
.y12d{bottom:1019.491168px;}
.yda{bottom:1022.870368px;}
.y103{bottom:1031.825068px;}
.y4{bottom:1040.441969px;}
.y2f{bottom:1043.990069px;}
.y12c{bottom:1046.524469px;}
.yd9{bottom:1049.227768px;}
.y102{bottom:1049.396669px;}
.y2{bottom:1084.370969px;}
.h18{height:14.023500px;}
.h21{height:14.361300px;}
.h1d{height:15.120000px;}
.h1b{height:15.206250px;}
.h1c{height:16.557900px;}
.h24{height:17.841330px;}
.h26{height:17.848530px;}
.h23{height:17.909550px;}
.h20{height:23.567730px;}
.h1e{height:23.654100px;}
.h25{height:23.992050px;}
.h1a{height:26.655750px;}
.h22{height:30.750450px;}
.hf{height:36.800415px;}
.h10{height:36.832800px;}
.he{height:38.159265px;}
.h5{height:44.440511px;}
.h11{height:48.764055px;}
.h19{height:49.746840px;}
.h7{height:55.025780px;}
.h13{height:55.045285px;}
.h2{height:55.053170px;}
.h27{height:56.524113px;}
.h14{height:61.014060px;}
.ha{height:61.022776px;}
.h16{height:62.653244px;}
.hd{height:62.662193px;}
.h6{height:66.329117px;}
.h15{height:68.101358px;}
.hc{height:68.111093px;}
.h1f{height:68.818601px;}
.h8{height:71.599818px;}
.h3{height:75.224150px;}
.h17{height:79.678583px;}
.h9{height:79.690012px;}
.h4{height:80.885676px;}
.hb{height:90.587751px;}
.h12{height:1114.941450px;}
.h1{height:1185.576600px;}
.h0{height:1188.000000px;}
.wc{width:35.209800px;}
.w9{width:69.184500px;}
.wd{width:77.190900px;}
.we{width:78.883650px;}
.w6{width:81.084300px;}
.w8{width:82.269300px;}
.wa{width:94.288050px;}
.w7{width:104.614050px;}
.wb{width:119.679900px;}
.wf{width:129.836550px;}
.w2{width:146.256450px;}
.w3{width:188.550900px;}
.w4{width:198.480600px;}
.w10{width:361.917150px;}
.w5{width:839.741550px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:5.222400px;}
.x27{left:10.156800px;}
.x19{left:11.258700px;}
.x22{left:14.388600px;}
.x2b{left:15.404250px;}
.x18{left:17.266350px;}
.x14{left:21.076950px;}
.x10{left:22.513950px;}
.x30{left:28.100250px;}
.x2d{left:29.962350px;}
.x16{left:33.661200px;}
.x23{left:35.886900px;}
.x1{left:38.898015px;}
.x15{left:45.874350px;}
.x17{left:51.039150px;}
.x12{left:53.128200px;}
.x32{left:54.507600px;}
.x33{left:108.338100px;}
.x31{left:110.877300px;}
.x3{left:120.018285px;}
.x4{left:129.497985px;}
.x2f{left:134.576250px;}
.x34{left:137.623200px;}
.x1b{left:145.410135px;}
.xb{left:153.366135px;}
.x1e{left:158.096880px;}
.x35{left:159.968085px;}
.x7{left:163.861485px;}
.x1c{left:170.801835px;}
.x2{left:171.986835px;}
.xf{left:190.740750px;}
.x2c{left:212.577600px;}
.x26{left:229.505400px;}
.x5{left:230.895735px;}
.xa{left:238.682535px;}
.x6{left:262.381485px;}
.xe{left:272.368935px;}
.x1d{left:283.694130px;}
.x8{left:296.237085px;}
.x9{left:297.252735px;}
.x1f{left:302.821530px;}
.xc{left:311.302935px;}
.x11{left:338.376600px;}
.x20{left:341.942235px;}
.x2e{left:343.091250px;}
.x2a{left:357.649200px;}
.x29{left:359.341950px;}
.x25{left:477.040800px;}
.x13{left:528.364650px;}
.x24{left:546.733050px;}
.x21{left:582.789450px;}
.xd{left:705.890685px;}
.x28{left:707.547600px;}
@media print{
.v2{vertical-align:-27.634133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.037333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.026125pt;}
.lsb{letter-spacing:0.129760pt;}
.lsa{letter-spacing:0.199445pt;}
.ls7{letter-spacing:0.281792pt;}
.ls0{letter-spacing:0.351703pt;}
.ls9{letter-spacing:0.416452pt;}
.ls4{letter-spacing:0.541071pt;}
.ls3{letter-spacing:0.761847pt;}
.ls1{letter-spacing:0.793307pt;}
.ls5{letter-spacing:0.793361pt;}
.ls8{letter-spacing:13.071808pt;}
.ls6{letter-spacing:48.756584pt;}
.lsf{letter-spacing:62.990564pt;}
.lse{letter-spacing:63.991812pt;}
.lsd{letter-spacing:65.201287pt;}
.ws3{word-spacing:-19.974560pt;}
.ws19{word-spacing:-17.571613pt;}
.wsc{word-spacing:-16.349706pt;}
.ws6{word-spacing:-16.219947pt;}
.ws12{word-spacing:-13.816987pt;}
.ws17{word-spacing:-13.815013pt;}
.ws7{word-spacing:-13.216252pt;}
.wsf{word-spacing:-12.465328pt;}
.ws13{word-spacing:-12.463543pt;}
.ws18{word-spacing:-11.263851pt;}
.ws9{word-spacing:-2.728478pt;}
.wse{word-spacing:0.000000pt;}
.wsb{word-spacing:0.183897pt;}
.wsa{word-spacing:1.076208pt;}
.ws1{word-spacing:1.424973pt;}
.ws5{word-spacing:1.432481pt;}
.ws2{word-spacing:1.689895pt;}
.ws4{word-spacing:2.029804pt;}
.ws15{word-spacing:2.455833pt;}
.ws1b{word-spacing:2.513835pt;}
.ws14{word-spacing:3.384685pt;}
.ws1c{word-spacing:6.136222pt;}
.ws16{word-spacing:9.812782pt;}
.ws10{word-spacing:10.327347pt;}
.wsd{word-spacing:19.916906pt;}
.ws8{word-spacing:26.634897pt;}
.ws1a{word-spacing:36.887880pt;}
.ws11{word-spacing:56.786205pt;}
.ws0{word-spacing:1487.141927pt;}
._3{margin-left:-1.175478pt;}
._0{width:0.997226pt;}
._1{width:2.488766pt;}
._8{width:3.733236pt;}
._5{width:4.727150pt;}
._a{width:6.382248pt;}
._b{width:7.329613pt;}
._10{width:8.405369pt;}
._7{width:9.623233pt;}
._6{width:11.069211pt;}
._19{width:11.967579pt;}
._11{width:12.877432pt;}
._d{width:13.889082pt;}
._c{width:14.946597pt;}
._4{width:16.194309pt;}
._13{width:17.131846pt;}
._e{width:18.095188pt;}
._15{width:18.989604pt;}
._f{width:20.738168pt;}
._1a{width:22.049368pt;}
._2{width:23.023502pt;}
._9{width:24.018486pt;}
._1b{width:25.141869pt;}
._18{width:26.874251pt;}
._17{width:28.398584pt;}
._14{width:30.842187pt;}
._12{width:32.544895pt;}
._16{width:35.109512pt;}
._1c{width:37.912463pt;}
._1e{width:44.587583pt;}
._20{width:45.605438pt;}
._1d{width:47.682146pt;}
._1f{width:49.397325pt;}
._22{width:51.412189pt;}
._23{width:66.744054pt;}
._21{width:69.511845pt;}
.fs7{font-size:40.249493pt;}
.fs6{font-size:42.652448pt;}
.fsf{font-size:45.055403pt;}
.fs1{font-size:47.458357pt;}
.fsb{font-size:49.854171pt;}
.fs0{font-size:49.861312pt;}
.fs5{font-size:52.865008pt;}
.fsc{font-size:55.260053pt;}
.fsa{font-size:55.267947pt;}
.fsd{font-size:60.065280pt;}
.fs8{font-size:60.073867pt;}
.fs4{font-size:64.879787pt;}
.fse{font-size:70.276373pt;}
.fs9{font-size:70.286453pt;}
.fs3{font-size:79.898240pt;}
.fs2{font-size:100.323360pt;}
.yd3{bottom:-19.073333pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:0.600667pt;}
.y1{bottom:0.642295pt;}
.yc5{bottom:2.252800pt;}
.yce{bottom:2.402933pt;}
.yd0{bottom:2.403067pt;}
.yd6{bottom:2.553067pt;}
.yca{bottom:3.003600pt;}
.yd2{bottom:3.153867pt;}
.y10d{bottom:3.454133pt;}
.y109{bottom:3.454267pt;}
.yd8{bottom:3.604533pt;}
.y56{bottom:3.754533pt;}
.y52{bottom:3.754667pt;}
.ycc{bottom:4.055067pt;}
.y4d{bottom:4.205200pt;}
.y10b{bottom:6.157600pt;}
.y59{bottom:9.161333pt;}
.y54{bottom:11.714400pt;}
.y50{bottom:11.864533pt;}
.y4e{bottom:12.164933pt;}
.yc7{bottom:13.516533pt;}
.y5a{bottom:17.121067pt;}
.y55{bottom:19.674133pt;}
.y51{bottom:19.824400pt;}
.y4c{bottom:19.974533pt;}
.y58{bottom:25.080800pt;}
.y63{bottom:31.551840pt;}
.y61{bottom:63.269307pt;}
.y86{bottom:65.038227pt;}
.y85{bottom:80.955493pt;}
.y3{bottom:94.165785pt;}
.y84{bottom:104.230827pt;}
.y2e{bottom:111.887585pt;}
.y83{bottom:119.997893pt;}
.y60{bottom:125.254025pt;}
.y2d{bottom:127.656985pt;}
.yc3{bottom:131.261412pt;}
.y82{bottom:135.915227pt;}
.ya6{bottom:138.468027pt;}
.y5f{bottom:141.173572pt;}
.y2c{bottom:143.426372pt;}
.yc2{bottom:147.181039pt;}
.y157{bottom:150.184639pt;}
.y81{bottom:151.682427pt;}
.y101{bottom:153.038239pt;}
.ya5{bottom:154.385360pt;}
.y2b{bottom:159.345972pt;}
.y156{bottom:164.602372pt;}
.y5e{bottom:165.353305pt;}
.y80{bottom:167.599627pt;}
.y100{bottom:168.807572pt;}
.ya4{bottom:170.152427pt;}
.yc1{bottom:170.459572pt;}
.y2a{bottom:175.115305pt;}
.y5d{bottom:181.272905pt;}
.y7f{bottom:183.366827pt;}
.yff{bottom:184.576905pt;}
.ya3{bottom:186.069760pt;}
.yc0{bottom:186.229039pt;}
.y155{bottom:186.529439pt;}
.y29{bottom:198.544105pt;}
.y7e{bottom:199.133893pt;}
.yfe{bottom:200.196239pt;}
.y154{bottom:200.947039pt;}
.ybf{bottom:202.148639pt;}
.y12b{bottom:202.899439pt;}
.y5c{bottom:205.602772pt;}
.ya2{bottom:209.495227pt;}
.y28{bottom:214.313572pt;}
.yfd{bottom:217.317305pt;}
.y12a{bottom:218.819039pt;}
.y7d{bottom:222.559360pt;}
.y153{bottom:222.874105pt;}
.ybe{bottom:225.427172pt;}
.y5b{bottom:229.782505pt;}
.y27{bottom:230.082905pt;}
.yfc{bottom:233.086639pt;}
.ya1{bottom:234.121893pt;}
.y129{bottom:234.588505pt;}
.y152{bottom:237.291839pt;}
.y7c{bottom:238.326560pt;}
.ybd{bottom:241.346772pt;}
.y26{bottom:246.002505pt;}
.yfb{bottom:248.705839pt;}
.ya0{bottom:249.889093pt;}
.y128{bottom:250.507972pt;}
.y151{bottom:251.559305pt;}
.y57{bottom:251.751067pt;}
.y25{bottom:261.771839pt;}
.y7b{bottom:262.202427pt;}
.ybc{bottom:264.625439pt;}
.y9f{bottom:265.806427pt;}
.y127{bottom:266.277439pt;}
.yfa{bottom:273.336105pt;}
.y150{bottom:273.486372pt;}
.y24{bottom:277.691439pt;}
.ybb{bottom:280.545039pt;}
.y9e{bottom:281.573493pt;}
.y126{bottom:282.046772pt;}
.y14f{bottom:287.903972pt;}
.yf9{bottom:289.105572pt;}
.y7a{bottom:289.382027pt;}
.y23{bottom:293.460905pt;}
.y53{bottom:296.506133pt;}
.y9d{bottom:297.490827pt;}
.y125{bottom:297.966372pt;}
.yba{bottom:303.823572pt;}
.yf8{bottom:305.025039pt;}
.y79{bottom:305.149093pt;}
.y22{bottom:309.230239pt;}
.y14e{bottom:309.831039pt;}
.yb9{bottom:319.593039pt;}
.y9c{bottom:320.766027pt;}
.yf7{bottom:320.794505pt;}
.y78{bottom:321.066427pt;}
.y124{bottom:321.695572pt;}
.y14d{bottom:324.248772pt;}
.y21{bottom:325.149839pt;}
.y4f{bottom:330.447867pt;}
.yb8{bottom:335.512639pt;}
.y9b{bottom:336.533227pt;}
.yf6{bottom:336.563839pt;}
.y14c{bottom:338.666505pt;}
.y123{bottom:340.018105pt;}
.y20{bottom:340.919172pt;}
.y77{bottom:344.341760pt;}
.yb7{bottom:351.281972pt;}
.y9a{bottom:352.450560pt;}
.yf5{bottom:352.483439pt;}
.y1f{bottom:356.838772pt;}
.y122{bottom:358.340639pt;}
.y76{bottom:360.108827pt;}
.y14b{bottom:360.443172pt;}
.y4b{bottom:364.389600pt;}
.yb6{bottom:367.201572pt;}
.y1e{bottom:372.608239pt;}
.y14a{bottom:374.860905pt;}
.y99{bottom:375.725760pt;}
.yf4{bottom:375.762105pt;}
.y75{bottom:376.026160pt;}
.y121{bottom:376.813305pt;}
.yb5{bottom:382.970905pt;}
.y1d{bottom:388.377572pt;}
.y98{bottom:391.643093pt;}
.yf3{bottom:391.681705pt;}
.y120{bottom:395.135839pt;}
.y149{bottom:396.787972pt;}
.y74{bottom:399.301493pt;}
.y1c{bottom:404.297172pt;}
.yb4{bottom:406.249572pt;}
.y97{bottom:407.410293pt;}
.y148{bottom:411.205705pt;}
.y11f{bottom:413.007839pt;}
.y73{bottom:415.218693pt;}
.yf2{bottom:415.561039pt;}
.y4a{bottom:417.213039pt;}
.yb3{bottom:422.169172pt;}
.y96{bottom:423.177360pt;}
.y147{bottom:425.623305pt;}
.y1b{bottom:428.176505pt;}
.y72{bottom:430.985893pt;}
.yf1{bottom:435.685705pt;}
.y11e{bottom:436.436639pt;}
.yb2{bottom:445.597972pt;}
.y95{bottom:446.602827pt;}
.y49{bottom:446.649305pt;}
.y146{bottom:447.400105pt;}
.y11d{bottom:452.206105pt;}
.y71{bottom:454.411360pt;}
.y145{bottom:461.817839pt;}
.y48{bottom:462.418639pt;}
.y11c{bottom:467.825305pt;}
.y70{bottom:470.178427pt;}
.y1a{bottom:470.228239pt;}
.y47{bottom:478.338239pt;}
.y94{bottom:478.737760pt;}
.y144{bottom:483.744905pt;}
.yb1{bottom:486.147839pt;}
.y19{bottom:492.305439pt;}
.y6f{bottom:493.453760pt;}
.y143{bottom:498.162639pt;}
.y46{bottom:501.316505pt;}
.yb0{bottom:501.917172pt;}
.y11b{bottom:508.225039pt;}
.y6e{bottom:509.371093pt;}
.yaf{bottom:517.686639pt;}
.y142{bottom:520.089572pt;}
.y11a{bottom:523.844105pt;}
.y45{bottom:525.045705pt;}
.y18{bottom:525.796505pt;}
.y6d{bottom:532.646293pt;}
.yae{bottom:533.606105pt;}
.y141{bottom:534.507305pt;}
.y17{bottom:540.214239pt;}
.y44{bottom:540.815039pt;}
.y119{bottom:548.324239pt;}
.y6c{bottom:548.563627pt;}
.y140{bottom:548.774772pt;}
.yf0{bottom:549.225439pt;}
.yad{bottom:549.375572pt;}
.y16{bottom:554.632105pt;}
.y43{bottom:563.943439pt;}
.y118{bottom:564.243839pt;}
.yef{bottom:566.196239pt;}
.y15{bottom:569.049705pt;}
.y13f{bottom:570.701839pt;}
.y6b{bottom:571.989093pt;}
.yac{bottom:572.804372pt;}
.y117{bottom:580.013172pt;}
.yee{bottom:582.115839pt;}
.y14{bottom:583.467439pt;}
.y13e{bottom:585.119572pt;}
.y42{bottom:587.522505pt;}
.yab{bottom:588.573705pt;}
.y116{bottom:595.632505pt;}
.y13{bottom:597.735039pt;}
.yed{bottom:597.885172pt;}
.y41{bottom:603.291839pt;}
.y6a{bottom:603.973760pt;}
.yaa{bottom:604.343172pt;}
.y13d{bottom:607.046505pt;}
.y12{bottom:612.152772pt;}
.yec{bottom:613.804772pt;}
.y115{bottom:620.112505pt;}
.ya9{bottom:620.262772pt;}
.y13c{bottom:621.464239pt;}
.y40{bottom:626.420239pt;}
.y11{bottom:626.570505pt;}
.yeb{bottom:629.574239pt;}
.y13b{bottom:635.881972pt;}
.ya8{bottom:636.032105pt;}
.y10{bottom:640.988239pt;}
.yea{bottom:645.343572pt;}
.y3f{bottom:649.999305pt;}
.y114{bottom:651.651305pt;}
.yf{bottom:655.405972pt;}
.ye9{bottom:661.263172pt;}
.y165{bottom:662.987893pt;}
.y3e{bottom:665.918905pt;}
.y93{bottom:666.291627pt;}
.ya7{bottom:666.819972pt;}
.ye{bottom:669.823705pt;}
.y113{bottom:676.131439pt;}
.ye8{bottom:677.032505pt;}
.y164{bottom:677.403627pt;}
.y3d{bottom:681.688239pt;}
.y92{bottom:682.058693pt;}
.ycf{bottom:683.231600pt;}
.y163{bottom:691.819360pt;}
.yd{bottom:691.900772pt;}
.y112{bottom:692.051039pt;}
.ye7{bottom:692.952105pt;}
.y3c{bottom:697.457705pt;}
.y91{bottom:697.976027pt;}
.y13a{bottom:700.461439pt;}
.ycd{bottom:701.854533pt;}
.y162{bottom:706.084827pt;}
.y111{bottom:707.820372pt;}
.ye6{bottom:708.571305pt;}
.y90{bottom:713.743093pt;}
.y139{bottom:716.380905pt;}
.y161{bottom:720.500427pt;}
.y3b{bottom:720.886372pt;}
.y110{bottom:723.439572pt;}
.yd4{bottom:724.382267pt;}
.ye5{bottom:725.542239pt;}
.y8f{bottom:729.510293pt;}
.y138{bottom:732.150372pt;}
.y160{bottom:734.916027pt;}
.yc{bottom:737.256639pt;}
.ye4{bottom:741.311572pt;}
.y8e{bottom:745.427493pt;}
.y3a{bottom:745.666905pt;}
.y10f{bottom:745.858667pt;}
.yc6{bottom:747.360533pt;}
.y137{bottom:747.919705pt;}
.y15f{bottom:749.331760pt;}
.yb{bottom:754.527839pt;}
.ye3{bottom:757.231172pt;}
.y8d{bottom:761.194693pt;}
.y39{bottom:761.436372pt;}
.y10e{bottom:762.378933pt;}
.y15e{bottom:763.747493pt;}
.y136{bottom:763.839305pt;}
.ye2{bottom:773.000505pt;}
.y8c{bottom:777.111893pt;}
.y38{bottom:777.355972pt;}
.ya{bottom:778.707572pt;}
.y10c{bottom:778.899333pt;}
.y135{bottom:779.608639pt;}
.yd1{bottom:780.701467pt;}
.y69{bottom:783.568960pt;}
.ye1{bottom:788.920105pt;}
.y8b{bottom:792.879093pt;}
.y15d{bottom:793.029227pt;}
.y37{bottom:793.125305pt;}
.y10a{bottom:795.419600pt;}
.y134{bottom:795.528239pt;}
.y9{bottom:795.978772pt;}
.y68{bottom:799.336027pt;}
.ye0{bottom:804.689439pt;}
.y15c{bottom:807.444827pt;}
.y8a{bottom:808.646160pt;}
.y36{bottom:808.894639pt;}
.y8{bottom:810.696905pt;}
.y133{bottom:811.297705pt;}
.y67{bottom:815.253360pt;}
.y108{bottom:817.346533pt;}
.yd5{bottom:819.749600pt;}
.yc4{bottom:820.049867pt;}
.ydf{bottom:820.308772pt;}
.y15b{bottom:821.860560pt;}
.yc9{bottom:823.804533pt;}
.y35{bottom:824.814239pt;}
.y132{bottom:827.067039pt;}
.y89{bottom:832.071627pt;}
.y107{bottom:833.866933pt;}
.y7{bottom:834.876639pt;}
.y15a{bottom:836.276293pt;}
.yde{bottom:837.279572pt;}
.y66{bottom:838.528693pt;}
.y34{bottom:840.583572pt;}
.y131{bottom:842.986639pt;}
.y88{bottom:847.838827pt;}
.y159{bottom:850.691893pt;}
.ydd{bottom:853.199172pt;}
.y65{bottom:854.446027pt;}
.y33{bottom:856.503172pt;}
.y130{bottom:858.755972pt;}
.y6{bottom:860.407972pt;}
.y106{bottom:868.668105pt;}
.ydc{bottom:868.968505pt;}
.y64{bottom:870.363227pt;}
.y87{bottom:871.264293pt;}
.y158{bottom:872.165227pt;}
.y32{bottom:872.272639pt;}
.y12f{bottom:874.675572pt;}
.yd7{bottom:882.526667pt;}
.ydb{bottom:884.587705pt;}
.y105{bottom:885.488905pt;}
.ycb{bottom:885.530400pt;}
.y31{bottom:888.041972pt;}
.y12e{bottom:890.444905pt;}
.y5{bottom:896.602505pt;}
.y62{bottom:901.146693pt;}
.y104{bottom:901.258239pt;}
.y30{bottom:903.961572pt;}
.y12d{bottom:906.214372pt;}
.yda{bottom:909.218105pt;}
.y103{bottom:917.177839pt;}
.y4{bottom:924.837305pt;}
.y2f{bottom:927.991172pt;}
.y12c{bottom:930.243972pt;}
.yd9{bottom:932.646905pt;}
.y102{bottom:932.797039pt;}
.y2{bottom:963.885305pt;}
.h18{height:12.465333pt;}
.h21{height:12.765600pt;}
.h1d{height:13.440000pt;}
.h1b{height:13.516667pt;}
.h1c{height:14.718133pt;}
.h24{height:15.858960pt;}
.h26{height:15.865360pt;}
.h23{height:15.919600pt;}
.h20{height:20.949093pt;}
.h1e{height:21.025867pt;}
.h25{height:21.326267pt;}
.h1a{height:23.694000pt;}
.h22{height:27.333733pt;}
.hf{height:32.711480pt;}
.h10{height:32.740267pt;}
.he{height:33.919347pt;}
.h5{height:39.502677pt;}
.h11{height:43.345827pt;}
.h19{height:44.219414pt;}
.h7{height:48.911805pt;}
.h13{height:48.929142pt;}
.h2{height:48.936151pt;}
.h27{height:50.243656pt;}
.h14{height:54.234720pt;}
.ha{height:54.242467pt;}
.h16{height:55.691772pt;}
.hd{height:55.699728pt;}
.h6{height:58.959215pt;}
.h15{height:60.534540pt;}
.hc{height:60.543194pt;}
.h1f{height:61.172090pt;}
.h8{height:63.644283pt;}
.h3{height:66.865911pt;}
.h17{height:70.825407pt;}
.h9{height:70.835566pt;}
.h4{height:71.898378pt;}
.hb{height:80.522445pt;}
.h12{height:991.059067pt;}
.h1{height:1053.845867pt;}
.h0{height:1056.000000pt;}
.wc{width:31.297600pt;}
.w9{width:61.497333pt;}
.wd{width:68.614133pt;}
.we{width:70.118800pt;}
.w6{width:72.074933pt;}
.w8{width:73.128267pt;}
.wa{width:83.811600pt;}
.w7{width:92.990267pt;}
.wb{width:106.382133pt;}
.wf{width:115.410267pt;}
.w2{width:130.005733pt;}
.w3{width:167.600800pt;}
.w4{width:176.427200pt;}
.w10{width:321.704133pt;}
.w5{width:746.436933pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:4.642133pt;}
.x27{left:9.028267pt;}
.x19{left:10.007733pt;}
.x22{left:12.789867pt;}
.x2b{left:13.692667pt;}
.x18{left:15.347867pt;}
.x14{left:18.735067pt;}
.x10{left:20.012400pt;}
.x30{left:24.978000pt;}
.x2d{left:26.633200pt;}
.x16{left:29.921067pt;}
.x23{left:31.899467pt;}
.x1{left:34.576013pt;}
.x15{left:40.777200pt;}
.x17{left:45.368133pt;}
.x12{left:47.225067pt;}
.x32{left:48.451200pt;}
.x33{left:96.300533pt;}
.x31{left:98.557600pt;}
.x3{left:106.682920pt;}
.x4{left:115.109320pt;}
.x2f{left:119.623333pt;}
.x34{left:122.331733pt;}
.x1b{left:129.253453pt;}
.xb{left:136.325453pt;}
.x1e{left:140.530560pt;}
.x35{left:142.193853pt;}
.x7{left:145.654653pt;}
.x1c{left:151.823853pt;}
.x2{left:152.877187pt;}
.xf{left:169.547333pt;}
.x2c{left:188.957867pt;}
.x26{left:204.004800pt;}
.x5{left:205.240653pt;}
.xa{left:212.162253pt;}
.x6{left:233.227987pt;}
.xe{left:242.105720pt;}
.x1d{left:252.172560pt;}
.x8{left:263.321853pt;}
.x9{left:264.224653pt;}
.x1f{left:269.174693pt;}
.xc{left:276.713720pt;}
.x11{left:300.779200pt;}
.x20{left:303.948653pt;}
.x2e{left:304.970000pt;}
.x2a{left:317.910400pt;}
.x29{left:319.415067pt;}
.x25{left:424.036267pt;}
.x13{left:469.657467pt;}
.x24{left:485.984933pt;}
.x21{left:518.035067pt;}
.xd{left:627.458387pt;}
.x28{left:628.931200pt;}
}




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