
    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_f5ca2a10e50df4b26c145781.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4fe43307f52241cfe241bd5c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_65f5df1261554674f994aa28.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_cb9610282369821737c6eb53.woff')format("woff");}.ff6{font-family:ff6;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.116637,-0.221124,0.221124,0.116637,0,0);-ms-transform:matrix(0.116637,-0.221124,0.221124,0.116637,0,0);-webkit-transform:matrix(0.116637,-0.221124,0.221124,0.116637,0,0);}
.m3{transform:matrix(0.128190,-0.214633,0.214633,0.128190,0,0);-ms-transform:matrix(0.128190,-0.214633,0.214633,0.128190,0,0);-webkit-transform:matrix(0.128190,-0.214633,0.214633,0.128190,0,0);}
.m4{transform:matrix(0.137472,-0.208809,0.208809,0.137472,0,0);-ms-transform:matrix(0.137472,-0.208809,0.208809,0.137472,0,0);-webkit-transform:matrix(0.137472,-0.208809,0.208809,0.137472,0,0);}
.m5{transform:matrix(0.145768,-0.203105,0.203105,0.145768,0,0);-ms-transform:matrix(0.145768,-0.203105,0.203105,0.145768,0,0);-webkit-transform:matrix(0.145768,-0.203105,0.203105,0.145768,0,0);}
.m6{transform:matrix(0.160134,-0.191982,0.191982,0.160134,0,0);-ms-transform:matrix(0.160134,-0.191982,0.191982,0.160134,0,0);-webkit-transform:matrix(0.160134,-0.191982,0.191982,0.160134,0,0);}
.m7{transform:matrix(0.168962,-0.184260,0.184260,0.168962,0,0);-ms-transform:matrix(0.168962,-0.184260,0.184260,0.168962,0,0);-webkit-transform:matrix(0.168962,-0.184260,0.184260,0.168962,0,0);}
.m8{transform:matrix(0.175724,-0.177824,0.177824,0.175724,0,0);-ms-transform:matrix(0.175724,-0.177824,0.177824,0.175724,0,0);-webkit-transform:matrix(0.175724,-0.177824,0.177824,0.175724,0,0);}
.m9{transform:matrix(0.182311,-0.171063,0.171063,0.182311,0,0);-ms-transform:matrix(0.182311,-0.171063,0.171063,0.182311,0,0);-webkit-transform:matrix(0.182311,-0.171063,0.171063,0.182311,0,0);}
.ma{transform:matrix(0.192500,-0.159510,0.159510,0.192500,0,0);-ms-transform:matrix(0.192500,-0.159510,0.159510,0.192500,0,0);-webkit-transform:matrix(0.192500,-0.159510,0.159510,0.192500,0,0);}
.mb{transform:matrix(0.199265,-0.150975,0.150975,0.199265,0,0);-ms-transform:matrix(0.199265,-0.150975,0.150975,0.199265,0,0);-webkit-transform:matrix(0.199265,-0.150975,0.150975,0.199265,0,0);}
.mc{transform:matrix(0.206383,-0.141088,0.141088,0.206383,0,0);-ms-transform:matrix(0.206383,-0.141088,0.141088,0.206383,0,0);-webkit-transform:matrix(0.206383,-0.141088,0.141088,0.206383,0,0);}
.md{transform:matrix(0.211978,-0.132535,0.132535,0.211978,0,0);-ms-transform:matrix(0.211978,-0.132535,0.132535,0.211978,0,0);-webkit-transform:matrix(0.211978,-0.132535,0.132535,0.211978,0,0);}
.me{transform:matrix(0.215797,-0.126220,0.126220,0.215797,0,0);-ms-transform:matrix(0.215797,-0.126220,0.126220,0.215797,0,0);-webkit-transform:matrix(0.215797,-0.126220,0.126220,0.215797,0,0);}
.mf{transform:matrix(0.220569,-0.117682,0.117682,0.220569,0,0);-ms-transform:matrix(0.220569,-0.117682,0.117682,0.220569,0,0);-webkit-transform:matrix(0.220569,-0.117682,0.117682,0.220569,0,0);}
.m10{transform:matrix(0.226450,-0.105927,0.105927,0.226450,0,0);-ms-transform:matrix(0.226450,-0.105927,0.105927,0.226450,0,0);-webkit-transform:matrix(0.226450,-0.105927,0.105927,0.226450,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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-5.040000px;}
.lsa{letter-spacing:-1.932000px;}
.ls2{letter-spacing:-1.734000px;}
.ls9{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-0.954000px;}
.ls2a{letter-spacing:-0.324600px;}
.ls3{letter-spacing:-0.310200px;}
.ls28{letter-spacing:-0.302400px;}
.ls4{letter-spacing:-0.238200px;}
.ls23{letter-spacing:-0.162000px;}
.lsb{letter-spacing:-0.006480px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.057000px;}
.ls22{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.134928px;}
.ls1e{letter-spacing:0.150600px;}
.ls17{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.204600px;}
.ls15{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.218400px;}
.ls1d{letter-spacing:0.283200px;}
.lsc{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.335400px;}
.ls20{letter-spacing:0.420000px;}
.ls24{letter-spacing:2.454000px;}
.ls1a{letter-spacing:49.233600px;}
.ls19{letter-spacing:49.284000px;}
.ls1b{letter-spacing:57.549600px;}
.ls6{letter-spacing:57.600000px;}
.ls16{letter-spacing:58.320000px;}
.ls13{letter-spacing:64.713600px;}
.ls12{letter-spacing:64.800000px;}
.ls14{letter-spacing:64.944000px;}
.ls8{letter-spacing:65.865600px;}
.ls7{letter-spacing:65.916000px;}
.lsd{letter-spacing:74.097600px;}
.lse{letter-spacing:74.184000px;}
.ls11{letter-spacing:74.304000px;}
.ls27{letter-spacing:78.465600px;}
.ls26{letter-spacing:78.516000px;}
.ls10{letter-spacing:105.753600px;}
.lsf{letter-spacing:105.840000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.750784px;}
.ws2{word-spacing:-59.512584px;}
.wsf{word-spacing:-48.816000px;}
.ws11{word-spacing:-38.118360px;}
.ws12{word-spacing:-38.064360px;}
.ws10{word-spacing:-37.946304px;}
.wse{word-spacing:-37.913760px;}
.ws13{word-spacing:-32.544000px;}
.ws4{word-spacing:-31.104000px;}
.ws17{word-spacing:-28.584000px;}
.ws16{word-spacing:-28.508544px;}
.ws18{word-spacing:-28.476000px;}
.ws15{word-spacing:-28.314000px;}
.ws3{word-spacing:-27.504000px;}
.ws5{word-spacing:-27.174240px;}
.ws7{word-spacing:-27.167760px;}
.ws6{word-spacing:-25.242240px;}
.ws8{word-spacing:-24.440544px;}
.wsb{word-spacing:-24.408000px;}
.wsc{word-spacing:-21.674304px;}
.wsa{word-spacing:-21.641760px;}
.ws1a{word-spacing:-18.768384px;}
.ws0{word-spacing:-0.536880px;}
.ws19{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.408000px;}
.wsd{word-spacing:0.660000px;}
._e{margin-left:-21.679488px;}
._d{margin-left:-15.598656px;}
._12{margin-left:-13.117104px;}
._5{margin-left:-11.007360px;}
._13{margin-left:-9.787920px;}
._7{margin-left:-7.966320px;}
._0{margin-left:-6.750720px;}
._14{margin-left:-5.730672px;}
._a{margin-left:-4.078368px;}
._1{margin-left:-2.833680px;}
._4{margin-left:-1.209360px;}
._3{width:1.216320px;}
._b{width:2.338704px;}
._11{width:3.853440px;}
._8{width:5.316000px;}
._6{width:22.704720px;}
._2{width:49.411920px;}
._10{width:515.090160px;}
._f{width:1399.526400px;}
._c{width:1970.108400px;}
._9{width:2006.948400px;}
.fc7{color:rgb(0,45,90);}
.fc6{color:transparent;}
.fc4{color:rgb(30,140,200);}
.fc2{color:rgb(0,60,120);}
.fc8{color:rgb(68,84,106);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(255,255,255);}
.fs28{font-size:7.200000px;}
.fs2a{font-size:48.240000px;}
.fs29{font-size:48.384000px;}
.fsa{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs25{font-size:84.240000px;}
.fs2b{font-size:84.384000px;}
.fs1c{font-size:95.615556px;}
.fs1a{font-size:95.615763px;}
.fs1d{font-size:95.615990px;}
.fs1b{font-size:95.615993px;}
.fs20{font-size:95.616182px;}
.fs18{font-size:95.759417px;}
.fs19{font-size:95.759475px;}
.fs13{font-size:95.759836px;}
.fs15{font-size:95.759851px;}
.fs3{font-size:95.760000px;}
.fs1e{font-size:95.760038px;}
.fs1f{font-size:95.760227px;}
.fs14{font-size:95.760233px;}
.fs16{font-size:95.760382px;}
.fs12{font-size:95.760438px;}
.fs10{font-size:95.904000px;}
.fs17{font-size:95.904057px;}
.fsf{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fsc{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs26{font-size:126.000000px;}
.fs27{font-size:126.144000px;}
.fs2{font-size:131.040000px;}
.fs8{font-size:138.240000px;}
.fs9{font-size:138.384000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs22{font-size:167.760000px;}
.fs24{font-size:167.904000px;}
.fs1{font-size:174.960000px;}
.fs0{font-size:210.960000px;}
.fs21{font-size:216.000000px;}
.fs23{font-size:216.144000px;}
.fsb{font-size:239.904000px;}
.fs11{font-size:264.240000px;}
.fs5{font-size:264.384000px;}
.y75{bottom:-0.540000px;}
.y81{bottom:-0.465000px;}
.y79{bottom:-0.390000px;}
.y73{bottom:-0.360000px;}
.y7b{bottom:-0.180000px;}
.y6d{bottom:-0.150000px;}
.y7d{bottom:-0.105000px;}
.y0{bottom:0.000000px;}
.y77{bottom:0.030000px;}
.y7f{bottom:0.330000px;}
.y71{bottom:0.435000px;}
.y6f{bottom:0.825000px;}
.y84{bottom:1.005000px;}
.y6b{bottom:1.470000px;}
.y86{bottom:4.755000px;}
.yad{bottom:12.960000px;}
.yb1{bottom:18.936000px;}
.y7{bottom:31.392000px;}
.yb0{bottom:33.336000px;}
.y24{bottom:37.584000px;}
.yac{bottom:44.460000px;}
.yaf{bottom:47.736000px;}
.yae{bottom:62.172000px;}
.y99{bottom:62.964000px;}
.y6{bottom:65.268000px;}
.y18{bottom:71.388000px;}
.y19{bottom:74.916000px;}
.y5{bottom:97.308000px;}
.y53{bottom:98.100000px;}
.y5f{bottom:100.224000px;}
.y44{bottom:100.800000px;}
.y9b{bottom:102.564000px;}
.ya6{bottom:104.904000px;}
.y49{bottom:114.552000px;}
.y98{bottom:116.316000px;}
.y17{bottom:118.044000px;}
.y91{bottom:126.036000px;}
.y52{bottom:130.536000px;}
.y5e{bottom:132.660000px;}
.y43{bottom:133.200000px;}
.y97{bottom:155.190000px;}
.y23{bottom:156.810000px;}
.y35{bottom:161.565000px;}
.y4{bottom:162.075000px;}
.y69{bottom:164.445000px;}
.y16{bottom:169.890000px;}
.y51{bottom:171.930000px;}
.y90{bottom:172.290000px;}
.y5d{bottom:174.060000px;}
.yab{bottom:184.785000px;}
.ya5{bottom:191.010000px;}
.y96{bottom:194.070000px;}
.y28{bottom:194.115000px;}
.y22{bottom:196.815000px;}
.y68{bottom:196.890000px;}
.y41{bottom:198.750000px;}
.y34{bottom:202.965000px;}
.yf{bottom:203.475000px;}
.y89{bottom:204.195000px;}
.y5c{bottom:206.460000px;}
.y29{bottom:207.465000px;}
.y50{bottom:213.330000px;}
.y8f{bottom:218.775000px;}
.ya2{bottom:219.450000px;}
.y27{bottom:223.275000px;}
.yaa{bottom:227.985000px;}
.y67{bottom:229.290000px;}
.y40{bottom:231.150000px;}
.y33{bottom:235.410000px;}
.y21{bottom:236.595000px;}
.ye{bottom:242.355000px;}
.y4f{bottom:245.730000px;}
.ya4{bottom:245.910000px;}
.y5b{bottom:247.860000px;}
.y15{bottom:248.580000px;}
.y42{bottom:257.655000px;}
.yb8{bottom:258.015000px;}
.y8e{bottom:265.215000px;}
.y66{bottom:270.690000px;}
.ya9{bottom:271.230000px;}
.ya1{bottom:274.215000px;}
.y32{bottom:276.810000px;}
.y3f{bottom:277.050000px;}
.y88{bottom:277.455000px;}
.y20{bottom:278.175000px;}
.y5a{bottom:280.290000px;}
.yd{bottom:281.235000px;}
.ya3{bottom:287.535000px;}
.yb7{bottom:295.635000px;}
.y14{bottom:300.450000px;}
.y65{bottom:303.090000px;}
.y95{bottom:305.310000px;}
.y4e{bottom:311.835000px;}
.y8d{bottom:313.095000px;}
.y3d{bottom:317.985000px;}
.yc{bottom:320.115000px;}
.y59{bottom:321.690000px;}
.y3e{bottom:322.950000px;}
.ya0{bottom:329.115000px;}
.y1f{bottom:331.995000px;}
.yb6{bottom:333.465000px;}
.y4d{bottom:344.235000px;}
.y64{bottom:344.520000px;}
.y3{bottom:346.065000px;}
.y30{bottom:350.535000px;}
.y87{bottom:350.715000px;}
.ya8{bottom:357.630000px;}
.y9a{bottom:362.910000px;}
.yb5{bottom:372.705000px;}
.y8c{bottom:373.605000px;}
.y4c{bottom:376.665000px;}
.y63{bottom:376.920000px;}
.y13{bottom:381.630000px;}
.y9f{bottom:383.835000px;}
.y1e{bottom:384.405000px;}
.y3c{bottom:385.845000px;}
.y2b{bottom:390.750000px;}
.y2f{bottom:391.935000px;}
.y58{bottom:400.935000px;}
.y2{bottom:401.505000px;}
.y26{bottom:405.330000px;}
.y4b{bottom:418.065000px;}
.y3b{bottom:418.290000px;}
.y2a{bottom:419.910000px;}
.y1d{bottom:424.185000px;}
.y2e{bottom:424.365000px;}
.y9e{bottom:425.445000px;}
.yb{bottom:427.785000px;}
.y57{bottom:433.335000px;}
.y12{bottom:433.515000px;}
.y8b{bottom:433.905000px;}
.y4a{bottom:450.465000px;}
.yb4{bottom:452.985000px;}
.y3a{bottom:459.690000px;}
.y94{bottom:464.010000px;}
.y1c{bottom:464.145000px;}
.y2d{bottom:465.765000px;}
.ya{bottom:466.665000px;}
.y56{bottom:474.735000px;}
.yb3{bottom:475.665000px;}
.y62{bottom:480.270000px;}
.y9d{bottom:480.345000px;}
.y8a{bottom:494.205000px;}
.y39{bottom:501.090000px;}
.y93{bottom:502.890000px;}
.y9{bottom:505.545000px;}
.y61{bottom:512.715000px;}
.y11{bottom:512.850000px;}
.y6a{bottom:514.440000px;}
.yb2{bottom:514.950000px;}
.y55{bottom:516.165000px;}
.y6c{bottom:524.340000px;}
.y48{bottom:525.600000px;}
.y1{bottom:529.950000px;}
.y6e{bottom:535.680000px;}
.y70{bottom:541.260000px;}
.y92{bottom:541.770000px;}
.y60{bottom:545.115000px;}
.y54{bottom:548.565000px;}
.y25{bottom:549.975000px;}
.y9c{bottom:557.385000px;}
.y72{bottom:557.460000px;}
.y38{bottom:557.640000px;}
.y47{bottom:558.000000px;}
.y1b{bottom:559.590000px;}
.y10{bottom:564.690000px;}
.y74{bottom:567.360000px;}
.y76{bottom:575.280000px;}
.y78{bottom:581.400000px;}
.y37{bottom:590.070000px;}
.y7a{bottom:592.560000px;}
.y7c{bottom:598.500000px;}
.y2c{bottom:600.735000px;}
.y7e{bottom:605.700000px;}
.y80{bottom:613.080000px;}
.y82{bottom:617.400000px;}
.y83{bottom:619.020000px;}
.y85{bottom:621.180000px;}
.y46{bottom:634.710000px;}
.y31{bottom:660.420000px;}
.y36{bottom:668.130000px;}
.y8{bottom:670.395000px;}
.y1a{bottom:672.015000px;}
.ya7{bottom:683.640000px;}
.y45{bottom:706.035000px;}
.h3d{height:7.161328px;}
.h26{height:14.040000px;}
.h3c{height:14.580000px;}
.h24{height:14.940000px;}
.h20{height:15.120000px;}
.h1a{height:15.300000px;}
.h22{height:15.480000px;}
.h2a{height:15.660000px;}
.h2e{height:17.460000px;}
.h16{height:18.900000px;}
.h28{height:19.800000px;}
.h1e{height:19.980000px;}
.h1c{height:20.880000px;}
.h30{height:21.060000px;}
.h18{height:21.420000px;}
.h3f{height:47.980898px;}
.h3e{height:48.124125px;}
.hd{height:65.884219px;}
.h5{height:71.613281px;}
.h37{height:83.787539px;}
.h41{height:83.930766px;}
.h4{height:95.245664px;}
.h14{height:95.388891px;}
.h2b{height:97.903232px;}
.h27{height:97.903445px;}
.h2c{height:97.903677px;}
.h29{height:97.903680px;}
.h31{height:97.903874px;}
.h23{height:98.050535px;}
.h25{height:98.050595px;}
.h19{height:98.050965px;}
.h1d{height:98.050980px;}
.h2d{height:98.051172px;}
.h2f{height:98.051365px;}
.h1b{height:98.051372px;}
.h1f{height:98.051524px;}
.h17{height:98.051582px;}
.h21{height:98.198636px;}
.h13{height:107.419922px;}
.h12{height:107.563148px;}
.h3b{height:109.476562px;}
.h40{height:110.583984px;}
.h10{height:119.594180px;}
.h11{height:119.737406px;}
.h39{height:125.323242px;}
.h3a{height:125.466469px;}
.h38{height:129.014648px;}
.h3{height:134.175234px;}
.h9{height:137.497500px;}
.hb{height:137.640727px;}
.ha{height:141.547500px;}
.hc{height:141.694945px;}
.h7{height:143.226562px;}
.h8{height:143.369789px;}
.hf{height:147.445312px;}
.h36{height:147.592758px;}
.h34{height:166.858945px;}
.h35{height:167.002172px;}
.h2{height:174.020273px;}
.h1{height:216.007383px;}
.h32{height:221.167969px;}
.h33{height:221.315414px;}
.he{height:245.643891px;}
.h15{height:270.562148px;}
.h6{height:270.709594px;}
.h0{height:810.000000px;}
.wa{width:13.680000px;}
.wd{width:13.860000px;}
.w4{width:14.760000px;}
.w9{width:14.940000px;}
.w7{width:15.120000px;}
.w8{width:15.300000px;}
.wc{width:15.660000px;}
.we{width:17.460000px;}
.w2{width:18.900000px;}
.wb{width:19.440000px;}
.w6{width:19.620000px;}
.w5{width:20.700000px;}
.w3{width:21.060000px;}
.wf{width:271.830000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x39{left:6.300000px;}
.x32{left:7.635000px;}
.x34{left:9.720000px;}
.x2e{left:11.445000px;}
.x2c{left:14.190000px;}
.x1{left:85.823979px;}
.x26{left:89.063979px;}
.x1e{left:100.943979px;}
.x22{left:102.707979px;}
.x1f{left:104.903979px;}
.x23{left:106.127979px;}
.x3{left:109.799979px;}
.x48{left:113.615979px;}
.x27{left:114.875979px;}
.x28{left:116.387979px;}
.x2a{left:117.791979px;}
.x45{left:121.355979px;}
.x18{left:123.983979px;}
.x1c{left:125.603979px;}
.x19{left:127.403979px;}
.x1d{left:129.023979px;}
.x5{left:130.607979px;}
.x5b{left:136.799979px;}
.x7{left:138.527979px;}
.x8{left:141.047979px;}
.x20{left:147.563979px;}
.x29{left:148.823979px;}
.x4{left:150.224979px;}
.x41{left:152.249979px;}
.x49{left:157.889979px;}
.x1a{left:162.149979px;}
.xe{left:163.829979px;}
.x4a{left:172.829979px;}
.x3e{left:175.964979px;}
.x46{left:179.249979px;}
.x44{left:181.514979px;}
.x47{left:191.594979px;}
.x6{left:202.964979px;}
.x9{left:216.284979px;}
.x4b{left:258.914979px;}
.x40{left:277.304979px;}
.x3f{left:309.344979px;}
.x59{left:354.389979px;}
.x15{left:523.364979px;}
.x4d{left:546.734979px;}
.x5a{left:558.149979px;}
.x4f{left:561.134979px;}
.x42{left:565.019979px;}
.x16{left:572.369979px;}
.x4e{left:581.294979px;}
.x4c{left:591.374979px;}
.x43{left:596.159979px;}
.x2b{left:617.580000px;}
.xb{left:620.609979px;}
.x2d{left:624.600000px;}
.x14{left:626.939979px;}
.x2f{left:631.620000px;}
.x30{left:634.860000px;}
.x31{left:646.380000px;}
.xa{left:648.284979px;}
.xc{left:657.824979px;}
.xd{left:662.399979px;}
.x33{left:664.380000px;}
.x35{left:672.480000px;}
.x36{left:685.260000px;}
.x37{left:689.580000px;}
.x50{left:701.174979px;}
.x38{left:703.080000px;}
.x3a{left:712.980000px;}
.x3b{left:717.120000px;}
.x3c{left:725.220000px;}
.x3d{left:735.660000px;}
.x10{left:850.499979px;}
.xf{left:877.934979px;}
.x53{left:986.789979px;}
.x56{left:988.769979px;}
.x55{left:996.509979px;}
.x12{left:1017.389979px;}
.x1b{left:1025.129979px;}
.x51{left:1034.669979px;}
.x13{left:1039.889979px;}
.x17{left:1056.029979px;}
.x52{left:1060.949979px;}
.x57{left:1093.709979px;}
.x11{left:1103.294979px;}
.x54{left:1124.489979px;}
.x58{left:1141.274979px;}
.x25{left:1189.829979px;}
.x21{left:1240.124979px;}
.x24{left:1254.314979px;}
.x2{left:1321.019979px;}
@media print{
.v1{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-4.480000pt;}
.lsa{letter-spacing:-1.717333pt;}
.ls2{letter-spacing:-1.541333pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-0.848000pt;}
.ls2a{letter-spacing:-0.288533pt;}
.ls3{letter-spacing:-0.275733pt;}
.ls28{letter-spacing:-0.268800pt;}
.ls4{letter-spacing:-0.211733pt;}
.ls23{letter-spacing:-0.144000pt;}
.lsb{letter-spacing:-0.005760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.050667pt;}
.ls22{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.119936pt;}
.ls1e{letter-spacing:0.133867pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.181867pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.194133pt;}
.ls1d{letter-spacing:0.251733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.298133pt;}
.ls20{letter-spacing:0.373333pt;}
.ls24{letter-spacing:2.181333pt;}
.ls1a{letter-spacing:43.763200pt;}
.ls19{letter-spacing:43.808000pt;}
.ls1b{letter-spacing:51.155200pt;}
.ls6{letter-spacing:51.200000pt;}
.ls16{letter-spacing:51.840000pt;}
.ls13{letter-spacing:57.523200pt;}
.ls12{letter-spacing:57.600000pt;}
.ls14{letter-spacing:57.728000pt;}
.ls8{letter-spacing:58.547200pt;}
.ls7{letter-spacing:58.592000pt;}
.lsd{letter-spacing:65.864533pt;}
.lse{letter-spacing:65.941333pt;}
.ls11{letter-spacing:66.048000pt;}
.ls27{letter-spacing:69.747200pt;}
.ls26{letter-spacing:69.792000pt;}
.ls10{letter-spacing:94.003200pt;}
.lsf{letter-spacing:94.080000pt;}
.ws9{word-spacing:-53.111808pt;}
.ws2{word-spacing:-52.900075pt;}
.wsf{word-spacing:-43.392000pt;}
.ws11{word-spacing:-33.882987pt;}
.ws12{word-spacing:-33.834987pt;}
.ws10{word-spacing:-33.730048pt;}
.wse{word-spacing:-33.701120pt;}
.ws13{word-spacing:-28.928000pt;}
.ws4{word-spacing:-27.648000pt;}
.ws17{word-spacing:-25.408000pt;}
.ws16{word-spacing:-25.340928pt;}
.ws18{word-spacing:-25.312000pt;}
.ws15{word-spacing:-25.168000pt;}
.ws3{word-spacing:-24.448000pt;}
.ws5{word-spacing:-24.154880pt;}
.ws7{word-spacing:-24.149120pt;}
.ws6{word-spacing:-22.437547pt;}
.ws8{word-spacing:-21.724928pt;}
.wsb{word-spacing:-21.696000pt;}
.wsc{word-spacing:-19.266048pt;}
.wsa{word-spacing:-19.237120pt;}
.ws1a{word-spacing:-16.683008pt;}
.ws0{word-spacing:-0.477227pt;}
.ws19{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.362667pt;}
.wsd{word-spacing:0.586667pt;}
._e{margin-left:-19.270656pt;}
._d{margin-left:-13.865472pt;}
._12{margin-left:-11.659648pt;}
._5{margin-left:-9.784320pt;}
._13{margin-left:-8.700373pt;}
._7{margin-left:-7.081173pt;}
._0{margin-left:-6.000640pt;}
._14{margin-left:-5.093931pt;}
._a{margin-left:-3.625216pt;}
._1{margin-left:-2.518827pt;}
._4{margin-left:-1.074987pt;}
._3{width:1.081173pt;}
._b{width:2.078848pt;}
._11{width:3.425280pt;}
._8{width:4.725333pt;}
._6{width:20.181973pt;}
._2{width:43.921707pt;}
._10{width:457.857920pt;}
._f{width:1244.023467pt;}
._c{width:1751.207467pt;}
._9{width:1783.954133pt;}
.fs28{font-size:6.400000pt;}
.fs2a{font-size:42.880000pt;}
.fs29{font-size:43.008000pt;}
.fsa{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs25{font-size:74.880000pt;}
.fs2b{font-size:75.008000pt;}
.fs1c{font-size:84.991605pt;}
.fs1a{font-size:84.991789pt;}
.fs1d{font-size:84.991991pt;}
.fs1b{font-size:84.991994pt;}
.fs20{font-size:84.992162pt;}
.fs18{font-size:85.119481pt;}
.fs19{font-size:85.119534pt;}
.fs13{font-size:85.119854pt;}
.fs15{font-size:85.119867pt;}
.fs3{font-size:85.120000pt;}
.fs1e{font-size:85.120034pt;}
.fs1f{font-size:85.120201pt;}
.fs14{font-size:85.120207pt;}
.fs16{font-size:85.120339pt;}
.fs12{font-size:85.120390pt;}
.fs10{font-size:85.248000pt;}
.fs17{font-size:85.248050pt;}
.fsf{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fsc{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs26{font-size:112.000000pt;}
.fs27{font-size:112.128000pt;}
.fs2{font-size:116.480000pt;}
.fs8{font-size:122.880000pt;}
.fs9{font-size:123.008000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs22{font-size:149.120000pt;}
.fs24{font-size:149.248000pt;}
.fs1{font-size:155.520000pt;}
.fs0{font-size:187.520000pt;}
.fs21{font-size:192.000000pt;}
.fs23{font-size:192.128000pt;}
.fsb{font-size:213.248000pt;}
.fs11{font-size:234.880000pt;}
.fs5{font-size:235.008000pt;}
.y75{bottom:-0.480000pt;}
.y81{bottom:-0.413333pt;}
.y79{bottom:-0.346667pt;}
.y73{bottom:-0.320000pt;}
.y7b{bottom:-0.160000pt;}
.y6d{bottom:-0.133333pt;}
.y7d{bottom:-0.093333pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:0.026667pt;}
.y7f{bottom:0.293333pt;}
.y71{bottom:0.386667pt;}
.y6f{bottom:0.733333pt;}
.y84{bottom:0.893333pt;}
.y6b{bottom:1.306667pt;}
.y86{bottom:4.226667pt;}
.yad{bottom:11.520000pt;}
.yb1{bottom:16.832000pt;}
.y7{bottom:27.904000pt;}
.yb0{bottom:29.632000pt;}
.y24{bottom:33.408000pt;}
.yac{bottom:39.520000pt;}
.yaf{bottom:42.432000pt;}
.yae{bottom:55.264000pt;}
.y99{bottom:55.968000pt;}
.y6{bottom:58.016000pt;}
.y18{bottom:63.456000pt;}
.y19{bottom:66.592000pt;}
.y5{bottom:86.496000pt;}
.y53{bottom:87.200000pt;}
.y5f{bottom:89.088000pt;}
.y44{bottom:89.600000pt;}
.y9b{bottom:91.168000pt;}
.ya6{bottom:93.248000pt;}
.y49{bottom:101.824000pt;}
.y98{bottom:103.392000pt;}
.y17{bottom:104.928000pt;}
.y91{bottom:112.032000pt;}
.y52{bottom:116.032000pt;}
.y5e{bottom:117.920000pt;}
.y43{bottom:118.400000pt;}
.y97{bottom:137.946667pt;}
.y23{bottom:139.386667pt;}
.y35{bottom:143.613333pt;}
.y4{bottom:144.066667pt;}
.y69{bottom:146.173333pt;}
.y16{bottom:151.013333pt;}
.y51{bottom:152.826667pt;}
.y90{bottom:153.146667pt;}
.y5d{bottom:154.720000pt;}
.yab{bottom:164.253333pt;}
.ya5{bottom:169.786667pt;}
.y96{bottom:172.506667pt;}
.y28{bottom:172.546667pt;}
.y22{bottom:174.946667pt;}
.y68{bottom:175.013333pt;}
.y41{bottom:176.666667pt;}
.y34{bottom:180.413333pt;}
.yf{bottom:180.866667pt;}
.y89{bottom:181.506667pt;}
.y5c{bottom:183.520000pt;}
.y29{bottom:184.413333pt;}
.y50{bottom:189.626667pt;}
.y8f{bottom:194.466667pt;}
.ya2{bottom:195.066667pt;}
.y27{bottom:198.466667pt;}
.yaa{bottom:202.653333pt;}
.y67{bottom:203.813333pt;}
.y40{bottom:205.466667pt;}
.y33{bottom:209.253333pt;}
.y21{bottom:210.306667pt;}
.ye{bottom:215.426667pt;}
.y4f{bottom:218.426667pt;}
.ya4{bottom:218.586667pt;}
.y5b{bottom:220.320000pt;}
.y15{bottom:220.960000pt;}
.y42{bottom:229.026667pt;}
.yb8{bottom:229.346667pt;}
.y8e{bottom:235.746667pt;}
.y66{bottom:240.613333pt;}
.ya9{bottom:241.093333pt;}
.ya1{bottom:243.746667pt;}
.y32{bottom:246.053333pt;}
.y3f{bottom:246.266667pt;}
.y88{bottom:246.626667pt;}
.y20{bottom:247.266667pt;}
.y5a{bottom:249.146667pt;}
.yd{bottom:249.986667pt;}
.ya3{bottom:255.586667pt;}
.yb7{bottom:262.786667pt;}
.y14{bottom:267.066667pt;}
.y65{bottom:269.413333pt;}
.y95{bottom:271.386667pt;}
.y4e{bottom:277.186667pt;}
.y8d{bottom:278.306667pt;}
.y3d{bottom:282.653333pt;}
.yc{bottom:284.546667pt;}
.y59{bottom:285.946667pt;}
.y3e{bottom:287.066667pt;}
.ya0{bottom:292.546667pt;}
.y1f{bottom:295.106667pt;}
.yb6{bottom:296.413333pt;}
.y4d{bottom:305.986667pt;}
.y64{bottom:306.240000pt;}
.y3{bottom:307.613333pt;}
.y30{bottom:311.586667pt;}
.y87{bottom:311.746667pt;}
.ya8{bottom:317.893333pt;}
.y9a{bottom:322.586667pt;}
.yb5{bottom:331.293333pt;}
.y8c{bottom:332.093333pt;}
.y4c{bottom:334.813333pt;}
.y63{bottom:335.040000pt;}
.y13{bottom:339.226667pt;}
.y9f{bottom:341.186667pt;}
.y1e{bottom:341.693333pt;}
.y3c{bottom:342.973333pt;}
.y2b{bottom:347.333333pt;}
.y2f{bottom:348.386667pt;}
.y58{bottom:356.386667pt;}
.y2{bottom:356.893333pt;}
.y26{bottom:360.293333pt;}
.y4b{bottom:371.613333pt;}
.y3b{bottom:371.813333pt;}
.y2a{bottom:373.253333pt;}
.y1d{bottom:377.053333pt;}
.y2e{bottom:377.213333pt;}
.y9e{bottom:378.173333pt;}
.yb{bottom:380.253333pt;}
.y57{bottom:385.186667pt;}
.y12{bottom:385.346667pt;}
.y8b{bottom:385.693333pt;}
.y4a{bottom:400.413333pt;}
.yb4{bottom:402.653333pt;}
.y3a{bottom:408.613333pt;}
.y94{bottom:412.453333pt;}
.y1c{bottom:412.573333pt;}
.y2d{bottom:414.013333pt;}
.ya{bottom:414.813333pt;}
.y56{bottom:421.986667pt;}
.yb3{bottom:422.813333pt;}
.y62{bottom:426.906667pt;}
.y9d{bottom:426.973333pt;}
.y8a{bottom:439.293333pt;}
.y39{bottom:445.413333pt;}
.y93{bottom:447.013333pt;}
.y9{bottom:449.373333pt;}
.y61{bottom:455.746667pt;}
.y11{bottom:455.866667pt;}
.y6a{bottom:457.280000pt;}
.yb2{bottom:457.733333pt;}
.y55{bottom:458.813333pt;}
.y6c{bottom:466.080000pt;}
.y48{bottom:467.200000pt;}
.y1{bottom:471.066667pt;}
.y6e{bottom:476.160000pt;}
.y70{bottom:481.120000pt;}
.y92{bottom:481.573333pt;}
.y60{bottom:484.546667pt;}
.y54{bottom:487.613333pt;}
.y25{bottom:488.866667pt;}
.y9c{bottom:495.453333pt;}
.y72{bottom:495.520000pt;}
.y38{bottom:495.680000pt;}
.y47{bottom:496.000000pt;}
.y1b{bottom:497.413333pt;}
.y10{bottom:501.946667pt;}
.y74{bottom:504.320000pt;}
.y76{bottom:511.360000pt;}
.y78{bottom:516.800000pt;}
.y37{bottom:524.506667pt;}
.y7a{bottom:526.720000pt;}
.y7c{bottom:532.000000pt;}
.y2c{bottom:533.986667pt;}
.y7e{bottom:538.400000pt;}
.y80{bottom:544.960000pt;}
.y82{bottom:548.800000pt;}
.y83{bottom:550.240000pt;}
.y85{bottom:552.160000pt;}
.y46{bottom:564.186667pt;}
.y31{bottom:587.040000pt;}
.y36{bottom:593.893333pt;}
.y8{bottom:595.906667pt;}
.y1a{bottom:597.346667pt;}
.ya7{bottom:607.680000pt;}
.y45{bottom:627.586667pt;}
.h3d{height:6.365625pt;}
.h26{height:12.480000pt;}
.h3c{height:12.960000pt;}
.h24{height:13.280000pt;}
.h20{height:13.440000pt;}
.h1a{height:13.600000pt;}
.h22{height:13.760000pt;}
.h2a{height:13.920000pt;}
.h2e{height:15.520000pt;}
.h16{height:16.800000pt;}
.h28{height:17.600000pt;}
.h1e{height:17.760000pt;}
.h1c{height:18.560000pt;}
.h30{height:18.720000pt;}
.h18{height:19.040000pt;}
.h3f{height:42.649687pt;}
.h3e{height:42.777000pt;}
.hd{height:58.563750pt;}
.h5{height:63.656250pt;}
.h37{height:74.477812pt;}
.h41{height:74.605125pt;}
.h4{height:84.662813pt;}
.h14{height:84.790125pt;}
.h2b{height:87.025095pt;}
.h27{height:87.025284pt;}
.h2c{height:87.025491pt;}
.h29{height:87.025494pt;}
.h31{height:87.025666pt;}
.h23{height:87.156032pt;}
.h25{height:87.156085pt;}
.h19{height:87.156413pt;}
.h1d{height:87.156427pt;}
.h2d{height:87.156597pt;}
.h2f{height:87.156769pt;}
.h1b{height:87.156775pt;}
.h1f{height:87.156910pt;}
.h17{height:87.156961pt;}
.h21{height:87.287677pt;}
.h13{height:95.484375pt;}
.h12{height:95.611688pt;}
.h3b{height:97.312500pt;}
.h40{height:98.296875pt;}
.h10{height:106.305937pt;}
.h11{height:106.433250pt;}
.h39{height:111.398438pt;}
.h3a{height:111.525750pt;}
.h38{height:114.679688pt;}
.h3{height:119.266875pt;}
.h9{height:122.220000pt;}
.hb{height:122.347313pt;}
.ha{height:125.820000pt;}
.hc{height:125.951063pt;}
.h7{height:127.312500pt;}
.h8{height:127.439813pt;}
.hf{height:131.062500pt;}
.h36{height:131.193562pt;}
.h34{height:148.319063pt;}
.h35{height:148.446375pt;}
.h2{height:154.684687pt;}
.h1{height:192.006563pt;}
.h32{height:196.593750pt;}
.h33{height:196.724812pt;}
.he{height:218.350125pt;}
.h15{height:240.499687pt;}
.h6{height:240.630750pt;}
.h0{height:720.000000pt;}
.wa{width:12.160000pt;}
.wd{width:12.320000pt;}
.w4{width:13.120000pt;}
.w9{width:13.280000pt;}
.w7{width:13.440000pt;}
.w8{width:13.600000pt;}
.wc{width:13.920000pt;}
.we{width:15.520000pt;}
.w2{width:16.800000pt;}
.wb{width:17.280000pt;}
.w6{width:17.440000pt;}
.w5{width:18.400000pt;}
.w3{width:18.720000pt;}
.wf{width:241.626667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x39{left:5.600000pt;}
.x32{left:6.786667pt;}
.x34{left:8.640000pt;}
.x2e{left:10.173333pt;}
.x2c{left:12.613333pt;}
.x1{left:76.287981pt;}
.x26{left:79.167981pt;}
.x1e{left:89.727981pt;}
.x22{left:91.295981pt;}
.x1f{left:93.247981pt;}
.x23{left:94.335981pt;}
.x3{left:97.599981pt;}
.x48{left:100.991981pt;}
.x27{left:102.111981pt;}
.x28{left:103.455981pt;}
.x2a{left:104.703981pt;}
.x45{left:107.871981pt;}
.x18{left:110.207981pt;}
.x1c{left:111.647981pt;}
.x19{left:113.247981pt;}
.x1d{left:114.687981pt;}
.x5{left:116.095981pt;}
.x5b{left:121.599981pt;}
.x7{left:123.135981pt;}
.x8{left:125.375981pt;}
.x20{left:131.167981pt;}
.x29{left:132.287981pt;}
.x4{left:133.533314pt;}
.x41{left:135.333314pt;}
.x49{left:140.346648pt;}
.x1a{left:144.133314pt;}
.xe{left:145.626648pt;}
.x4a{left:153.626648pt;}
.x3e{left:156.413314pt;}
.x46{left:159.333314pt;}
.x44{left:161.346648pt;}
.x47{left:170.306648pt;}
.x6{left:180.413314pt;}
.x9{left:192.253314pt;}
.x4b{left:230.146648pt;}
.x40{left:246.493314pt;}
.x3f{left:274.973314pt;}
.x59{left:315.013314pt;}
.x15{left:465.213314pt;}
.x4d{left:485.986648pt;}
.x5a{left:496.133314pt;}
.x4f{left:498.786648pt;}
.x42{left:502.239981pt;}
.x16{left:508.773314pt;}
.x4e{left:516.706648pt;}
.x4c{left:525.666648pt;}
.x43{left:529.919981pt;}
.x2b{left:548.960000pt;}
.xb{left:551.653314pt;}
.x2d{left:555.200000pt;}
.x14{left:557.279981pt;}
.x2f{left:561.440000pt;}
.x30{left:564.320000pt;}
.x31{left:574.560000pt;}
.xa{left:576.253314pt;}
.xc{left:584.733314pt;}
.xd{left:588.799981pt;}
.x33{left:590.560000pt;}
.x35{left:597.760000pt;}
.x36{left:609.120000pt;}
.x37{left:612.960000pt;}
.x50{left:623.266648pt;}
.x38{left:624.960000pt;}
.x3a{left:633.760000pt;}
.x3b{left:637.440000pt;}
.x3c{left:644.640000pt;}
.x3d{left:653.920000pt;}
.x10{left:755.999981pt;}
.xf{left:780.386648pt;}
.x53{left:877.146648pt;}
.x56{left:878.906648pt;}
.x55{left:885.786648pt;}
.x12{left:904.346648pt;}
.x1b{left:911.226648pt;}
.x51{left:919.706648pt;}
.x13{left:924.346648pt;}
.x17{left:938.693314pt;}
.x52{left:943.066648pt;}
.x57{left:972.186648pt;}
.x11{left:980.706648pt;}
.x54{left:999.546648pt;}
.x58{left:1014.466648pt;}
.x25{left:1057.626648pt;}
.x21{left:1102.333314pt;}
.x24{left:1114.946648pt;}
.x2{left:1174.239981pt;}
}




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