
    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_8cf743e666f4e33d39c369b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_55fccbf282583bd740c4ed73.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_ecfd7d0f7007ea9e62fdb6f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_b73adce3c52c97a579e629f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;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_6a5f7f7f24439e48dd4751df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_d7e4ce8e8e8be8a1bedae780.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_f251c67d42c89ed915bf44f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_b90382b907aacb0aaf338e51.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_b350ffcae9cc7b4ca874cc72.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5b14a934c7b8ac11448ed639.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_31c1a4cbb0e68a063be1386b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4e493b33b367ac75435c4ce7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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:ffe;src:url('chunks/assets/font_90cdc169469f4325f53e57eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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:fff;src:url('chunks/assets/font_945495ef7b7ebc2c4f8bdc7a.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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:ff10;src:url('chunks/assets/font_4f5af872585e0486f19575be.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_bb7373cd5c675c751e53a0d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_18b653acc0619e74fdb83db7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926270;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:ff13;src:url('chunks/assets/font_af50033c8c00191b13a8db97.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.716500;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:ff14;src:url('chunks/assets/font_9dcbbcbfaa9b0f3b4c30285f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.992188;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:ff15;src:url('chunks/assets/font_8fa9798935faee4654ac4f36.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.356400px;}
.ls18{letter-spacing:-0.345600px;}
.ls1{letter-spacing:-0.303600px;}
.ls22{letter-spacing:-0.285000px;}
.lsd{letter-spacing:-0.280800px;}
.ls24{letter-spacing:-0.277200px;}
.ls2{letter-spacing:-0.224400px;}
.ls27{letter-spacing:-0.214200px;}
.ls11{letter-spacing:-0.194400px;}
.ls12{letter-spacing:-0.183600px;}
.ls3{letter-spacing:-0.171600px;}
.ls25{letter-spacing:-0.142800px;}
.lse{letter-spacing:-0.140400px;}
.ls10{letter-spacing:-0.118800px;}
.ls15{letter-spacing:-0.097200px;}
.ls13{letter-spacing:-0.086400px;}
.lsf{letter-spacing:-0.075600px;}
.ls19{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.039600px;}
.ls14{letter-spacing:0.064800px;}
.ls1a{letter-spacing:0.075600px;}
.lsc{letter-spacing:0.097200px;}
.ls1b{letter-spacing:0.099000px;}
.ls16{letter-spacing:0.151200px;}
.ls6{letter-spacing:0.158400px;}
.ls1c{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.193800px;}
.ls5{letter-spacing:0.211200px;}
.lsa{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.217800px;}
.ls29{letter-spacing:0.285600px;}
.ls17{letter-spacing:0.302400px;}
.ls4{letter-spacing:0.316800px;}
.lsb{letter-spacing:31.212000px;}
.ls1e{letter-spacing:45.144000px;}
.ls1f{letter-spacing:45.540000px;}
.ls23{letter-spacing:57.600000px;}
.ls28{letter-spacing:99.600000px;}
.ls9{letter-spacing:210.168000px;}
.ls8{letter-spacing:513.324000px;}
.ls7{letter-spacing:693.144000px;}
.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;}
}
.ws1{word-spacing:-29.832000px;}
.ws3{word-spacing:-0.183600px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.237600px;}
._b9{margin-left:-1550.943000px;}
._e7{margin-left:-727.785000px;}
._6c{margin-left:-2.862000px;}
._b{margin-left:-1.026000px;}
._a{width:1.296000px;}
._a8{width:32.946000px;}
._28{width:36.399000px;}
._5d{width:52.250400px;}
._53{width:54.734400px;}
._c2{width:56.724000px;}
._7a{width:62.160000px;}
._22{width:65.650200px;}
._3d{width:67.100400px;}
._d7{width:69.666000px;}
._2b{width:78.408000px;}
._23{width:79.899600px;}
._94{width:83.081400px;}
._c0{width:84.853200px;}
._c4{width:85.982400px;}
._40{width:89.607600px;}
._26{width:91.146000px;}
._4d{width:94.219200px;}
._97{width:95.794200px;}
._c7{width:96.889800px;}
._84{width:98.872200px;}
._71{width:99.919800px;}
._93{width:101.802000px;}
._63{width:106.099200px;}
._4e{width:109.231200px;}
._17{width:110.418000px;}
._a9{width:112.219200px;}
._15{width:114.166800px;}
._c8{width:119.391000px;}
._83{width:120.396000px;}
._16{width:123.182400px;}
._68{width:128.012400px;}
._f{width:129.307200px;}
._7d{width:133.128000px;}
._49{width:134.654400px;}
._6{width:136.242000px;}
._46{width:137.872800px;}
._1a{width:138.916800px;}
._bd{width:142.636800px;}
._38{width:147.344400px;}
._d9{width:148.570800px;}
._24{width:150.400800px;}
._a2{width:151.859400px;}
._2a{width:154.149600px;}
._a3{width:158.968200px;}
._4b{width:160.261200px;}
._66{width:163.101600px;}
._1f{width:164.643600px;}
._32{width:166.341600px;}
._aa{width:167.841600px;}
._be{width:171.476400px;}
._78{width:172.896000px;}
._2f{width:174.884400px;}
._d4{width:181.641600px;}
._a5{width:183.551400px;}
._d8{width:186.795600px;}
._59{width:188.600400px;}
._56{width:191.678400px;}
._5c{width:193.860000px;}
._41{width:197.596800px;}
._67{width:199.195200px;}
._1b{width:201.168000px;}
._11{width:206.593200px;}
._50{width:209.908800px;}
._44{width:211.852800px;}
._77{width:213.384000px;}
._99{width:216.554400px;}
._21{width:219.390600px;}
._1d{width:222.921600px;}
._34{width:225.417600px;}
._33{width:227.032800px;}
._dc{width:228.133200px;}
._6f{width:233.556000px;}
._d{width:238.167600px;}
._12{width:239.408400px;}
._ae{width:240.465600px;}
._64{width:242.654400px;}
._d5{width:244.636800px;}
._2c{width:249.048000px;}
._65{width:250.280400px;}
._6d{width:253.869000px;}
._18{width:255.169200px;}
._13{width:257.426400px;}
._89{width:258.985200px;}
._7c{width:260.143800px;}
._a7{width:261.631800px;}
._4a{width:263.088000px;}
._7e{width:266.575800px;}
._a6{width:271.927200px;}
._c3{width:273.413400px;}
._10{width:276.566400px;}
._20{width:278.645400px;}
._8d{width:280.303200px;}
._3e{width:283.710600px;}
._5e{width:287.647200px;}
._c6{width:290.887800px;}
._6e{width:292.142400px;}
._2e{width:294.154800px;}
._d0{width:295.296000px;}
._14{width:297.171600px;}
._51{width:298.576800px;}
._70{width:299.616000px;}
._42{width:301.071600px;}
._43{width:304.106400px;}
._e3{width:307.055400px;}
._7{width:311.124000px;}
._d2{width:312.885000px;}
._3f{width:315.349200px;}
._bb{width:318.138000px;}
._3{width:319.248000px;}
._5b{width:322.855200px;}
._9c{width:323.885400px;}
._9b{width:329.891400px;}
._6b{width:331.095600px;}
._9a{width:336.550800px;}
._60{width:342.511200px;}
._c1{width:346.216800px;}
._82{width:352.180200px;}
._90{width:356.158800px;}
._29{width:358.875000px;}
._7b{width:360.397800px;}
._4c{width:361.972800px;}
._47{width:363.420000px;}
._36{width:364.856400px;}
._69{width:368.388000px;}
._c{width:370.101600px;}
._1e{width:372.900000px;}
._e0{width:374.839800px;}
._30{width:376.315200px;}
._62{width:379.056000px;}
._ca{width:386.421600px;}
._92{width:387.554400px;}
._3a{width:388.854000px;}
._ad{width:391.828800px;}
._81{width:393.360000px;}
._6a{width:397.051200px;}
._de{width:398.381400px;}
._7f{width:399.435000px;}
._9f{width:400.977000px;}
._e1{width:404.379000px;}
._95{width:406.075800px;}
._52{width:408.445200px;}
._c9{width:409.632000px;}
._e2{width:415.629600px;}
._8{width:417.624000px;}
._75{width:420.420000px;}
._ac{width:423.475200px;}
._27{width:430.188000px;}
._76{width:432.240000px;}
._45{width:434.592000px;}
._91{width:438.819600px;}
._b6{width:440.712000px;}
._37{width:442.108800px;}
._9e{width:446.129400px;}
._25{width:447.414000px;}
._4f{width:452.876400px;}
._5a{width:455.598000px;}
._88{width:456.632400px;}
._1c{width:463.689600px;}
._61{width:466.063200px;}
._d6{width:471.882600px;}
._4{width:477.495000px;}
._5{width:480.492000px;}
._b8{width:482.625000px;}
._74{width:486.396000px;}
._d3{width:488.911800px;}
._86{width:492.112200px;}
._58{width:493.862400px;}
._cc{width:495.128400px;}
._96{width:496.380600px;}
._48{width:503.118000px;}
._b0{width:505.224000px;}
._c5{width:510.918000px;}
._af{width:511.948800px;}
._5f{width:514.783200px;}
._3b{width:520.106400px;}
._da{width:521.122800px;}
._3c{width:522.363600px;}
._bc{width:524.162400px;}
._31{width:525.733200px;}
._8c{width:527.797200px;}
._73{width:532.860000px;}
._db{width:534.174000px;}
._2d{width:536.986800px;}
._87{width:546.696000px;}
._df{width:550.677600px;}
._35{width:556.416000px;}
._8b{width:558.543000px;}
._e{width:565.171200px;}
._dd{width:569.494200px;}
._55{width:577.087200px;}
._b2{width:585.475200px;}
._a0{width:603.642600px;}
._57{width:604.800000px;}
._8a{width:609.558000px;}
._d1{width:614.346000px;}
._9d{width:617.745600px;}
._cf{width:619.788600px;}
._80{width:626.616000px;}
._cb{width:630.880200px;}
._ab{width:640.224000px;}
._8e{width:641.842800px;}
._e4{width:648.108000px;}
._cd{width:669.915600px;}
._79{width:672.480000px;}
._98{width:674.013600px;}
._b1{width:686.752800px;}
._e5{width:732.105000px;}
._8f{width:736.377000px;}
._e6{width:760.614000px;}
._a1{width:769.272000px;}
._a4{width:775.314000px;}
._b3{width:793.099200px;}
._85{width:806.640000px;}
._b4{width:809.706000px;}
._54{width:835.855200px;}
._b7{width:840.456000px;}
._ce{width:875.364000px;}
._1{width:904.230000px;}
._ba{width:976.380000px;}
._39{width:1038.398400px;}
._72{width:1126.920000px;}
._0{width:1130.004000px;}
._9{width:1139.172000px;}
._b5{width:1241.712000px;}
._19{width:1266.183600px;}
._2{width:1329.534000px;}
._bf{width:1619.392800px;}
.fc3{color:rgb(49,53,73);}
.fc5{color:rgb(0,101,138);}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,29,53);}
.fc0{color:transparent;}
.fs3{font-size:66.000000px;}
.fsa{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs9{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:114.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:132.000000px;}
.fs8{font-size:144.000000px;}
.fs4{font-size:198.000000px;}
.fs0{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:73.986000px;}
.yf{bottom:93.423000px;}
.y4a{bottom:98.464500px;}
.y44{bottom:98.490000px;}
.ye{bottom:112.860000px;}
.y5f{bottom:127.996500px;}
.y69{bottom:128.022000px;}
.y49{bottom:131.581500px;}
.y43{bottom:131.607000px;}
.y33{bottom:138.420000px;}
.y2a{bottom:140.877000px;}
.y1f{bottom:140.904000px;}
.y7{bottom:140.940000px;}
.y72{bottom:141.652500px;}
.y7a{bottom:141.657000px;}
.y51{bottom:141.660000px;}
.y5e{bottom:156.429000px;}
.y68{bottom:156.454500px;}
.y48{bottom:164.698500px;}
.y42{bottom:164.724000px;}
.y5{bottom:174.060000px;}
.y71{bottom:177.658500px;}
.y79{bottom:177.663000px;}
.y29{bottom:178.326000px;}
.y1e{bottom:178.353000px;}
.y32{bottom:180.540000px;}
.y5d{bottom:189.196500px;}
.y67{bottom:189.222000px;}
.yd{bottom:192.423000px;}
.y50{bottom:192.780000px;}
.y47{bottom:196.020000px;}
.y41{bottom:196.045500px;}
.y28{bottom:203.895000px;}
.y1d{bottom:203.922000px;}
.y4{bottom:206.820000px;}
.y70{bottom:212.211000px;}
.y78{bottom:212.215500px;}
.y7f{bottom:220.510500px;}
.y31{bottom:220.860000px;}
.y5c{bottom:220.867500px;}
.y66{bottom:220.893000px;}
.y13{bottom:226.974000px;}
.y46{bottom:229.143000px;}
.y40{bottom:229.162500px;}
.y27{bottom:230.895000px;}
.y1c{bottom:230.922000px;}
.y4f{bottom:242.100000px;}
.y6f{bottom:245.335500px;}
.y77{bottom:245.340000px;}
.y5b{bottom:249.300000px;}
.y65{bottom:249.325500px;}
.y7e{bottom:255.063000px;}
.y26{bottom:262.215000px;}
.y1b{bottom:262.242000px;}
.y45{bottom:262.260000px;}
.y3f{bottom:262.279500px;}
.yc{bottom:262.977000px;}
.y30{bottom:262.980000px;}
.y76{bottom:278.100000px;}
.y6e{bottom:278.103000px;}
.y5a{bottom:279.186000px;}
.y64{bottom:279.211500px;}
.y6{bottom:285.277500px;}
.y7d{bottom:291.069000px;}
.y4e{bottom:291.780000px;}
.y3e{bottom:293.601000px;}
.y25{bottom:299.664000px;}
.y1a{bottom:299.691000px;}
.y63{bottom:308.001000px;}
.y12{bottom:310.860000px;}
.y75{bottom:311.220000px;}
.y6d{bottom:311.227500px;}
.y2f{bottom:318.420000px;}
.y24{bottom:325.233000px;}
.y19{bottom:325.260000px;}
.y7c{bottom:325.621500px;}
.y3d{bottom:326.718000px;}
.y59{bottom:337.861500px;}
.y62{bottom:337.887000px;}
.y4d{bottom:341.100000px;}
.y6c{bottom:345.780000px;}
.yb{bottom:346.863000px;}
.y23{bottom:352.233000px;}
.y18{bottom:352.260000px;}
.y3{bottom:358.717500px;}
.y3c{bottom:359.464500px;}
.y7b{bottom:360.174000px;}
.y2e{bottom:360.540000px;}
.y61{bottom:366.319500px;}
.y22{bottom:377.802000px;}
.y17{bottom:377.829000px;}
.y74{bottom:378.900000px;}
.y6b{bottom:378.904500px;}
.ya{bottom:382.866000px;}
.y4c{bottom:390.780000px;}
.y3b{bottom:391.156500px;}
.y58{bottom:394.752000px;}
.y36{bottom:396.180000px;}
.y2d{bottom:402.300000px;}
.y21{bottom:403.371000px;}
.y6a{bottom:413.100000px;}
.y9{bottom:417.417000px;}
.y3a{bottom:424.273500px;}
.y57{bottom:424.995000px;}
.y16{bottom:428.940000px;}
.y2{bottom:432.157500px;}
.y35{bottom:438.300000px;}
.y4b{bottom:440.100000px;}
.y8{bottom:453.420000px;}
.y56{bottom:453.427500px;}
.y39{bottom:457.020000px;}
.y2c{bottom:460.980000px;}
.y15{bottom:461.691000px;}
.y34{bottom:478.620000px;}
.y55{bottom:481.860000px;}
.y14{bottom:487.260000px;}
.y1{bottom:504.180000px;}
.y54{bottom:516.420000px;}
.y11{bottom:521.820000px;}
.y80{bottom:522.540000px;}
.y53{bottom:523.260000px;}
.y73{bottom:524.340000px;}
.y2b{bottom:526.140000px;}
.y52{bottom:526.860000px;}
.y60{bottom:531.180000px;}
.y38{bottom:537.300000px;}
.y37{bottom:544.140000px;}
.y20{bottom:565.380000px;}
.h4{height:48.049805px;}
.h6{height:74.830078px;}
.he{height:79.737305px;}
.h2{height:82.031250px;}
.hf{height:82.441406px;}
.h9{height:82.995117px;}
.h8{height:87.421875px;}
.ha{height:88.330078px;}
.h3{height:91.458984px;}
.hb{height:104.835938px;}
.h7{height:105.996094px;}
.h5{height:135.351562px;}
.hd{height:141.328125px;}
.hc{height:141.732422px;}
.h1{height:184.570312px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x14{left:21.599400px;}
.x57{left:24.599400px;}
.x3d{left:28.724400px;}
.x45{left:30.599400px;}
.x15{left:32.093400px;}
.x56{left:39.918300px;}
.x3c{left:42.200850px;}
.x2c{left:45.124050px;}
.x2d{left:57.124050px;}
.x22{left:59.102400px;}
.x3e{left:62.097900px;}
.x31{left:66.773550px;}
.x23{left:69.632400px;}
.x18{left:73.170300px;}
.x16{left:75.587400px;}
.x58{left:78.599400px;}
.x13{left:82.349400px;}
.x32{left:86.970450px;}
.x3f{left:102.597900px;}
.x21{left:104.139300px;}
.x42{left:105.569400px;}
.xf{left:107.463600px;}
.x19{left:110.673300px;}
.x51{left:114.598800px;}
.x36{left:115.907850px;}
.xd{left:117.396600px;}
.x20{left:119.853300px;}
.x39{left:122.291850px;}
.x1b{left:123.984300px;}
.x1f{left:125.631300px;}
.x33{left:128.970450px;}
.x50{left:130.217400px;}
.x59{left:132.599400px;}
.x5a{left:138.775350px;}
.x4c{left:140.338500px;}
.x47{left:144.597000px;}
.x48{left:148.728000px;}
.x2e{left:153.124050px;}
.x52{left:154.353300px;}
.x4f{left:158.902500px;}
.x1d{left:162.432300px;}
.x41{left:163.709400px;}
.x6{left:164.740200px;}
.x8{left:167.507700px;}
.x53{left:168.582300px;}
.xa{left:170.718750px;}
.x2a{left:175.849050px;}
.x1a{left:179.280300px;}
.x4d{left:192.843000px;}
.x37{left:197.104350px;}
.x1c{left:199.935300px;}
.x54{left:202.548300px;}
.x38{left:205.340850px;}
.x1e{left:207.981300px;}
.x24{left:212.139450px;}
.x28{left:215.959050px;}
.x55{left:218.307300px;}
.x3a{left:221.642850px;}
.x26{left:224.749050px;}
.x43{left:225.773400px;}
.x29{left:235.819050px;}
.x35{left:236.975850px;}
.x7{left:238.180200px;}
.x3b{left:247.520850px;}
.x30{left:248.979450px;}
.x27{left:256.249050px;}
.x2b{left:263.209050px;}
.x40{left:265.913400px;}
.x2f{left:272.589450px;}
.x4e{left:279.466500px;}
.x46{left:283.611750px;}
.x34{left:286.856850px;}
.x25{left:293.929050px;}
.x4a{left:298.005000px;}
.xb{left:321.918750px;}
.x44{left:338.093400px;}
.x49{left:360.250500px;}
.x9{left:384.047700px;}
.x1{left:386.180700px;}
.xe{left:405.387600px;}
.x4b{left:411.633000px;}
.x4{left:421.971750px;}
.xc{left:440.328750px;}
.x2{left:504.238200px;}
.x3{left:508.153200px;}
.x5{left:646.881750px;}
.x17{left:707.970450px;}
.x12{left:753.924600px;}
.x10{left:764.781600px;}
.x11{left:773.972100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.316800pt;}
.ls18{letter-spacing:-0.307200pt;}
.ls1{letter-spacing:-0.269867pt;}
.ls22{letter-spacing:-0.253333pt;}
.lsd{letter-spacing:-0.249600pt;}
.ls24{letter-spacing:-0.246400pt;}
.ls2{letter-spacing:-0.199467pt;}
.ls27{letter-spacing:-0.190400pt;}
.ls11{letter-spacing:-0.172800pt;}
.ls12{letter-spacing:-0.163200pt;}
.ls3{letter-spacing:-0.152533pt;}
.ls25{letter-spacing:-0.126933pt;}
.lse{letter-spacing:-0.124800pt;}
.ls10{letter-spacing:-0.105600pt;}
.ls15{letter-spacing:-0.086400pt;}
.ls13{letter-spacing:-0.076800pt;}
.lsf{letter-spacing:-0.067200pt;}
.ls19{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.035200pt;}
.ls14{letter-spacing:0.057600pt;}
.ls1a{letter-spacing:0.067200pt;}
.lsc{letter-spacing:0.086400pt;}
.ls1b{letter-spacing:0.088000pt;}
.ls16{letter-spacing:0.134400pt;}
.ls6{letter-spacing:0.140800pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.172267pt;}
.ls5{letter-spacing:0.187733pt;}
.lsa{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.193600pt;}
.ls29{letter-spacing:0.253867pt;}
.ls17{letter-spacing:0.268800pt;}
.ls4{letter-spacing:0.281600pt;}
.lsb{letter-spacing:27.744000pt;}
.ls1e{letter-spacing:40.128000pt;}
.ls1f{letter-spacing:40.480000pt;}
.ls23{letter-spacing:51.200000pt;}
.ls28{letter-spacing:88.533333pt;}
.ls9{letter-spacing:186.816000pt;}
.ls8{letter-spacing:456.288000pt;}
.ls7{letter-spacing:616.128000pt;}
.ws1{word-spacing:-26.517333pt;}
.ws3{word-spacing:-0.163200pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.211200pt;}
._b9{margin-left:-1378.616000pt;}
._e7{margin-left:-646.920000pt;}
._6c{margin-left:-2.544000pt;}
._b{margin-left:-0.912000pt;}
._a{width:1.152000pt;}
._a8{width:29.285333pt;}
._28{width:32.354667pt;}
._5d{width:46.444800pt;}
._53{width:48.652800pt;}
._c2{width:50.421333pt;}
._7a{width:55.253333pt;}
._22{width:58.355733pt;}
._3d{width:59.644800pt;}
._d7{width:61.925333pt;}
._2b{width:69.696000pt;}
._23{width:71.021867pt;}
._94{width:73.850133pt;}
._c0{width:75.425067pt;}
._c4{width:76.428800pt;}
._40{width:79.651200pt;}
._26{width:81.018667pt;}
._4d{width:83.750400pt;}
._97{width:85.150400pt;}
._c7{width:86.124267pt;}
._84{width:87.886400pt;}
._71{width:88.817600pt;}
._93{width:90.490667pt;}
._63{width:94.310400pt;}
._4e{width:97.094400pt;}
._17{width:98.149333pt;}
._a9{width:99.750400pt;}
._15{width:101.481600pt;}
._c8{width:106.125333pt;}
._83{width:107.018667pt;}
._16{width:109.495467pt;}
._68{width:113.788800pt;}
._f{width:114.939733pt;}
._7d{width:118.336000pt;}
._49{width:119.692800pt;}
._6{width:121.104000pt;}
._46{width:122.553600pt;}
._1a{width:123.481600pt;}
._bd{width:126.788267pt;}
._38{width:130.972800pt;}
._d9{width:132.062933pt;}
._24{width:133.689600pt;}
._a2{width:134.986133pt;}
._2a{width:137.021867pt;}
._a3{width:141.305067pt;}
._4b{width:142.454400pt;}
._66{width:144.979200pt;}
._1f{width:146.349867pt;}
._32{width:147.859200pt;}
._aa{width:149.192533pt;}
._be{width:152.423467pt;}
._78{width:153.685333pt;}
._2f{width:155.452800pt;}
._d4{width:161.459200pt;}
._a5{width:163.156800pt;}
._d8{width:166.040533pt;}
._59{width:167.644800pt;}
._56{width:170.380800pt;}
._5c{width:172.320000pt;}
._41{width:175.641600pt;}
._67{width:177.062400pt;}
._1b{width:178.816000pt;}
._11{width:183.638400pt;}
._50{width:186.585600pt;}
._44{width:188.313600pt;}
._77{width:189.674667pt;}
._99{width:192.492800pt;}
._21{width:195.013867pt;}
._1d{width:198.152533pt;}
._34{width:200.371200pt;}
._33{width:201.806933pt;}
._dc{width:202.785067pt;}
._6f{width:207.605333pt;}
._d{width:211.704533pt;}
._12{width:212.807467pt;}
._ae{width:213.747200pt;}
._64{width:215.692800pt;}
._d5{width:217.454933pt;}
._2c{width:221.376000pt;}
._65{width:222.471467pt;}
._6d{width:225.661333pt;}
._18{width:226.817067pt;}
._13{width:228.823467pt;}
._89{width:230.209067pt;}
._7c{width:231.238933pt;}
._a7{width:232.561600pt;}
._4a{width:233.856000pt;}
._7e{width:236.956267pt;}
._a6{width:241.713067pt;}
._c3{width:243.034133pt;}
._10{width:245.836800pt;}
._20{width:247.684800pt;}
._8d{width:249.158400pt;}
._3e{width:252.187200pt;}
._5e{width:255.686400pt;}
._c6{width:258.566933pt;}
._6e{width:259.682133pt;}
._2e{width:261.470933pt;}
._d0{width:262.485333pt;}
._14{width:264.152533pt;}
._51{width:265.401600pt;}
._70{width:266.325333pt;}
._42{width:267.619200pt;}
._43{width:270.316800pt;}
._e3{width:272.938133pt;}
._7{width:276.554667pt;}
._d2{width:278.120000pt;}
._3f{width:280.310400pt;}
._bb{width:282.789333pt;}
._3{width:283.776000pt;}
._5b{width:286.982400pt;}
._9c{width:287.898133pt;}
._9b{width:293.236800pt;}
._6b{width:294.307200pt;}
._9a{width:299.156267pt;}
._60{width:304.454400pt;}
._c1{width:307.748267pt;}
._82{width:313.049067pt;}
._90{width:316.585600pt;}
._29{width:319.000000pt;}
._7b{width:320.353600pt;}
._4c{width:321.753600pt;}
._47{width:323.040000pt;}
._36{width:324.316800pt;}
._69{width:327.456000pt;}
._c{width:328.979200pt;}
._1e{width:331.466667pt;}
._e0{width:333.190933pt;}
._30{width:334.502400pt;}
._62{width:336.938667pt;}
._ca{width:343.485867pt;}
._92{width:344.492800pt;}
._3a{width:345.648000pt;}
._ad{width:348.292267pt;}
._81{width:349.653333pt;}
._6a{width:352.934400pt;}
._de{width:354.116800pt;}
._7f{width:355.053333pt;}
._9f{width:356.424000pt;}
._e1{width:359.448000pt;}
._95{width:360.956267pt;}
._52{width:363.062400pt;}
._c9{width:364.117333pt;}
._e2{width:369.448533pt;}
._8{width:371.221333pt;}
._75{width:373.706667pt;}
._ac{width:376.422400pt;}
._27{width:382.389333pt;}
._76{width:384.213333pt;}
._45{width:386.304000pt;}
._91{width:390.061867pt;}
._b6{width:391.744000pt;}
._37{width:392.985600pt;}
._9e{width:396.559467pt;}
._25{width:397.701333pt;}
._4f{width:402.556800pt;}
._5a{width:404.976000pt;}
._88{width:405.895467pt;}
._1c{width:412.168533pt;}
._61{width:414.278400pt;}
._d6{width:419.451200pt;}
._4{width:424.440000pt;}
._5{width:427.104000pt;}
._b8{width:429.000000pt;}
._74{width:432.352000pt;}
._d3{width:434.588267pt;}
._86{width:437.433067pt;}
._58{width:438.988800pt;}
._cc{width:440.114133pt;}
._96{width:441.227200pt;}
._48{width:447.216000pt;}
._b0{width:449.088000pt;}
._c5{width:454.149333pt;}
._af{width:455.065600pt;}
._5f{width:457.585067pt;}
._3b{width:462.316800pt;}
._da{width:463.220267pt;}
._3c{width:464.323200pt;}
._bc{width:465.922133pt;}
._31{width:467.318400pt;}
._8c{width:469.153067pt;}
._73{width:473.653333pt;}
._db{width:474.821333pt;}
._2d{width:477.321600pt;}
._87{width:485.952000pt;}
._df{width:489.491200pt;}
._35{width:494.592000pt;}
._8b{width:496.482667pt;}
._e{width:502.374400pt;}
._dd{width:506.217067pt;}
._55{width:512.966400pt;}
._b2{width:520.422400pt;}
._a0{width:536.571200pt;}
._57{width:537.600000pt;}
._8a{width:541.829333pt;}
._d1{width:546.085333pt;}
._9d{width:549.107200pt;}
._cf{width:550.923200pt;}
._80{width:556.992000pt;}
._cb{width:560.782400pt;}
._ab{width:569.088000pt;}
._8e{width:570.526933pt;}
._e4{width:576.096000pt;}
._cd{width:595.480533pt;}
._79{width:597.760000pt;}
._98{width:599.123200pt;}
._b1{width:610.446933pt;}
._e5{width:650.760000pt;}
._8f{width:654.557333pt;}
._e6{width:676.101333pt;}
._a1{width:683.797333pt;}
._a4{width:689.168000pt;}
._b3{width:704.977067pt;}
._85{width:717.013333pt;}
._b4{width:719.738667pt;}
._54{width:742.982400pt;}
._b7{width:747.072000pt;}
._ce{width:778.101333pt;}
._1{width:803.760000pt;}
._ba{width:867.893333pt;}
._39{width:923.020800pt;}
._72{width:1001.706667pt;}
._0{width:1004.448000pt;}
._9{width:1012.597333pt;}
._b5{width:1103.744000pt;}
._19{width:1125.496533pt;}
._2{width:1181.808000pt;}
._bf{width:1439.460267pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs9{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:101.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:117.333333pt;}
.fs8{font-size:128.000000pt;}
.fs4{font-size:176.000000pt;}
.fs0{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:65.765333pt;}
.yf{bottom:83.042667pt;}
.y4a{bottom:87.524000pt;}
.y44{bottom:87.546667pt;}
.ye{bottom:100.320000pt;}
.y5f{bottom:113.774667pt;}
.y69{bottom:113.797333pt;}
.y49{bottom:116.961333pt;}
.y43{bottom:116.984000pt;}
.y33{bottom:123.040000pt;}
.y2a{bottom:125.224000pt;}
.y1f{bottom:125.248000pt;}
.y7{bottom:125.280000pt;}
.y72{bottom:125.913333pt;}
.y7a{bottom:125.917333pt;}
.y51{bottom:125.920000pt;}
.y5e{bottom:139.048000pt;}
.y68{bottom:139.070667pt;}
.y48{bottom:146.398667pt;}
.y42{bottom:146.421333pt;}
.y5{bottom:154.720000pt;}
.y71{bottom:157.918667pt;}
.y79{bottom:157.922667pt;}
.y29{bottom:158.512000pt;}
.y1e{bottom:158.536000pt;}
.y32{bottom:160.480000pt;}
.y5d{bottom:168.174667pt;}
.y67{bottom:168.197333pt;}
.yd{bottom:171.042667pt;}
.y50{bottom:171.360000pt;}
.y47{bottom:174.240000pt;}
.y41{bottom:174.262667pt;}
.y28{bottom:181.240000pt;}
.y1d{bottom:181.264000pt;}
.y4{bottom:183.840000pt;}
.y70{bottom:188.632000pt;}
.y78{bottom:188.636000pt;}
.y7f{bottom:196.009333pt;}
.y31{bottom:196.320000pt;}
.y5c{bottom:196.326667pt;}
.y66{bottom:196.349333pt;}
.y13{bottom:201.754667pt;}
.y46{bottom:203.682667pt;}
.y40{bottom:203.700000pt;}
.y27{bottom:205.240000pt;}
.y1c{bottom:205.264000pt;}
.y4f{bottom:215.200000pt;}
.y6f{bottom:218.076000pt;}
.y77{bottom:218.080000pt;}
.y5b{bottom:221.600000pt;}
.y65{bottom:221.622667pt;}
.y7e{bottom:226.722667pt;}
.y26{bottom:233.080000pt;}
.y1b{bottom:233.104000pt;}
.y45{bottom:233.120000pt;}
.y3f{bottom:233.137333pt;}
.yc{bottom:233.757333pt;}
.y30{bottom:233.760000pt;}
.y76{bottom:247.200000pt;}
.y6e{bottom:247.202667pt;}
.y5a{bottom:248.165333pt;}
.y64{bottom:248.188000pt;}
.y6{bottom:253.580000pt;}
.y7d{bottom:258.728000pt;}
.y4e{bottom:259.360000pt;}
.y3e{bottom:260.978667pt;}
.y25{bottom:266.368000pt;}
.y1a{bottom:266.392000pt;}
.y63{bottom:273.778667pt;}
.y12{bottom:276.320000pt;}
.y75{bottom:276.640000pt;}
.y6d{bottom:276.646667pt;}
.y2f{bottom:283.040000pt;}
.y24{bottom:289.096000pt;}
.y19{bottom:289.120000pt;}
.y7c{bottom:289.441333pt;}
.y3d{bottom:290.416000pt;}
.y59{bottom:300.321333pt;}
.y62{bottom:300.344000pt;}
.y4d{bottom:303.200000pt;}
.y6c{bottom:307.360000pt;}
.yb{bottom:308.322667pt;}
.y23{bottom:313.096000pt;}
.y18{bottom:313.120000pt;}
.y3{bottom:318.860000pt;}
.y3c{bottom:319.524000pt;}
.y7b{bottom:320.154667pt;}
.y2e{bottom:320.480000pt;}
.y61{bottom:325.617333pt;}
.y22{bottom:335.824000pt;}
.y17{bottom:335.848000pt;}
.y74{bottom:336.800000pt;}
.y6b{bottom:336.804000pt;}
.ya{bottom:340.325333pt;}
.y4c{bottom:347.360000pt;}
.y3b{bottom:347.694667pt;}
.y58{bottom:350.890667pt;}
.y36{bottom:352.160000pt;}
.y2d{bottom:357.600000pt;}
.y21{bottom:358.552000pt;}
.y6a{bottom:367.200000pt;}
.y9{bottom:371.037333pt;}
.y3a{bottom:377.132000pt;}
.y57{bottom:377.773333pt;}
.y16{bottom:381.280000pt;}
.y2{bottom:384.140000pt;}
.y35{bottom:389.600000pt;}
.y4b{bottom:391.200000pt;}
.y8{bottom:403.040000pt;}
.y56{bottom:403.046667pt;}
.y39{bottom:406.240000pt;}
.y2c{bottom:409.760000pt;}
.y15{bottom:410.392000pt;}
.y34{bottom:425.440000pt;}
.y55{bottom:428.320000pt;}
.y14{bottom:433.120000pt;}
.y1{bottom:448.160000pt;}
.y54{bottom:459.040000pt;}
.y11{bottom:463.840000pt;}
.y80{bottom:464.480000pt;}
.y53{bottom:465.120000pt;}
.y73{bottom:466.080000pt;}
.y2b{bottom:467.680000pt;}
.y52{bottom:468.320000pt;}
.y60{bottom:472.160000pt;}
.y38{bottom:477.600000pt;}
.y37{bottom:483.680000pt;}
.y20{bottom:502.560000pt;}
.h4{height:42.710938pt;}
.h6{height:66.515625pt;}
.he{height:70.877604pt;}
.h2{height:72.916667pt;}
.hf{height:73.281250pt;}
.h9{height:73.773438pt;}
.h8{height:77.708333pt;}
.ha{height:78.515625pt;}
.h3{height:81.296875pt;}
.hb{height:93.187500pt;}
.h7{height:94.218750pt;}
.h5{height:120.312500pt;}
.hd{height:125.625000pt;}
.hc{height:125.984375pt;}
.h1{height:164.062500pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x14{left:19.199467pt;}
.x57{left:21.866133pt;}
.x3d{left:25.532800pt;}
.x45{left:27.199467pt;}
.x15{left:28.527467pt;}
.x56{left:35.482933pt;}
.x3c{left:37.511867pt;}
.x2c{left:40.110267pt;}
.x2d{left:50.776933pt;}
.x22{left:52.535467pt;}
.x3e{left:55.198133pt;}
.x31{left:59.354267pt;}
.x23{left:61.895467pt;}
.x18{left:65.040267pt;}
.x16{left:67.188800pt;}
.x58{left:69.866133pt;}
.x13{left:73.199467pt;}
.x32{left:77.307067pt;}
.x3f{left:91.198133pt;}
.x21{left:92.568267pt;}
.x42{left:93.839467pt;}
.xf{left:95.523200pt;}
.x19{left:98.376267pt;}
.x51{left:101.865600pt;}
.x36{left:103.029200pt;}
.xd{left:104.352533pt;}
.x20{left:106.536267pt;}
.x39{left:108.703867pt;}
.x1b{left:110.208267pt;}
.x1f{left:111.672267pt;}
.x33{left:114.640400pt;}
.x50{left:115.748800pt;}
.x59{left:117.866133pt;}
.x5a{left:123.355867pt;}
.x4c{left:124.745333pt;}
.x47{left:128.530667pt;}
.x48{left:132.202667pt;}
.x2e{left:136.110267pt;}
.x52{left:137.202933pt;}
.x4f{left:141.246667pt;}
.x1d{left:144.384267pt;}
.x41{left:145.519467pt;}
.x6{left:146.435733pt;}
.x8{left:148.895733pt;}
.x53{left:149.850933pt;}
.xa{left:151.750000pt;}
.x2a{left:156.310267pt;}
.x1a{left:159.360267pt;}
.x4d{left:171.416000pt;}
.x37{left:175.203867pt;}
.x1c{left:177.720267pt;}
.x54{left:180.042933pt;}
.x38{left:182.525200pt;}
.x1e{left:184.872267pt;}
.x24{left:188.568400pt;}
.x28{left:191.963600pt;}
.x55{left:194.050933pt;}
.x3a{left:197.015867pt;}
.x26{left:199.776933pt;}
.x43{left:200.687467pt;}
.x29{left:209.616933pt;}
.x35{left:210.645200pt;}
.x7{left:211.715733pt;}
.x3b{left:220.018533pt;}
.x30{left:221.315067pt;}
.x27{left:227.776933pt;}
.x2b{left:233.963600pt;}
.x40{left:236.367467pt;}
.x2f{left:242.301733pt;}
.x4e{left:248.414667pt;}
.x46{left:252.099333pt;}
.x34{left:254.983867pt;}
.x25{left:261.270267pt;}
.x4a{left:264.893333pt;}
.xb{left:286.150000pt;}
.x44{left:300.527467pt;}
.x49{left:320.222667pt;}
.x9{left:341.375733pt;}
.x1{left:343.271733pt;}
.xe{left:360.344533pt;}
.x4b{left:365.896000pt;}
.x4{left:375.086000pt;}
.xc{left:391.403333pt;}
.x2{left:448.211733pt;}
.x3{left:451.691733pt;}
.x5{left:575.006000pt;}
.x17{left:629.307067pt;}
.x12{left:670.155200pt;}
.x10{left:679.805867pt;}
.x11{left:687.975200pt;}
}




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