
    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_c417d3cb692a5cd1c6735b10.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_ae80163507831f55c4ad2c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851074;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_1eddb4adb8b980c1218d40e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_224aa5b260ecc079d822cb1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_97ef0e91cdac6bc9c166c849.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083496;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_03829a3e089a1913814a5fe6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_8e7cfa42c67b50db6c9756fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919922;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_2e83962c36a90e00b75605c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_ce565f6e26e0e233a111d7bd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_26e8ec8936a8f6d8ba838615.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873535;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_cc425741f05d511718d280fd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2d18b5710e6ad800660733bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675293;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_ffb50e4dfa9538a061adb8d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.842773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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);}
.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);}
.v6{vertical-align:-62.639975px;}
.v5{vertical-align:-8.639997px;}
.v8{vertical-align:-5.039998px;}
.v1{vertical-align:-2.879999px;}
.v4{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.519995px;}
.v2{vertical-align:48.239981px;}
.v3{vertical-align:56.159978px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.026719px;}
.ls5{letter-spacing:26.783989px;}
.ls2{letter-spacing:33.839986px;}
.ls4{letter-spacing:37.367985px;}
.ls8{letter-spacing:40.643984px;}
.ls3{letter-spacing:42.839983px;}
.lsf{letter-spacing:44.171982px;}
.ls11{letter-spacing:47.699981px;}
.ls10{letter-spacing:50.507980px;}
.ls12{letter-spacing:53.783978px;}
.ls14{letter-spacing:62.963975px;}
.ls7{letter-spacing:69.443972px;}
.lsa{letter-spacing:76.564769px;}
.lse{letter-spacing:80.351968px;}
.ls1{letter-spacing:88.099165px;}
.lsb{letter-spacing:89.527644px;}
.ls9{letter-spacing:92.339963px;}
.lsd{letter-spacing:110.113876px;}
.ls13{letter-spacing:112.687155px;}
.lsc{letter-spacing:113.304915px;}
.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;}
}
.ws1b{word-spacing:-46.798541px;}
.ws1{word-spacing:-42.104863px;}
.wse{word-spacing:-40.193984px;}
.wsd{word-spacing:-36.247666px;}
.ws8{word-spacing:-32.155187px;}
.ws16{word-spacing:-31.404947px;}
.wsc{word-spacing:-30.108948px;}
.ws2{word-spacing:-28.208869px;}
.ws17{word-spacing:-26.848789px;}
.wsa{word-spacing:-26.694709px;}
.ws1a{word-spacing:-26.162630px;}
.ws11{word-spacing:-24.116390px;}
.ws1c{word-spacing:-22.455351px;}
.ws10{word-spacing:-22.319991px;}
.wsf{word-spacing:-22.017591px;}
.ws12{word-spacing:-20.170072px;}
.ws19{word-spacing:-19.215352px;}
.ws6{word-spacing:-18.123833px;}
.ws13{word-spacing:-16.077594px;}
.ws5{word-spacing:-14.031354px;}
.ws4{word-spacing:-12.131275px;}
.ws3{word-spacing:-11.108156px;}
.ws14{word-spacing:-1.521764px;}
.ws15{word-spacing:-0.853961px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:1.114076px;}
.ws1d{word-spacing:633.503538px;}
.wsb{word-spacing:646.149971px;}
.ws9{word-spacing:1260.339898px;}
.ws7{word-spacing:1825.382438px;}
._f{margin-left:-2095.504442px;}
._e{margin-left:-1698.254726px;}
._13{margin-left:-1386.918165px;}
._12{margin-left:-883.423286px;}
._20{margin-left:-839.809861px;}
._15{margin-left:-792.823363px;}
._17{margin-left:-617.023392px;}
._16{margin-left:-526.423469px;}
._10{margin-left:-320.598592px;}
._11{margin-left:-319.158592px;}
._9{margin-left:-16.917646px;}
._18{margin-left:-15.239176px;}
._c{margin-left:-13.962495px;}
._1e{margin-left:-12.194297px;}
._a{margin-left:-10.086677px;}
._1a{margin-left:-8.413641px;}
._2{margin-left:-6.772948px;}
._d{margin-left:-5.403187px;}
._5{margin-left:-4.357426px;}
._1{margin-left:-3.309073px;}
._8{margin-left:-2.138196px;}
._0{margin-left:-1.116212px;}
._3{width:1.098989px;}
._4{width:2.527032px;}
._b{width:3.560082px;}
._22{width:21.196044px;}
._14{width:23.599721px;}
._1b{width:40.780239px;}
._1c{width:79.482591px;}
._1f{width:104.956562px;}
._21{width:656.470943px;}
._6{width:1015.100845px;}
._1d{width:1405.983767px;}
._19{width:1652.766345px;}
._7{width:1788.750004px;}
.fc9{color:rgb(54,39,123);}
.fc8{color:rgb(23,22,22);}
.fc7{color:rgb(160,89,159);}
.fc6{color:rgb(0,112,192);}
.fc5{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,32,96);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.719978px;}
.fs5{font-size:59.759976px;}
.fs6{font-size:69.119972px;}
.fsa{font-size:79.199968px;}
.fs7{font-size:89.279964px;}
.fsd{font-size:99.359960px;}
.fsf{font-size:103.679959px;}
.fs11{font-size:108.719957px;}
.fs1{font-size:118.799952px;}
.fse{font-size:123.839950px;}
.fs10{font-size:128.879948px;}
.fs3{font-size:138.959944px;}
.fsb{font-size:148.319941px;}
.fs9{font-size:158.399937px;}
.fs8{font-size:178.559929px;}
.fsc{font-size:197.999921px;}
.fs2{font-size:218.159913px;}
.fs0{font-size:267.119893px;}
.y0{bottom:0.000000px;}
.yfa{bottom:6.120315px;}
.ybb{bottom:9.180314px;}
.yba{bottom:124.740000px;}
.y2a{bottom:132.660314px;}
.y96{bottom:132.840314px;}
.y95{bottom:133.920314px;}
.y38{bottom:137.160312px;}
.y114{bottom:139.680311px;}
.y75{bottom:141.120311px;}
.ycc{bottom:141.660311px;}
.y77{bottom:142.020310px;}
.yec{bottom:142.380310px;}
.y124{bottom:142.560310px;}
.y3d{bottom:143.460310px;}
.yad{bottom:145.800309px;}
.yb9{bottom:147.240308px;}
.y14{bottom:148.500308px;}
.ybd{bottom:149.220308px;}
.y34{bottom:151.920306px;}
.y140{bottom:152.100306px;}
.ydd{bottom:152.280306px;}
.yee{bottom:153.360306px;}
.y54{bottom:156.780304px;}
.y28{bottom:157.680304px;}
.y29{bottom:159.480303px;}
.y37{bottom:163.440302px;}
.yef{bottom:163.980302px;}
.ycb{bottom:165.420301px;}
.y32{bottom:166.500301px;}
.y3c{bottom:167.220300px;}
.y74{bottom:167.940300px;}
.y76{bottom:168.840300px;}
.y94{bottom:169.020300px;}
.y123{bottom:169.380299px;}
.y93{bottom:170.100299px;}
.y2b{bottom:171.900298px;}
.yac{bottom:172.440298px;}
.y113{bottom:175.320297px;}
.y10{bottom:175.680297px;}
.y36{bottom:176.220297px;}
.y33{bottom:178.200296px;}
.yeb{bottom:181.980294px;}
.y97{bottom:183.420294px;}
.yb8{bottom:187.380292px;}
.y154{bottom:189.360291px;}
.y27{bottom:189.900291px;}
.yb7{bottom:190.620291px;}
.y3b{bottom:190.980291px;}
.yed{bottom:192.960290px;}
.y13f{bottom:193.680290px;}
.y122{bottom:196.020289px;}
.y12{bottom:198.360288px;}
.yab{bottom:199.260287px;}
.ya5{bottom:200.160287px;}
.yf9{bottom:202.140286px;}
.y35{bottom:202.500286px;}
.y71{bottom:203.580286px;}
.y13{bottom:204.840285px;}
.y92{bottom:205.200285px;}
.y91{bottom:206.280285px;}
.y15{bottom:206.460285px;}
.y112{bottom:210.960283px;}
.y3a{bottom:214.740281px;}
.yf{bottom:217.260280px;}
.y153{bottom:219.060280px;}
.y8{bottom:219.780279px;}
.yc1{bottom:221.220279px;}
.y121{bottom:222.840278px;}
.y12e{bottom:225.360277px;}
.y52{bottom:225.540277px;}
.y72{bottom:225.720277px;}
.y47{bottom:225.900277px;}
.y70{bottom:227.520276px;}
.y13e{bottom:235.980273px;}
.yf8{bottom:237.780272px;}
.y90{bottom:241.380271px;}
.y16{bottom:241.560271px;}
.y22{bottom:242.100270px;}
.y8f{bottom:242.460270px;}
.y9f{bottom:244.800269px;}
.ya7{bottom:246.600269px;}
.y73{bottom:249.120268px;}
.y120{bottom:249.480267px;}
.y6f{bottom:250.380267px;}
.y12d{bottom:251.460267px;}
.yaa{bottom:252.720266px;}
.y11{bottom:254.160266px;}
.y46{bottom:257.040264px;}
.y135{bottom:257.760264px;}
.ye{bottom:258.840264px;}
.yea{bottom:259.740263px;}
.y7{bottom:261.360263px;}
.y1e{bottom:262.980262px;}
.y144{bottom:264.420261px;}
.yb5{bottom:271.080259px;}
.y51{bottom:273.600258px;}
.y11f{bottom:276.300257px;}
.y8e{bottom:277.380256px;}
.y10a{bottom:278.100256px;}
.y8d{bottom:278.460256px;}
.yd7{bottom:281.160255px;}
.y102{bottom:281.880254px;}
.y1d{bottom:283.680254px;}
.y6e{bottom:284.580253px;}
.y12c{bottom:284.940253px;}
.y6b{bottom:286.020253px;}
.y45{bottom:288.180252px;}
.y13d{bottom:289.980251px;}
.y134{bottom:295.200249px;}
.y6c{bottom:297.000248px;}
.yf7{bottom:298.620248px;}
.y18{bottom:299.340247px;}
.yd{bottom:300.420247px;}
.yce{bottom:301.140247px;}
.y109{bottom:302.580246px;}
.y6{bottom:302.940246px;}
.y1c{bottom:304.560245px;}
.y4{bottom:305.100245px;}
.ybf{bottom:306.000245px;}
.y9e{bottom:306.360245px;}
.y152{bottom:308.160244px;}
.yb4{bottom:308.520244px;}
.y6a{bottom:309.780243px;}
.y6d{bottom:311.400243px;}
.ye9{bottom:313.020242px;}
.y25{bottom:313.560242px;}
.y8c{bottom:314.640241px;}
.y13c{bottom:318.060240px;}
.y53{bottom:318.420240px;}
.yd6{bottom:318.600240px;}
.y17{bottom:318.780240px;}
.y44{bottom:319.320239px;}
.y19{bottom:319.680239px;}
.yc0{bottom:323.280238px;}
.y108{bottom:323.460238px;}
.y1b{bottom:325.260237px;}
.y12b{bottom:327.060236px;}
.y3{bottom:333.540234px;}
.y50{bottom:334.080234px;}
.ya6{bottom:336.960232px;}
.ya2{bottom:337.140232px;}
.yc{bottom:342.000230px;}
.ye8{bottom:345.240229px;}
.y107{bottom:346.500229px;}
.y69{bottom:347.040228px;}
.y8b{bottom:349.740227px;}
.y43{bottom:350.640227px;}
.y8a{bottom:350.820227px;}
.y13b{bottom:354.240226px;}
.yb3{bottom:358.200224px;}
.y67{bottom:359.280223px;}
.y66{bottom:360.180223px;}
.y158{bottom:362.340222px;}
.y151{bottom:367.560220px;}
.y9d{bottom:367.740220px;}
.yd5{bottom:368.280220px;}
.y101{bottom:369.180220px;}
.yf6{bottom:369.900219px;}
.y68{bottom:373.860218px;}
.yc7{bottom:374.760217px;}
.yf0{bottom:375.120217px;}
.y133{bottom:376.020217px;}
.ye7{bottom:377.280216px;}
.y13a{bottom:381.240215px;}
.ydc{bottom:384.660213px;}
.y89{bottom:385.920213px;}
.y88{bottom:387.000212px;}
.y15f{bottom:389.700211px;}
.y12a{bottom:392.760210px;}
.y2{bottom:393.480210px;}
.y42{bottom:394.200210px;}
.y4f{bottom:394.560209px;}
.y150{bottom:397.260208px;}
.yc6{bottom:398.520208px;}
.y24{bottom:399.780207px;}
.ybe{bottom:400.320207px;}
.yd4{bottom:405.720205px;}
.y4b{bottom:406.440205px;}
.yb2{bottom:408.060204px;}
.y65{bottom:409.320203px;}
.y2c{bottom:411.840202px;}
.y157{bottom:412.200202px;}
.ye6{bottom:416.700201px;}
.y100{bottom:418.860200px;}
.y63{bottom:421.740199px;}
.ydb{bottom:422.100198px;}
.y62{bottom:422.640198px;}
.y86{bottom:422.820198px;}
.yc2{bottom:425.700197px;}
.y132{bottom:425.880197px;}
.y9c{bottom:429.120196px;}
.y129{bottom:434.880193px;}
.y87{bottom:435.060193px;}
.ya3{bottom:435.420193px;}
.y64{bottom:436.140193px;}
.y4a{bottom:437.760192px;}
.yf5{bottom:441.180191px;}
.y23{bottom:441.360191px;}
.y4e{bottom:442.620190px;}
.yb1{bottom:445.500189px;}
.y106{bottom:446.040189px;}
.y141{bottom:446.940188px;}
.ye5{bottom:448.740188px;}
.y85{bottom:449.640187px;}
.yd3{bottom:455.580185px;}
.yff{bottom:456.300185px;}
.y14f{bottom:456.660185px;}
.y1{bottom:465.660181px;}
.yc5{bottom:466.020181px;}
.y128{bottom:467.280180px;}
.yb{bottom:467.820180px;}
.y148{bottom:468.720180px;}
.y49{bottom:468.900180px;}
.y119{bottom:469.260179px;}
.y146{bottom:470.700179px;}
.y61{bottom:471.780178px;}
.yda{bottom:471.960178px;}
.y139{bottom:472.500178px;}
.y5d{bottom:474.480177px;}
.y131{bottom:475.740177px;}
.yf4{bottom:476.640177px;}
.y82{bottom:479.700175px;}
.ye4{bottom:480.960175px;}
.y41{bottom:481.320175px;}
.y81{bottom:482.040174px;}
.y83{bottom:483.840174px;}
.y14e{bottom:486.360173px;}
.y105{bottom:486.900172px;}
.y7b{bottom:487.800172px;}
.yc4{bottom:489.780171px;}
.y9b{bottom:490.500171px;}
.yd2{bottom:493.020170px;}
.y127{bottom:493.380170px;}
.yb0{bottom:495.360169px;}
.y80{bottom:496.800168px;}
.y5c{bottom:498.240168px;}
.y60{bottom:498.420168px;}
.ya1{bottom:498.780168px;}
.y156{bottom:499.500167px;}
.y48{bottom:500.040167px;}
.y138{bottom:500.580167px;}
.y118{bottom:501.300167px;}
.y31{bottom:503.100166px;}
.y15a{bottom:505.980165px;}
.yfe{bottom:506.160165px;}
.y104{bottom:507.600164px;}
.ya{bottom:509.400163px;}
.y5e{bottom:510.840163px;}
.y40{bottom:512.460162px;}
.y21{bottom:518.040160px;}
.ye3{bottom:520.380159px;}
.y5b{bottom:522.000158px;}
.y7c{bottom:523.440158px;}
.y5f{bottom:525.240157px;}
.y130{bottom:525.420157px;}
.y126{bottom:525.780157px;}
.y7a{bottom:531.180155px;}
.y1f{bottom:532.620154px;}
.y159{bottom:532.800154px;}
.y117{bottom:533.520154px;}
.y7f{bottom:536.760152px;}
.y137{bottom:536.940152px;}
.yd1{bottom:542.700150px;}
.y3f{bottom:543.600150px;}
.y20{bottom:544.860149px;}
.yaf{bottom:545.040149px;}
.y14d{bottom:545.760149px;}
.y30{bottom:545.940149px;}
.yf3{bottom:548.100148px;}
.y155{bottom:549.180148px;}
.y9{bottom:550.980147px;}
.ya8{bottom:551.160147px;}
.y9a{bottom:551.880146px;}
.yfd{bottom:556.020145px;}
.y84{bottom:558.000144px;}
.yd9{bottom:559.080144px;}
.ye2{bottom:559.800143px;}
.y5a{bottom:560.880143px;}
.ya4{bottom:563.580142px;}
.y4d{bottom:563.760142px;}
.y116{bottom:565.560141px;}
.y15e{bottom:566.280141px;}
.y79{bottom:566.820140px;}
.yca{bottom:568.620140px;}
.y12f{bottom:575.280137px;}
.y14c{bottom:575.460137px;}
.y7d{bottom:578.700136px;}
.y7e{bottom:579.060136px;}
.yd0{bottom:580.140135px;}
.yae{bottom:582.480134px;}
.yf2{bottom:583.560134px;}
.y57{bottom:585.900133px;}
.y58{bottom:586.620133px;}
.y3e{bottom:587.160132px;}
.y59{bottom:587.700132px;}
.y111{bottom:591.300131px;}
.y125{bottom:591.480131px;}
.y136{bottom:591.840130px;}
.ye1{bottom:592.020130px;}
.y10e{bottom:592.200130px;}
.y15d{bottom:593.100130px;}
.yfc{bottom:593.460130px;}
.yc3{bottom:597.780128px;}
.y115{bottom:598.860128px;}
.y2f{bottom:601.020127px;}
.y14b{bottom:606.600125px;}
.yb6{bottom:608.400124px;}
.yd8{bottom:608.940124px;}
.y143{bottom:609.120124px;}
.y10d{bottom:612.180122px;}
.y99{bottom:613.440122px;}
.y147{bottom:615.060121px;}
.y145{bottom:616.500121px;}
.ycf{bottom:617.580120px;}
.y56{bottom:623.700118px;}
.y26{bottom:623.880118px;}
.ye0{bottom:624.060118px;}
.yc9{bottom:631.260115px;}
.y10c{bottom:633.060114px;}
.y142{bottom:638.460112px;}
.y15c{bottom:638.820112px;}
.ya0{bottom:639.540111px;}
.yfb{bottom:643.140110px;}
.ybc{bottom:648.720108px;}
.y10b{bottom:653.760106px;}
.yc8{bottom:655.020105px;}
.y2e{bottom:656.280105px;}
.ydf{bottom:663.480102px;}
.y15b{bottom:665.640101px;}
.y11e{bottom:673.200098px;}
.y98{bottom:674.820097px;}
.y55{bottom:675.360097px;}
.y5{bottom:678.240096px;}
.y110{bottom:680.760095px;}
.y78{bottom:685.440093px;}
.y11c{bottom:700.560087px;}
.y160{bottom:702.360086px;}
.y4c{bottom:707.580084px;}
.y2d{bottom:709.920083px;}
.y1a{bottom:716.040081px;}
.yde{bottom:716.400081px;}
.y14a{bottom:717.480080px;}
.y11a{bottom:720.000079px;}
.y149{bottom:720.540079px;}
.yf1{bottom:728.460076px;}
.y103{bottom:729.540075px;}
.y39{bottom:730.440075px;}
.y11d{bottom:732.060074px;}
.ycd{bottom:732.420074px;}
.y10f{bottom:734.220074px;}
.ya9{bottom:736.380073px;}
.y11b{bottom:739.800071px;}
.h2a{height:36.180000px;}
.h25{height:36.471079px;}
.h5{height:36.497798px;}
.h20{height:39.830258px;}
.h6{height:39.859437px;}
.h22{height:44.280000px;}
.h7{height:46.068732px;}
.h8{height:46.102482px;}
.h33{height:47.891231px;}
.h1d{height:49.679980px;}
.h2c{height:51.217900px;}
.h23{height:52.787088px;}
.h1a{height:52.825760px;}
.h18{height:57.389040px;}
.h12{height:58.687177px;}
.h35{height:59.411226px;}
.h9{height:59.505445px;}
.hb{height:59.549039px;}
.h19{height:62.862162px;}
.h1e{height:64.693099px;}
.h2d{height:66.156454px;}
.h1c{height:66.223802px;}
.h1f{height:66.272317px;}
.h36{height:68.843644px;}
.h34{height:69.086222px;}
.h10{height:71.406534px;}
.h30{height:72.515362px;}
.h31{height:73.625731px;}
.h1b{height:79.180632px;}
.h2{height:79.238640px;}
.h2f{height:80.561488px;}
.h29{height:82.313053px;}
.h28{height:82.603092px;}
.h27{height:88.030765px;}
.ha{height:92.617346px;}
.h4{height:92.685197px;}
.h2e{height:95.500042px;}
.h2b{height:96.281329px;}
.h32{height:96.620586px;}
.h13{height:98.928242px;}
.h21{height:102.969319px;}
.he{height:105.651520px;}
.h14{height:109.905076px;}
.hd{height:117.374353px;}
.hc{height:119.010890px;}
.h16{height:119.098077px;}
.hf{height:119.646515px;}
.h11{height:127.566511px;}
.h24{height:131.967721px;}
.h17{height:132.064400px;}
.h15{height:132.312907px;}
.h3{height:145.404434px;}
.h26{height:145.510957px;}
.h1{height:178.036452px;}
.h0{height:918.000000px;}
.w2{width:480.240000px;}
.w1{width:560.340000px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x2d{left:8.999996px;}
.x69{left:13.859994px;}
.x1a{left:19.259992px;}
.x84{left:22.859991px;}
.x5b{left:26.099990px;}
.x6{left:27.899989px;}
.x7{left:31.679987px;}
.x76{left:33.299987px;}
.x3e{left:34.559986px;}
.x6b{left:35.793286px;}
.x1d{left:37.439985px;}
.x7b{left:45.539982px;}
.x83{left:48.779980px;}
.x19{left:49.859980px;}
.x33{left:57.059977px;}
.x7e{left:58.139977px;}
.x81{left:59.759976px;}
.x31{left:61.739975px;}
.x3a{left:62.999975px;}
.x8a{left:66.059974px;}
.x65{left:68.039973px;}
.x77{left:71.099972px;}
.x30{left:73.619971px;}
.x94{left:78.479969px;}
.x6c{left:80.459968px;}
.x8{left:82.619967px;}
.x32{left:84.059966px;}
.x71{left:85.499966px;}
.x66{left:88.019965px;}
.x5{left:90.719964px;}
.x72{left:92.879963px;}
.x8b{left:96.299961px;}
.x7f{left:104.939958px;}
.x95{left:106.379957px;}
.x3b{left:113.039955px;}
.x85{left:115.739954px;}
.x67{left:117.539953px;}
.x73{left:126.359949px;}
.x1e{left:128.159949px;}
.x6f{left:133.739947px;}
.x86{left:135.359946px;}
.x1c{left:138.239945px;}
.x80{left:140.399944px;}
.x58{left:160.739936px;}
.x89{left:166.319933px;}
.x3{left:167.759933px;}
.x7c{left:171.719931px;}
.x2{left:173.339931px;}
.x74{left:174.599930px;}
.x5a{left:176.579929px;}
.x82{left:179.999928px;}
.x1{left:181.439927px;}
.x78{left:183.239927px;}
.x88{left:187.019925px;}
.x5c{left:210.599916px;}
.x5e{left:216.899913px;}
.x57{left:219.779912px;}
.x40{left:227.879909px;}
.x55{left:229.679908px;}
.x4c{left:239.579904px;}
.x97{left:242.819903px;}
.x35{left:246.239902px;}
.x70{left:248.579901px;}
.x87{left:253.979898px;}
.x34{left:265.859894px;}
.x90{left:268.019893px;}
.x6e{left:274.319890px;}
.x56{left:282.959887px;}
.x92{left:287.999885px;}
.x2f{left:310.859876px;}
.x51{left:316.979873px;}
.x2b{left:333.359867px;}
.x1b{left:346.319861px;}
.x2a{left:368.459853px;}
.x93{left:369.719852px;}
.x1f{left:380.699848px;}
.x42{left:436.319825px;}
.x26{left:437.579825px;}
.x52{left:440.999824px;}
.x27{left:442.259823px;}
.x60{left:447.119821px;}
.x54{left:457.019817px;}
.x4{left:472.499811px;}
.x17{left:475.559810px;}
.xa{left:494.459802px;}
.x13{left:497.159801px;}
.xb{left:508.139797px;}
.x5d{left:514.620000px;}
.x9{left:518.759792px;}
.x98{left:521.999791px;}
.x18{left:531.719787px;}
.x15{left:546.659781px;}
.x8c{left:550.079780px;}
.x8d{left:577.079769px;}
.x4b{left:586.979765px;}
.x9a{left:598.139761px;}
.x3c{left:610.559756px;}
.x20{left:613.619755px;}
.x91{left:619.919752px;}
.x21{left:628.379749px;}
.x3d{left:632.879747px;}
.x64{left:647.819741px;}
.x63{left:649.259740px;}
.x4a{left:653.579739px;}
.x14{left:665.099734px;}
.x7d{left:679.859728px;}
.x75{left:683.999726px;}
.x37{left:688.679725px;}
.x50{left:697.859721px;}
.x36{left:710.999716px;}
.x16{left:716.039714px;}
.x49{left:720.179712px;}
.x41{left:748.079701px;}
.x68{left:758.519697px;}
.x11{left:760.319696px;}
.x12{left:767.159693px;}
.x53{left:773.819690px;}
.x48{left:786.959685px;}
.x6d{left:788.759684px;}
.x62{left:798.839680px;}
.x3f{left:826.379669px;}
.x59{left:833.579667px;}
.x99{left:836.099666px;}
.x8e{left:838.979664px;}
.x2c{left:842.399663px;}
.x47{left:853.559659px;}
.x24{left:857.159657px;}
.x6a{left:871.379651px;}
.x22{left:875.339650px;}
.xf{left:882.719647px;}
.xe{left:884.699646px;}
.x25{left:885.959646px;}
.x23{left:888.659645px;}
.xc{left:890.279644px;}
.x8f{left:891.899643px;}
.xd{left:908.279637px;}
.x4f{left:915.119634px;}
.x46{left:920.519632px;}
.x10{left:945.359622px;}
.x5f{left:967.319613px;}
.x38{left:979.919608px;}
.x61{left:990.719604px;}
.x7a{left:994.499602px;}
.x45{left:996.479601px;}
.x79{left:998.099601px;}
.x39{left:1003.499599px;}
.x4d{left:1047.959581px;}
.x28{left:1055.159578px;}
.x44{left:1058.039577px;}
.x43{left:1063.259575px;}
.x29{left:1071.539571px;}
.x4e{left:1077.479569px;}
.x96{left:1081.619567px;}
.x2e{left:1089.539564px;}
@media print{
.v6{vertical-align:-55.679978pt;}
.v5{vertical-align:-7.679997pt;}
.v8{vertical-align:-4.479998pt;}
.v1{vertical-align:-2.559999pt;}
.v4{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.239996pt;}
.v2{vertical-align:42.879983pt;}
.v3{vertical-align:49.919980pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.023750pt;}
.ls5{letter-spacing:23.807990pt;}
.ls2{letter-spacing:30.079988pt;}
.ls4{letter-spacing:33.215987pt;}
.ls8{letter-spacing:36.127986pt;}
.ls3{letter-spacing:38.079985pt;}
.lsf{letter-spacing:39.263984pt;}
.ls11{letter-spacing:42.399983pt;}
.ls10{letter-spacing:44.895982pt;}
.ls12{letter-spacing:47.807981pt;}
.ls14{letter-spacing:55.967978pt;}
.ls7{letter-spacing:61.727975pt;}
.lsa{letter-spacing:68.057573pt;}
.lse{letter-spacing:71.423971pt;}
.ls1{letter-spacing:78.310369pt;}
.lsb{letter-spacing:79.580128pt;}
.ls9{letter-spacing:82.079967pt;}
.lsd{letter-spacing:97.879001pt;}
.ls13{letter-spacing:100.166360pt;}
.lsc{letter-spacing:100.715480pt;}
.ws1b{word-spacing:-41.598703pt;}
.ws1{word-spacing:-37.426545pt;}
.wse{word-spacing:-35.727986pt;}
.wsd{word-spacing:-32.220147pt;}
.ws8{word-spacing:-28.582389pt;}
.ws16{word-spacing:-27.915509pt;}
.wsc{word-spacing:-26.763509pt;}
.ws2{word-spacing:-25.074550pt;}
.ws17{word-spacing:-23.865590pt;}
.wsa{word-spacing:-23.728631pt;}
.ws1a{word-spacing:-23.255671pt;}
.ws11{word-spacing:-21.436791pt;}
.ws1c{word-spacing:-19.960312pt;}
.ws10{word-spacing:-19.839992pt;}
.wsf{word-spacing:-19.571192pt;}
.ws12{word-spacing:-17.928953pt;}
.ws19{word-spacing:-17.080313pt;}
.ws6{word-spacing:-16.110074pt;}
.ws13{word-spacing:-14.291194pt;}
.ws5{word-spacing:-12.472315pt;}
.ws4{word-spacing:-10.783356pt;}
.ws3{word-spacing:-9.873916pt;}
.ws14{word-spacing:-1.352679pt;}
.ws15{word-spacing:-0.759077pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.990290pt;}
.ws1d{word-spacing:563.114256pt;}
.wsb{word-spacing:574.355530pt;}
.ws9{word-spacing:1120.302132pt;}
.ws7{word-spacing:1622.562167pt;}
._f{margin-left:-1862.670615pt;}
._e{margin-left:-1509.559757pt;}
._13{margin-left:-1232.816147pt;}
._12{margin-left:-785.265143pt;}
._20{margin-left:-746.497655pt;}
._15{margin-left:-704.731878pt;}
._17{margin-left:-548.465238pt;}
._16{margin-left:-467.931973pt;}
._10{margin-left:-284.976526pt;}
._11{margin-left:-283.696527pt;}
._9{margin-left:-15.037907pt;}
._18{margin-left:-13.545934pt;}
._c{margin-left:-12.411106pt;}
._1e{margin-left:-10.839376pt;}
._a{margin-left:-8.965935pt;}
._1a{margin-left:-7.478792pt;}
._2{margin-left:-6.020398pt;}
._d{margin-left:-4.802832pt;}
._5{margin-left:-3.873268pt;}
._1{margin-left:-2.941398pt;}
._8{margin-left:-1.900619pt;}
._0{margin-left:-0.992188pt;}
._3{width:0.976879pt;}
._4{width:2.246250pt;}
._b{width:3.164517pt;}
._22{width:18.840928pt;}
._14{width:20.977530pt;}
._1b{width:36.249101pt;}
._1c{width:70.651192pt;}
._1f{width:93.294722pt;}
._21{width:583.529727pt;}
._6{width:902.311862pt;}
._1d{width:1249.763348pt;}
._19{width:1469.125640pt;}
._7{width:1590.000004pt;}
.fs4{font-size:48.639981pt;}
.fs5{font-size:53.119979pt;}
.fs6{font-size:61.439975pt;}
.fsa{font-size:70.399972pt;}
.fs7{font-size:79.359968pt;}
.fsd{font-size:88.319965pt;}
.fsf{font-size:92.159963pt;}
.fs11{font-size:96.639961pt;}
.fs1{font-size:105.599958pt;}
.fse{font-size:110.079956pt;}
.fs10{font-size:114.559954pt;}
.fs3{font-size:123.519951pt;}
.fsb{font-size:131.839947pt;}
.fs9{font-size:140.799944pt;}
.fs8{font-size:158.719937pt;}
.fsc{font-size:175.999930pt;}
.fs2{font-size:193.919922pt;}
.fs0{font-size:237.439905pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:5.440280pt;}
.ybb{bottom:8.160279pt;}
.yba{bottom:110.880000pt;}
.y2a{bottom:117.920279pt;}
.y96{bottom:118.080279pt;}
.y95{bottom:119.040279pt;}
.y38{bottom:121.920278pt;}
.y114{bottom:124.160277pt;}
.y75{bottom:125.440276pt;}
.ycc{bottom:125.920276pt;}
.y77{bottom:126.240276pt;}
.yec{bottom:126.560276pt;}
.y124{bottom:126.720276pt;}
.y3d{bottom:127.520275pt;}
.yad{bottom:129.600275pt;}
.yb9{bottom:130.880274pt;}
.y14{bottom:132.000274pt;}
.ybd{bottom:132.640273pt;}
.y34{bottom:135.040272pt;}
.y140{bottom:135.200272pt;}
.ydd{bottom:135.360272pt;}
.yee{bottom:136.320272pt;}
.y54{bottom:139.360271pt;}
.y28{bottom:140.160270pt;}
.y29{bottom:141.760270pt;}
.y37{bottom:145.280268pt;}
.yef{bottom:145.760268pt;}
.ycb{bottom:147.040268pt;}
.y32{bottom:148.000267pt;}
.y3c{bottom:148.640267pt;}
.y74{bottom:149.280267pt;}
.y76{bottom:150.080266pt;}
.y94{bottom:150.240266pt;}
.y123{bottom:150.560266pt;}
.y93{bottom:151.200266pt;}
.y2b{bottom:152.800265pt;}
.yac{bottom:153.280265pt;}
.y113{bottom:155.840264pt;}
.y10{bottom:156.160264pt;}
.y36{bottom:156.640264pt;}
.y33{bottom:158.400263pt;}
.yeb{bottom:161.760262pt;}
.y97{bottom:163.040261pt;}
.yb8{bottom:166.560260pt;}
.y154{bottom:168.320259pt;}
.y27{bottom:168.800259pt;}
.yb7{bottom:169.440259pt;}
.y3b{bottom:169.760258pt;}
.yed{bottom:171.520258pt;}
.y13f{bottom:172.160258pt;}
.y122{bottom:174.240257pt;}
.y12{bottom:176.320256pt;}
.yab{bottom:177.120256pt;}
.ya5{bottom:177.920255pt;}
.yf9{bottom:179.680255pt;}
.y35{bottom:180.000254pt;}
.y71{bottom:180.960254pt;}
.y13{bottom:182.080254pt;}
.y92{bottom:182.400253pt;}
.y91{bottom:183.360253pt;}
.y15{bottom:183.520253pt;}
.y112{bottom:187.520251pt;}
.y3a{bottom:190.880250pt;}
.yf{bottom:193.120249pt;}
.y153{bottom:194.720249pt;}
.y8{bottom:195.360248pt;}
.yc1{bottom:196.640248pt;}
.y121{bottom:198.080247pt;}
.y12e{bottom:200.320246pt;}
.y52{bottom:200.480246pt;}
.y72{bottom:200.640246pt;}
.y47{bottom:200.800246pt;}
.y70{bottom:202.240246pt;}
.y13e{bottom:209.760242pt;}
.yf8{bottom:211.360242pt;}
.y90{bottom:214.560241pt;}
.y16{bottom:214.720241pt;}
.y22{bottom:215.200240pt;}
.y8f{bottom:215.520240pt;}
.y9f{bottom:217.600239pt;}
.ya7{bottom:219.200239pt;}
.y73{bottom:221.440238pt;}
.y120{bottom:221.760238pt;}
.y6f{bottom:222.560237pt;}
.y12d{bottom:223.520237pt;}
.yaa{bottom:224.640237pt;}
.y11{bottom:225.920236pt;}
.y46{bottom:228.480235pt;}
.y135{bottom:229.120235pt;}
.ye{bottom:230.080234pt;}
.yea{bottom:230.880234pt;}
.y7{bottom:232.320233pt;}
.y1e{bottom:233.760233pt;}
.y144{bottom:235.040232pt;}
.yb5{bottom:240.960230pt;}
.y51{bottom:243.200229pt;}
.y11f{bottom:245.600228pt;}
.y8e{bottom:246.560228pt;}
.y10a{bottom:247.200228pt;}
.y8d{bottom:247.520227pt;}
.yd7{bottom:249.920226pt;}
.y102{bottom:250.560226pt;}
.y1d{bottom:252.160226pt;}
.y6e{bottom:252.960225pt;}
.y12c{bottom:253.280225pt;}
.y6b{bottom:254.240225pt;}
.y45{bottom:256.160224pt;}
.y13d{bottom:257.760223pt;}
.y134{bottom:262.400221pt;}
.y6c{bottom:264.000221pt;}
.yf7{bottom:265.440220pt;}
.y18{bottom:266.080220pt;}
.yd{bottom:267.040220pt;}
.yce{bottom:267.680219pt;}
.y109{bottom:268.960219pt;}
.y6{bottom:269.280219pt;}
.y1c{bottom:270.720218pt;}
.y4{bottom:271.200218pt;}
.ybf{bottom:272.000218pt;}
.y9e{bottom:272.320217pt;}
.y152{bottom:273.920217pt;}
.yb4{bottom:274.240217pt;}
.y6a{bottom:275.360216pt;}
.y6d{bottom:276.800216pt;}
.ye9{bottom:278.240215pt;}
.y25{bottom:278.720215pt;}
.y8c{bottom:279.680215pt;}
.y13c{bottom:282.720213pt;}
.y53{bottom:283.040213pt;}
.yd6{bottom:283.200213pt;}
.y17{bottom:283.360213pt;}
.y44{bottom:283.840213pt;}
.y19{bottom:284.160213pt;}
.yc0{bottom:287.360211pt;}
.y108{bottom:287.520211pt;}
.y1b{bottom:289.120211pt;}
.y12b{bottom:290.720210pt;}
.y3{bottom:296.480208pt;}
.y50{bottom:296.960208pt;}
.ya6{bottom:299.520207pt;}
.ya2{bottom:299.680207pt;}
.yc{bottom:304.000205pt;}
.ye8{bottom:306.880204pt;}
.y107{bottom:308.000203pt;}
.y69{bottom:308.480203pt;}
.y8b{bottom:310.880202pt;}
.y43{bottom:311.680202pt;}
.y8a{bottom:311.840202pt;}
.y13b{bottom:314.880200pt;}
.yb3{bottom:318.400199pt;}
.y67{bottom:319.360199pt;}
.y66{bottom:320.160198pt;}
.y158{bottom:322.080198pt;}
.y151{bottom:326.720196pt;}
.y9d{bottom:326.880196pt;}
.yd5{bottom:327.360195pt;}
.y101{bottom:328.160195pt;}
.yf6{bottom:328.800195pt;}
.y68{bottom:332.320193pt;}
.yc7{bottom:333.120193pt;}
.yf0{bottom:333.440193pt;}
.y133{bottom:334.240193pt;}
.ye7{bottom:335.360192pt;}
.y13a{bottom:338.880191pt;}
.ydc{bottom:341.920190pt;}
.y89{bottom:343.040189pt;}
.y88{bottom:344.000189pt;}
.y15f{bottom:346.400188pt;}
.y12a{bottom:349.120187pt;}
.y2{bottom:349.760186pt;}
.y42{bottom:350.400186pt;}
.y4f{bottom:350.720186pt;}
.y150{bottom:353.120185pt;}
.yc6{bottom:354.240185pt;}
.y24{bottom:355.360184pt;}
.ybe{bottom:355.840184pt;}
.yd4{bottom:360.640182pt;}
.y4b{bottom:361.280182pt;}
.yb2{bottom:362.720181pt;}
.y65{bottom:363.840181pt;}
.y2c{bottom:366.080180pt;}
.y157{bottom:366.400180pt;}
.ye6{bottom:370.400178pt;}
.y100{bottom:372.320177pt;}
.y63{bottom:374.880176pt;}
.ydb{bottom:375.200176pt;}
.y62{bottom:375.680176pt;}
.y86{bottom:375.840176pt;}
.yc2{bottom:378.400175pt;}
.y132{bottom:378.560175pt;}
.y9c{bottom:381.440174pt;}
.y129{bottom:386.560172pt;}
.y87{bottom:386.720172pt;}
.ya3{bottom:387.040172pt;}
.y64{bottom:387.680171pt;}
.y4a{bottom:389.120171pt;}
.yf5{bottom:392.160170pt;}
.y23{bottom:392.320169pt;}
.y4e{bottom:393.440169pt;}
.yb1{bottom:396.000168pt;}
.y106{bottom:396.480168pt;}
.y141{bottom:397.280167pt;}
.ye5{bottom:398.880167pt;}
.y85{bottom:399.680167pt;}
.yd3{bottom:404.960164pt;}
.yff{bottom:405.600164pt;}
.y14f{bottom:405.920164pt;}
.y1{bottom:413.920161pt;}
.yc5{bottom:414.240161pt;}
.y128{bottom:415.360160pt;}
.yb{bottom:415.840160pt;}
.y148{bottom:416.640160pt;}
.y49{bottom:416.800160pt;}
.y119{bottom:417.120160pt;}
.y146{bottom:418.400159pt;}
.y61{bottom:419.360159pt;}
.yda{bottom:419.520159pt;}
.y139{bottom:420.000158pt;}
.y5d{bottom:421.760158pt;}
.y131{bottom:422.880157pt;}
.yf4{bottom:423.680157pt;}
.y82{bottom:426.400156pt;}
.ye4{bottom:427.520155pt;}
.y41{bottom:427.840155pt;}
.y81{bottom:428.480155pt;}
.y83{bottom:430.080154pt;}
.y14e{bottom:432.320153pt;}
.y105{bottom:432.800153pt;}
.y7b{bottom:433.600153pt;}
.yc4{bottom:435.360152pt;}
.y9b{bottom:436.000152pt;}
.yd2{bottom:438.240151pt;}
.y127{bottom:438.560151pt;}
.yb0{bottom:440.320150pt;}
.y80{bottom:441.600150pt;}
.y5c{bottom:442.880149pt;}
.y60{bottom:443.040149pt;}
.ya1{bottom:443.360149pt;}
.y156{bottom:444.000149pt;}
.y48{bottom:444.480149pt;}
.y138{bottom:444.960148pt;}
.y118{bottom:445.600148pt;}
.y31{bottom:447.200148pt;}
.y15a{bottom:449.760146pt;}
.yfe{bottom:449.920146pt;}
.y104{bottom:451.200146pt;}
.ya{bottom:452.800145pt;}
.y5e{bottom:454.080145pt;}
.y40{bottom:455.520144pt;}
.y21{bottom:460.480142pt;}
.ye3{bottom:462.560141pt;}
.y5b{bottom:464.000141pt;}
.y7c{bottom:465.280140pt;}
.y5f{bottom:466.880140pt;}
.y130{bottom:467.040140pt;}
.y126{bottom:467.360139pt;}
.y7a{bottom:472.160138pt;}
.y1f{bottom:473.440137pt;}
.y159{bottom:473.600137pt;}
.y117{bottom:474.240137pt;}
.y7f{bottom:477.120136pt;}
.y137{bottom:477.280135pt;}
.yd1{bottom:482.400133pt;}
.y3f{bottom:483.200133pt;}
.y20{bottom:484.320133pt;}
.yaf{bottom:484.480133pt;}
.y14d{bottom:485.120132pt;}
.y30{bottom:485.280132pt;}
.yf3{bottom:487.200132pt;}
.y155{bottom:488.160131pt;}
.y9{bottom:489.760130pt;}
.ya8{bottom:489.920130pt;}
.y9a{bottom:490.560130pt;}
.yfd{bottom:494.240129pt;}
.y84{bottom:496.000128pt;}
.yd9{bottom:496.960128pt;}
.ye2{bottom:497.600127pt;}
.y5a{bottom:498.560127pt;}
.ya4{bottom:500.960126pt;}
.y4d{bottom:501.120126pt;}
.y116{bottom:502.720125pt;}
.y15e{bottom:503.360125pt;}
.y79{bottom:503.840125pt;}
.yca{bottom:505.440124pt;}
.y12f{bottom:511.360122pt;}
.y14c{bottom:511.520122pt;}
.y7d{bottom:514.400121pt;}
.y7e{bottom:514.720121pt;}
.yd0{bottom:515.680120pt;}
.yae{bottom:517.760119pt;}
.yf2{bottom:518.720119pt;}
.y57{bottom:520.800118pt;}
.y58{bottom:521.440118pt;}
.y3e{bottom:521.920118pt;}
.y59{bottom:522.400117pt;}
.y111{bottom:525.600116pt;}
.y125{bottom:525.760116pt;}
.y136{bottom:526.080116pt;}
.ye1{bottom:526.240116pt;}
.y10e{bottom:526.400116pt;}
.y15d{bottom:527.200116pt;}
.yfc{bottom:527.520115pt;}
.yc3{bottom:531.360114pt;}
.y115{bottom:532.320113pt;}
.y2f{bottom:534.240113pt;}
.y14b{bottom:539.200111pt;}
.yb6{bottom:540.800110pt;}
.yd8{bottom:541.280110pt;}
.y143{bottom:541.440110pt;}
.y10d{bottom:544.160109pt;}
.y99{bottom:545.280108pt;}
.y147{bottom:546.720108pt;}
.y145{bottom:548.000107pt;}
.ycf{bottom:548.960107pt;}
.y56{bottom:554.400105pt;}
.y26{bottom:554.560105pt;}
.ye0{bottom:554.720105pt;}
.yc9{bottom:561.120102pt;}
.y10c{bottom:562.720101pt;}
.y142{bottom:567.520099pt;}
.y15c{bottom:567.840099pt;}
.ya0{bottom:568.480099pt;}
.yfb{bottom:571.680098pt;}
.ybc{bottom:576.640096pt;}
.y10b{bottom:581.120094pt;}
.yc8{bottom:582.240094pt;}
.y2e{bottom:583.360093pt;}
.ydf{bottom:589.760090pt;}
.y15b{bottom:591.680090pt;}
.y11e{bottom:598.400087pt;}
.y98{bottom:599.840086pt;}
.y55{bottom:600.320086pt;}
.y5{bottom:602.880085pt;}
.y110{bottom:605.120084pt;}
.y78{bottom:609.280083pt;}
.y11c{bottom:622.720077pt;}
.y160{bottom:624.320077pt;}
.y4c{bottom:628.960075pt;}
.y2d{bottom:631.040074pt;}
.y1a{bottom:636.480072pt;}
.yde{bottom:636.800072pt;}
.y14a{bottom:637.760071pt;}
.y11a{bottom:640.000070pt;}
.y149{bottom:640.480070pt;}
.yf1{bottom:647.520067pt;}
.y103{bottom:648.480067pt;}
.y39{bottom:649.280067pt;}
.y11d{bottom:650.720066pt;}
.ycd{bottom:651.040066pt;}
.y10f{bottom:652.640065pt;}
.ya9{bottom:654.560065pt;}
.y11b{bottom:657.600063pt;}
.h2a{height:32.160000pt;}
.h25{height:32.418737pt;}
.h5{height:32.442487pt;}
.h20{height:35.404673pt;}
.h6{height:35.430611pt;}
.h22{height:39.360000pt;}
.h7{height:40.949984pt;}
.h8{height:40.979984pt;}
.h33{height:42.569983pt;}
.h1d{height:44.159982pt;}
.h2c{height:45.527022pt;}
.h23{height:46.921856pt;}
.h1a{height:46.956231pt;}
.h18{height:51.012480pt;}
.h12{height:52.166379pt;}
.h35{height:52.809979pt;}
.h9{height:52.893729pt;}
.hb{height:52.932479pt;}
.h19{height:55.877478pt;}
.h1e{height:57.504977pt;}
.h2d{height:58.805736pt;}
.h1c{height:58.865601pt;}
.h1f{height:58.908726pt;}
.h36{height:61.194351pt;}
.h34{height:61.409975pt;}
.h10{height:63.472475pt;}
.h30{height:64.458099pt;}
.h31{height:65.445094pt;}
.h1b{height:70.382784pt;}
.h2{height:70.434347pt;}
.h2f{height:71.610211pt;}
.h29{height:73.167158pt;}
.h28{height:73.424971pt;}
.h27{height:78.249569pt;}
.ha{height:82.326530pt;}
.h4{height:82.386842pt;}
.h2e{height:84.888926pt;}
.h2b{height:85.583403pt;}
.h32{height:85.884966pt;}
.h13{height:87.936215pt;}
.h21{height:91.528283pt;}
.he{height:93.912462pt;}
.h14{height:97.693401pt;}
.hd{height:104.332758pt;}
.hc{height:105.787458pt;}
.h16{height:105.864958pt;}
.hf{height:106.352457pt;}
.h11{height:113.392455pt;}
.h24{height:117.304641pt;}
.h17{height:117.390578pt;}
.h15{height:117.611473pt;}
.h3{height:129.248386pt;}
.h26{height:129.343073pt;}
.h1{height:158.254624pt;}
.h0{height:816.000000pt;}
.w2{width:426.880000pt;}
.w1{width:498.080000pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:7.999997pt;}
.x69{left:12.319995pt;}
.x1a{left:17.119993pt;}
.x84{left:20.319992pt;}
.x5b{left:23.199991pt;}
.x6{left:24.799990pt;}
.x7{left:28.159989pt;}
.x76{left:29.599988pt;}
.x3e{left:30.719988pt;}
.x6b{left:31.816254pt;}
.x1d{left:33.279987pt;}
.x7b{left:40.479984pt;}
.x83{left:43.359983pt;}
.x19{left:44.319982pt;}
.x33{left:50.719980pt;}
.x7e{left:51.679979pt;}
.x81{left:53.119979pt;}
.x31{left:54.879978pt;}
.x3a{left:55.999978pt;}
.x8a{left:58.719977pt;}
.x65{left:60.479976pt;}
.x77{left:63.199975pt;}
.x30{left:65.439974pt;}
.x94{left:69.759972pt;}
.x6c{left:71.519971pt;}
.x8{left:73.439971pt;}
.x32{left:74.719970pt;}
.x71{left:75.999970pt;}
.x66{left:78.239969pt;}
.x5{left:80.639968pt;}
.x72{left:82.559967pt;}
.x8b{left:85.599966pt;}
.x7f{left:93.279963pt;}
.x95{left:94.559962pt;}
.x3b{left:100.479960pt;}
.x85{left:102.879959pt;}
.x67{left:104.479958pt;}
.x73{left:112.319955pt;}
.x1e{left:113.919954pt;}
.x6f{left:118.879952pt;}
.x86{left:120.319952pt;}
.x1c{left:122.879951pt;}
.x80{left:124.799950pt;}
.x58{left:142.879943pt;}
.x89{left:147.839941pt;}
.x3{left:149.119940pt;}
.x7c{left:152.639939pt;}
.x2{left:154.079938pt;}
.x74{left:155.199938pt;}
.x5a{left:156.959937pt;}
.x82{left:159.999936pt;}
.x1{left:161.279935pt;}
.x78{left:162.879935pt;}
.x88{left:166.239934pt;}
.x5c{left:187.199925pt;}
.x5e{left:192.799923pt;}
.x57{left:195.359922pt;}
.x40{left:202.559919pt;}
.x55{left:204.159918pt;}
.x4c{left:212.959915pt;}
.x97{left:215.839914pt;}
.x35{left:218.879912pt;}
.x70{left:220.959912pt;}
.x87{left:225.759910pt;}
.x34{left:236.319905pt;}
.x90{left:238.239905pt;}
.x6e{left:243.839902pt;}
.x56{left:251.519899pt;}
.x92{left:255.999898pt;}
.x2f{left:276.319889pt;}
.x51{left:281.759887pt;}
.x2b{left:296.319881pt;}
.x1b{left:307.839877pt;}
.x2a{left:327.519869pt;}
.x93{left:328.639869pt;}
.x1f{left:338.399865pt;}
.x42{left:387.839845pt;}
.x26{left:388.959844pt;}
.x52{left:391.999843pt;}
.x27{left:393.119843pt;}
.x60{left:397.439841pt;}
.x54{left:406.239838pt;}
.x4{left:419.999832pt;}
.x17{left:422.719831pt;}
.xa{left:439.519824pt;}
.x13{left:441.919823pt;}
.xb{left:451.679819pt;}
.x5d{left:457.440000pt;}
.x9{left:461.119816pt;}
.x98{left:463.999814pt;}
.x18{left:472.639811pt;}
.x15{left:485.919806pt;}
.x8c{left:488.959804pt;}
.x8d{left:512.959795pt;}
.x4b{left:521.759791pt;}
.x9a{left:531.679787pt;}
.x3c{left:542.719783pt;}
.x20{left:545.439782pt;}
.x91{left:551.039780pt;}
.x21{left:558.559777pt;}
.x3d{left:562.559775pt;}
.x64{left:575.839770pt;}
.x63{left:577.119769pt;}
.x4a{left:580.959768pt;}
.x14{left:591.199764pt;}
.x7d{left:604.319758pt;}
.x75{left:607.999757pt;}
.x37{left:612.159755pt;}
.x50{left:620.319752pt;}
.x36{left:631.999747pt;}
.x16{left:636.479745pt;}
.x49{left:640.159744pt;}
.x41{left:664.959734pt;}
.x68{left:674.239730pt;}
.x11{left:675.839730pt;}
.x12{left:681.919727pt;}
.x53{left:687.839725pt;}
.x48{left:699.519720pt;}
.x6d{left:701.119720pt;}
.x62{left:710.079716pt;}
.x3f{left:734.559706pt;}
.x59{left:740.959704pt;}
.x99{left:743.199703pt;}
.x8e{left:745.759702pt;}
.x2c{left:748.799700pt;}
.x47{left:758.719697pt;}
.x24{left:761.919695pt;}
.x6a{left:774.559690pt;}
.x22{left:778.079689pt;}
.xf{left:784.639686pt;}
.xe{left:786.399685pt;}
.x25{left:787.519685pt;}
.x23{left:789.919684pt;}
.xc{left:791.359683pt;}
.x8f{left:792.799683pt;}
.xd{left:807.359677pt;}
.x4f{left:813.439675pt;}
.x46{left:818.239673pt;}
.x10{left:840.319664pt;}
.x5f{left:859.839656pt;}
.x38{left:871.039652pt;}
.x61{left:880.639648pt;}
.x7a{left:883.999646pt;}
.x45{left:885.759646pt;}
.x79{left:887.199645pt;}
.x39{left:891.999643pt;}
.x4d{left:931.519627pt;}
.x28{left:937.919625pt;}
.x44{left:940.479624pt;}
.x43{left:945.119622pt;}
.x29{left:952.479619pt;}
.x4e{left:957.759617pt;}
.x96{left:961.439615pt;}
.x2e{left:968.479613pt;}
}




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