
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f4b88fdaf46ffdd7170c7cb5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_f52f420912ccc2222bc915a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_4673fc3f6e7247db3d3ef0f8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5c3b0115681bed0e95969627.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9d4e3b3956b840c42e6c53df.woff')format("woff");}.ffa{font-family:ffa;line-height:0.916667;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_bf4d776bdf047ba0f3b2a018.woff')format("woff");}.ffb{font-family:ffb;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.081416px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1592.264172px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-44.674803px;}
.ws1{word-spacing:-33.000001px;}
.ws3{word-spacing:-25.505999px;}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-117.336572px;}
._2d{margin-left:-111.882753px;}
._24{margin-left:-108.106073px;}
._2e{margin-left:-103.415392px;}
._2a{margin-left:-99.775686px;}
._31{margin-left:-97.660688px;}
._21{margin-left:-90.539586px;}
._23{margin-left:-88.418986px;}
._2b{margin-left:-87.361563px;}
._26{margin-left:-75.554882px;}
._25{margin-left:-60.710835px;}
._22{margin-left:-59.203432px;}
._2c{margin-left:-57.386554px;}
._29{margin-left:-54.810372px;}
._1d{margin-left:-51.832970px;}
._1b{margin-left:-50.149719px;}
._2f{margin-left:-49.007481px;}
._1e{margin-left:-46.695374px;}
._1a{margin-left:-45.663356px;}
._20{margin-left:-44.183177px;}
._19{margin-left:-42.970548px;}
._1c{margin-left:-41.014449px;}
._15{margin-left:-39.370532px;}
._4{margin-left:-38.172598px;}
._6{margin-left:-36.265717px;}
._c{margin-left:-34.968809px;}
._0{margin-left:-33.745674px;}
._11{margin-left:-32.593074px;}
._2{margin-left:-31.557509px;}
._7{margin-left:-30.466210px;}
._f{margin-left:-29.307470px;}
._18{margin-left:-28.284602px;}
._1f{margin-left:-26.895232px;}
._9{margin-left:-25.600559px;}
._5{margin-left:-24.419211px;}
._b{margin-left:-23.055279px;}
._3{margin-left:-22.034194px;}
._8{margin-left:-20.611018px;}
._a{margin-left:-19.540519px;}
._1{margin-left:-18.040334px;}
._e{margin-left:-16.088429px;}
._17{margin-left:-14.877346px;}
._12{margin-left:-13.800070px;}
._16{margin-left:-12.467001px;}
._14{margin-left:-11.177087px;}
._30{margin-left:-10.124030px;}
._28{margin-left:-9.079970px;}
._32{margin-left:-7.759686px;}
._d{margin-left:-6.092547px;}
._13{margin-left:-4.647898px;}
._10{margin-left:-3.184484px;}
._3e{margin-left:-2.160143px;}
._33{margin-left:-1.018277px;}
._3f{width:1.009094px;}
._35{width:4.315012px;}
._3d{width:5.354511px;}
._38{width:8.614391px;}
._39{width:9.680045px;}
._34{width:13.393176px;}
._3a{width:17.199243px;}
._37{width:22.463519px;}
._36{width:26.820211px;}
._3c{width:31.273310px;}
._3b{width:35.930129px;}
.fc3{color:transparent;}
.fc2{color:rgb(117,184,43);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(112,111,111);}
.fs7{font-size:44.676036px;}
.fs0{font-size:47.594678px;}
.fs3{font-size:54.494264px;}
.fs9{font-size:57.816046px;}
.fs11{font-size:58.499998px;}
.fsc{font-size:62.999997px;}
.fs1{font-size:65.046052px;}
.fs8{font-size:65.700053px;}
.fsa{font-size:66.000002px;}
.fs10{font-size:71.999997px;}
.fse{font-size:76.499997px;}
.fs4{font-size:112.399890px;}
.fsf{font-size:116.999995px;}
.fs5{font-size:136.235509px;}
.fs6{font-size:143.994115px;}
.fsd{font-size:143.999994px;}
.fs2{font-size:151.406521px;}
.fsb{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.840938px;}
.y94{bottom:15.749999px;}
.yad{bottom:19.755022px;}
.y89{bottom:26.505022px;}
.y3e{bottom:28.347135px;}
.y93{bottom:42.749998px;}
.y88{bottom:50.130021px;}
.yac{bottom:51.255020px;}
.y92{bottom:66.374997px;}
.y3c{bottom:71.183059px;}
.yab{bottom:71.505020px;}
.y87{bottom:73.755020px;}
.y42{bottom:76.892424px;}
.y3b{bottom:85.462141px;}
.yaa{bottom:91.755019px;}
.y3a{bottom:99.739812px;}
.y40{bottom:107.372898px;}
.ya9{bottom:112.005018px;}
.y72{bottom:114.011538px;}
.y39{bottom:114.017483px;}
.y3d{bottom:119.195308px;}
.y41{bottom:125.537463px;}
.y38{bottom:128.296565px;}
.ya8{bottom:132.255017px;}
.y3f{bottom:132.349268px;}
.y71{bottom:135.830935px;}
.y7f{bottom:146.880016px;}
.y70{bottom:157.650333px;}
.ya7{bottom:163.755016px;}
.y86{bottom:176.130015px;}
.y6f{bottom:179.469730px;}
.ya6{bottom:195.255014px;}
.y6e{bottom:201.289128px;}
.ya5{bottom:215.505014px;}
.y85{bottom:216.630014px;}
.y1f{bottom:219.324288px;}
.y6d{bottom:223.108525px;}
.y1e{bottom:233.603369px;}
.ya4{bottom:235.755013px;}
.y84{bottom:244.755012px;}
.y6c{bottom:244.927922px;}
.y1d{bottom:262.160092px;}
.y6b{bottom:266.747319px;}
.ya3{bottom:267.255011px;}
.y1c{bottom:276.437763px;}
.y7e{bottom:287.505011px;}
.y6a{bottom:288.566716px;}
.ya2{bottom:298.755010px;}
.y1b{bottom:304.994486px;}
.y69{bottom:310.386113px;}
.ya1{bottom:319.005009px;}
.y1a{bottom:319.272158px;}
.y68{bottom:332.205510px;}
.ya0{bottom:339.255008px;}
.y30{bottom:340.749835px;}
.y83{bottom:344.880008px;}
.y27{bottom:352.859345px;}
.y23{bottom:353.312345px;}
.y67{bottom:354.024907px;}
.ycc{bottom:359.505008px;}
.y7d{bottom:360.630008px;}
.y82{bottom:365.130007px;}
.y2f{bottom:365.727855px;}
.y9f{bottom:370.755007px;}
.y66{bottom:375.844304px;}
.ycb{bottom:379.755007px;}
.y9e{bottom:391.005006px;}
.y65{bottom:397.663690px;}
.yca{bottom:400.005006px;}
.y19{bottom:403.612125px;}
.y9d{bottom:411.255005px;}
.y18{bottom:417.889797px;}
.y64{bottom:419.483088px;}
.yc9{bottom:420.255005px;}
.y81{bottom:424.755005px;}
.y9c{bottom:431.505005px;}
.y17{bottom:432.168878px;}
.yc8{bottom:440.505004px;}
.y63{bottom:441.302485px;}
.y9b{bottom:451.755004px;}
.y80{bottom:459.630003px;}
.y16{bottom:460.724251px;}
.y62{bottom:463.121883px;}
.yc7{bottom:472.005003px;}
.y15{bottom:475.003332px;}
.y9a{bottom:483.255002px;}
.y61{bottom:484.941280px;}
.yc6{bottom:492.255002px;}
.y14{bottom:503.560055px;}
.y60{bottom:506.760678px;}
.y13{bottom:517.837727px;}
.yc5{bottom:523.755001px;}
.y5f{bottom:528.580075px;}
.y2e{bottom:539.321494px;}
.y99{bottom:544.005000px;}
.y5e{bottom:550.399473px;}
.y26{bottom:551.428003px;}
.y22{bottom:551.884004px;}
.y2d{bottom:564.298014px;}
.y5d{bottom:572.218870px;}
.y28{bottom:583.562529px;}
.yc4{bottom:584.504998px;}
.y5c{bottom:594.038268px;}
.y33{bottom:602.435544px;}
.y35{bottom:602.594544px;}
.y37{bottom:603.806545px;}
.y5b{bottom:615.857665px;}
.yc3{bottom:616.004997px;}
.yc2{bottom:636.254996px;}
.y5a{bottom:637.677062px;}
.y98{bottom:650.879995px;}
.y12{bottom:655.755787px;}
.y59{bottom:659.496459px;}
.yc1{bottom:667.754995px;}
.y11{bottom:670.034868px;}
.y97{bottom:671.129995px;}
.y58{bottom:681.315856px;}
.y10{bottom:684.312540px;}
.y96{bottom:691.379994px;}
.y57{bottom:703.135253px;}
.y95{bottom:711.629993px;}
.yf{bottom:712.870763px;}
.y56{bottom:724.954650px;}
.ye{bottom:727.148434px;}
.y91{bottom:727.379992px;}
.yc0{bottom:728.504992px;}
.y55{bottom:746.774047px;}
.yd{bottom:755.705157px;}
.y54{bottom:768.593444px;}
.yc{bottom:769.984238px;}
.yb{bottom:784.261910px;}
.y53{bottom:790.412849px;}
.ya{bottom:798.540991px;}
.y7b{bottom:812.232235px;}
.y52{bottom:812.232239px;}
.y2c{bottom:821.579720px;}
.ybf{bottom:824.129988px;}
.y21{bottom:833.047229px;}
.y25{bottom:833.062229px;}
.y51{bottom:834.051629px;}
.y7a{bottom:834.051633px;}
.ybe{bottom:844.379987px;}
.y2b{bottom:846.556240px;}
.y79{bottom:855.871030px;}
.y50{bottom:855.871034px;}
.ybd{bottom:864.629987px;}
.y90{bottom:868.004986px;}
.y4f{bottom:877.690424px;}
.y78{bottom:877.690428px;}
.y9{bottom:884.616160px;}
.ybc{bottom:896.129985px;}
.y8{bottom:898.892421px;}
.y77{bottom:899.509825px;}
.y4e{bottom:899.509829px;}
.ybb{bottom:916.379984px;}
.y4d{bottom:921.329219px;}
.y76{bottom:921.329223px;}
.y7{bottom:927.450644px;}
.yba{bottom:936.629984px;}
.y6{bottom:941.729726px;}
.y75{bottom:943.148620px;}
.y4c{bottom:943.148624px;}
.y5{bottom:956.007397px;}
.y4b{bottom:964.968014px;}
.y74{bottom:964.968018px;}
.yb9{bottom:968.129982px;}
.y4{bottom:984.564120px;}
.y73{bottom:986.787415px;}
.y4a{bottom:986.787419px;}
.yb8{bottom:988.379981px;}
.y3{bottom:998.841791px;}
.y49{bottom:1008.606812px;}
.yb7{bottom:1008.629981px;}
.y2{bottom:1013.120873px;}
.y48{bottom:1030.426209px;}
.y2a{bottom:1033.253889px;}
.yb6{bottom:1040.129979px;}
.y20{bottom:1042.493896px;}
.y24{bottom:1042.510396px;}
.y47{bottom:1052.245605px;}
.y29{bottom:1058.230409px;}
.yb5{bottom:1060.379978px;}
.y46{bottom:1074.065004px;}
.y7c{bottom:1078.379978px;}
.y8f{bottom:1079.504978px;}
.yb4{bottom:1080.629978px;}
.y45{bottom:1095.884400px;}
.y32{bottom:1098.998941px;}
.y34{bottom:1099.156442px;}
.y36{bottom:1100.371443px;}
.y8e{bottom:1103.129977px;}
.yb3{bottom:1112.129976px;}
.y44{bottom:1117.703796px;}
.y8d{bottom:1126.754976px;}
.y43{bottom:1139.523194px;}
.yb2{bottom:1143.629975px;}
.yb1{bottom:1163.879974px;}
.y8c{bottom:1174.004974px;}
.ycd{bottom:1178.504974px;}
.yb0{bottom:1195.379973px;}
.y31{bottom:1196.724020px;}
.y8b{bottom:1197.629973px;}
.y8a{bottom:1221.254972px;}
.yaf{bottom:1226.879971px;}
.yae{bottom:1247.129971px;}
.h8{height:42.442234px;}
.h2{height:45.214944px;}
.ha{height:54.925244px;}
.h16{height:55.574998px;}
.h12{height:55.694089px;}
.h11{height:57.749998px;}
.hb{height:59.167970px;}
.hc{height:59.715822px;}
.hf{height:59.849998px;}
.h3{height:61.793749px;}
.h9{height:62.415050px;}
.h15{height:68.399997px;}
.h13{height:90.323996px;}
.h14{height:95.624996px;}
.h5{height:106.779895px;}
.h10{height:111.167995px;}
.h6{height:129.423734px;}
.h7{height:136.794409px;}
.he{height:138.959994px;}
.h4{height:143.836195px;}
.h1{height:1261.441462px;}
.hd{height:1262.879970px;}
.h0{height:1263.000000px;}
.w4{width:805.499966px;}
.w3{width:892.439940px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.w2{width:894.000000px;}
.x5f{left:-6.954346px;}
.x60{left:-2.700440px;}
.x0{left:0.000000px;}
.xe5{left:6.565429px;}
.xd8{left:11.250000px;}
.x5c{left:28.124999px;}
.xea{left:38.249998px;}
.x192{left:43.994749px;}
.x18c{left:47.101683px;}
.xd9{left:49.499998px;}
.x18d{left:51.531370px;}
.x13b{left:53.546262px;}
.xda{left:56.944334px;}
.x61{left:59.978757px;}
.x1a7{left:61.505857px;}
.x62{left:64.408445px;}
.xe6{left:67.666989px;}
.x11{left:69.134763px;}
.x93{left:72.460324px;}
.xdb{left:75.348630px;}
.x94{left:76.890011px;}
.x173{left:78.561083px;}
.x183{left:79.955197px;}
.xe8{left:81.815732px;}
.x10d{left:83.008297px;}
.x184{left:84.384884px;}
.x95{left:85.734005px;}
.x10e{left:87.437985px;}
.xeb{left:89.160641px;}
.x96{left:90.163693px;}
.xec{left:93.590328px;}
.x75{left:95.631588px;}
.x14b{left:97.066402px;}
.x1ae{left:98.119991px;}
.x76{left:100.061275px;}
.x100{left:101.334590px;}
.x8d{left:103.883419px;}
.x189{left:105.579708px;}
.x5d{left:106.744258px;}
.x10{left:108.000000px;}
.xe7{left:109.388667px;}
.x5e{left:111.173946px;}
.xdc{left:113.247066px;}
.x1e{left:114.925776px;}
.xb5{left:116.449580px;}
.x77{left:118.887446px;}
.x63{left:121.279170px;}
.x78{left:123.317133px;}
.x64{left:125.708857px;}
.x144{left:127.919804px;}
.xe9{left:129.839717px;}
.x18b{left:132.826899px;}
.xc5{left:133.906855px;}
.xb6{left:134.937372px;}
.x8e{left:137.298334px;}
.xc6{left:138.336542px;}
.xb7{left:139.367060px;}
.x18a{left:140.400444px;}
.x6{left:141.416813px;}
.xa6{left:142.743158px;}
.x169{left:143.919794px;}
.x12c{left:144.988764px;}
.x97{left:146.449945px;}
.x19f{left:147.607904px;}
.x117{left:148.799921px;}
.x8f{left:151.171869px;}
.x118{left:152.529779px;}
.x18e{left:154.121698px;}
.x90{left:155.601556px;}
.x168{left:157.131951px;}
.x130{left:160.638787px;}
.x165{left:163.784173px;}
.x1f{left:165.658011px;}
.x79{left:166.944939px;}
.x11a{left:169.167473px;}
.x7a{left:171.374627px;}
.x11b{left:173.597161px;}
.x10f{left:176.777703px;}
.x16c{left:178.280632px;}
.x20{left:180.923514px;}
.x19c{left:182.422478px;}
.x9{left:183.456147px;}
.x15c{left:185.025139px;}
.x124{left:188.093620px;}
.x170{left:189.285637px;}
.xd3{left:190.353513px;}
.x14d{left:191.950920px;}
.x185{left:193.089103px;}
.x12d{left:194.284416px;}
.x7{left:196.623157px;}
.x8{left:198.322659px;}
.xba{left:200.236808px;}
.xb8{left:201.298087px;}
.x101{left:202.994376px;}
.x65{left:204.981803px;}
.x193{left:206.670401px;}
.x98{left:207.834952px;}
.x14e{left:209.039054px;}
.x21{left:210.136382px;}
.x99{left:212.264640px;}
.x22{left:214.104644px;}
.x102{left:216.275748px;}
.x66{left:218.255484px;}
.x45{left:220.201168px;}
.x7b{left:221.770010px;}
.x5b{left:223.558584px;}
.x9a{left:225.538321px;}
.x13c{left:226.627066px;}
.x197{left:229.425146px;}
.x12e{left:231.075430px;}
.x23{left:233.246122px;}
.x12f{left:235.505117px;}
.x24{left:237.214384px;}
.x1{left:239.179691px;}
.x145{left:241.938110px;}
.x3a{left:243.738271px;}
.xdd{left:245.671865px;}
.xc7{left:247.171499px;}
.x7c{left:248.832631px;}
.xb{left:251.331201px;}
.x46{left:253.685298px;}
.xa7{left:254.877309px;}
.x2{left:256.834705px;}
.xd4{left:259.380352px;}
.x152{left:261.280140px;}
.x47{left:263.329096px;}
.x186{left:266.532704px;}
.xa8{left:268.750843px;}
.x13d{left:270.362537px;}
.x19d{left:271.377674px;}
.x157{left:272.649891px;}
.x13e{left:274.792225px;}
.x103{left:276.361072px;}
.x153{left:278.368274px;}
.x110{left:281.590564px;}
.x7d{left:283.877918px;}
.x104{left:285.328113px;}
.x1aa{left:286.720081px;}
.x91{left:288.422962px;}
.x48{left:290.430169px;}
.x14c{left:292.022048px;}
.x119{left:293.272327px;}
.x171{left:294.867542px;}
.xb9{left:295.882678px;}
.x17a{left:297.236194px;}
.xed{left:299.047839px;}
.x49{left:300.073968px;}
.x17b{left:301.665882px;}
.x3b{left:302.946887px;}
.x18f{left:305.753894px;}
.x3c{left:307.376574px;}
.xbb{left:309.187121px;}
.x125{left:311.155871px;}
.xee{left:312.329211px;}
.xbc{left:313.616808px;}
.x67{left:315.693224px;}
.xef{left:316.758898px;}
.x105{left:317.897081px;}
.x1af{left:318.927599px;}
.x68{left:320.122912px;}
.x7e{left:321.253404px;}
.xa9{left:323.414415px;}
.x4a{left:324.737175px;}
.x1a0{left:325.948961px;}
.xaa{left:327.844103px;}
.x9b{left:329.236070px;}
.x7f{left:330.435777px;}
.x25{left:332.637231px;}
.x4b{left:333.734977px;}
.x26{left:336.605493px;}
.x111{left:338.530503px;}
.xbd{left:341.025499px;}
.xde{left:342.870103px;}
.x11c{left:344.616929px;}
.x16a{left:346.278062px;}
.x1ab{left:347.366807px;}
.x17{left:348.591788px;}
.x16b{left:350.707750px;}
.x146{left:353.340079px;}
.x172{left:355.306626px;}
.x34{left:356.537100px;}
.x3d{left:358.945298px;}
.x19a{left:360.486679px;}
.x69{left:361.805039px;}
.xdf{left:363.111313px;}
.x3e{left:364.690048px;}
.x6a{left:366.234726px;}
.x4c{left:367.542104px;}
.x176{left:369.903061px;}
.x80{left:371.894882px;}
.x9c{left:373.794418px;}
.x92{left:375.024887px;}
.x12{left:377.859359px;}
.xf4{left:379.766586px;}
.x16d{left:381.815536px;}
.x13f{left:383.742538px;}
.x174{left:384.899398px;}
.x16e{left:386.245223px;}
.xab{left:387.575668px;}
.x126{left:389.152206px;}
.x106{left:390.279402px;}
.xf5{left:392.763412px;}
.x107{left:394.709090px;}
.x131{left:395.842879px;}
.x9d{left:397.311751px;}
.x18{left:399.041005px;}
.x132{left:400.272566px;}
.x9e{left:401.741438px;}
.x19{left:403.009266px;}
.x35{left:404.135330px;}
.x140{left:406.721541px;}
.x36{left:408.103592px;}
.x19e{left:409.551619px;}
.x141{left:411.152327px;}
.x127{left:412.338850px;}
.x158{left:413.461653px;}
.x154{left:414.904157px;}
.xd{left:416.745333px;}
.x3f{left:418.153913px;}
.x27{left:419.632605px;}
.x1a{left:422.235340px;}
.x28{left:423.600866px;}
.x13{left:426.278302px;}
.x155{left:427.562604px;}
.x1a1{left:428.800763px;}
.x14{left:430.246564px;}
.x37{left:431.613263px;}
.x29{left:432.867834px;}
.xf0{left:433.884138px;}
.x2a{left:436.836095px;}
.x4d{left:438.786242px;}
.x166{left:440.155133px;}
.x81{left:442.123883px;}
.xbe{left:445.561505px;}
.xa{left:446.926858px;}
.x4e{left:447.968615px;}
.x1b{left:450.005480px;}
.x9f{left:452.090680px;}
.x6b{left:454.028668px;}
.x17f{left:455.601910px;}
.x4f{left:457.712389px;}
.x190{left:459.339459px;}
.xa0{left:461.057720px;}
.x112{left:463.053936px;}
.x38{left:464.415142px;}
.x15d{left:466.971661px;}
.x1b0{left:468.006578px;}
.x16f{left:469.878643px;}
.x6c{left:472.178081px;}
.x1c{left:473.530504px;}
.x50{left:475.707993px;}
.xc8{left:478.253521px;}
.xf6{left:480.503520px;}
.xc9{left:482.683208px;}
.x108{left:484.025736px;}
.x51{left:485.882431px;}
.x39{left:487.940165px;}
.x11d{left:489.858378px;}
.xac{left:491.350322px;}
.x133{left:492.542338px;}
.x52{left:494.880234px;}
.x15{left:496.404255px;}
.xf7{left:498.283793px;}
.x16{left:500.372517px;}
.xe0{left:502.031229px;}
.x11e{left:503.470438px;}
.x53{left:504.647079px;}
.x167{left:505.977518px;}
.x194{left:507.250833px;}
.x175{left:508.699931px;}
.x54{left:510.476425px;}
.x159{left:511.968363px;}
.xd5{left:513.691019px;}
.x142{left:515.119241px;}
.x82{left:516.844094px;}
.xca{left:518.920511px;}
.x19b{left:520.016946px;}
.x113{left:521.893411px;}
.xcb{left:523.350199px;}
.x195{left:524.546609px;}
.x1d{left:525.827278px;}
.xd6{left:527.811746px;}
.x55{left:529.987044px;}
.xbf{left:531.809670px;}
.x134{left:533.209329px;}
.xf8{left:534.605691px;}
.x191{left:535.913063px;}
.xc0{left:540.776711px;}
.xcc{left:541.837991px;}
.x83{left:544.245094px;}
.xcd{left:546.267678px;}
.x84{left:548.674782px;}
.x135{left:551.697121px;}
.x14f{left:553.439553px;}
.x40{left:555.058937px;}
.x136{left:556.126808px;}
.x2b{left:557.960358px;}
.x41{left:559.596290px;}
.x177{left:560.894874px;}
.x2c{left:561.928619px;}
.x1ac{left:563.191016px;}
.x178{left:565.324562px;}
.x56{left:566.808820px;}
.x11f{left:569.331275px;}
.x6d{left:571.653785px;}
.x120{left:573.760963px;}
.xa1{left:577.444678px;}
.x2d{left:581.070098px;}
.x187{left:583.709082px;}
.x2e{left:585.038360px;}
.x147{left:588.851788px;}
.x156{left:590.453589px;}
.x42{left:591.834570px;}
.x15a{left:593.394629px;}
.x121{left:596.340063px;}
.x43{left:597.510107px;}
.x196{left:598.920751px;}
.x57{left:600.308330px;}
.xad{left:602.384741px;}
.x128{left:604.507299px;}
.xae{left:606.814428px;}
.x198{left:608.295385px;}
.xc1{left:609.306127px;}
.x58{left:610.452006px;}
.xd7{left:612.485576px;}
.xc2{left:613.735814px;}
.x1a8{left:614.786107px;}
.xf9{left:617.408544px;}
.x143{left:618.908183px;}
.x179{left:619.995824px;}
.xfa{left:621.838231px;}
.xe{left:623.911999px;}
.x148{left:625.089092px;}
.xce{left:626.271215px;}
.x149{left:629.518779px;}
.xcf{left:630.700902px;}
.x137{left:632.208226px;}
.x199{left:633.496921px;}
.x6e{left:635.622777px;}
.x138{left:636.637913px;}
.x15b{left:637.952977px;}
.x6f{left:640.052464px;}
.xc{left:641.132013px;}
.xf{left:642.509014px;}
.x139{left:645.820286px;}
.x17c{left:647.066136px;}
.xe1{left:648.993137px;}
.xf1{left:651.115696px;}
.x59{left:652.495584px;}
.xe2{left:654.055637px;}
.x114{left:655.845310px;}
.x85{left:657.071384px;}
.x70{left:658.878635px;}
.x109{left:660.436496px;}
.x44{left:661.617526px;}
.x71{left:663.308323px;}
.x86{left:665.915377px;}
.x5a{left:667.291970px;}
.xe3{left:669.234347px;}
.x87{left:670.345065px;}
.x180{left:671.856784px;}
.x115{left:673.556368px;}
.xd0{left:675.305393px;}
.x1a2{left:676.532565px;}
.x17d{left:677.774020px;}
.xaf{left:678.819919px;}
.xfb{left:680.554659px;}
.xb0{left:683.249606px;}
.x116{left:686.553194px;}
.xe4{left:689.150362px;}
.xc3{left:690.155611px;}
.x1a5{left:691.267427px;}
.x4{left:693.171429px;}
.x3{left:694.358305px;}
.x122{left:695.608126px;}
.x2f{left:697.401713px;}
.xfc{left:699.042451px;}
.x129{left:700.937593px;}
.x88{left:702.298799px;}
.x5{left:703.579099px;}
.x30{left:706.668680px;}
.xc4{left:708.197358px;}
.x15e{left:709.489351px;}
.x31{left:710.636942px;}
.x10a{left:712.539155px;}
.x15f{left:713.919038px;}
.xfd{left:716.130585px;}
.x188{left:718.007050px;}
.x1a9{left:719.275971px;}
.xfe{left:720.560273px;}
.xd1{left:722.939912px;}
.x32{left:724.072122px;}
.xf2{left:725.828217px;}
.x17e{left:726.846650px;}
.x33{left:728.040383px;}
.x150{left:730.142549px;}
.x13a{left:732.860566px;}
.x72{left:734.637055px;}
.x14a{left:736.874969px;}
.x73{left:739.066742px;}
.x160{left:741.666108px;}
.x123{left:744.596161px;}
.x161{left:746.095795px;}
.x1a3{left:749.730072px;}
.x1a4{left:754.159759px;}
.x162{left:758.754242px;}
.xa2{left:760.830657px;}
.x163{left:763.183929px;}
.x89{left:764.229826px;}
.xa3{left:765.260344px;}
.x1a6{left:767.541106px;}
.x8a{left:768.659514px;}
.x12a{left:771.081999px;}
.x181{left:772.255339px;}
.xa4{left:774.442717px;}
.x12b{left:775.511686px;}
.xb1{left:777.388152px;}
.xa5{left:778.872404px;}
.x1ad{left:780.145719px;}
.xb2{left:781.817839px;}
.xd2{left:782.902190px;}
.x151{left:784.398528px;}
.x74{left:788.893034px;}
.xff{left:793.642423px;}
.xf3{left:800.079313px;}
.xb3{left:815.232755px;}
.x10b{left:817.513516px;}
.xb4{left:819.662442px;}
.x10c{left:821.943203px;}
.x182{left:827.080410px;}
.x8b{left:832.628505px;}
.x164{left:834.943325px;}
.x8c{left:837.058193px;}
@media print{
.v1{vertical-align:-17.850148pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1415.345931pt;}
.ws2{word-spacing:-39.710936pt;}
.ws1{word-spacing:-29.333334pt;}
.ws3{word-spacing:-22.671999pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-104.299175pt;}
._2d{margin-left:-99.451336pt;}
._24{margin-left:-96.094287pt;}
._2e{margin-left:-91.924793pt;}
._2a{margin-left:-88.689499pt;}
._31{margin-left:-86.809501pt;}
._21{margin-left:-80.479632pt;}
._23{margin-left:-78.594654pt;}
._2b{margin-left:-77.654722pt;}
._26{margin-left:-67.159895pt;}
._25{margin-left:-53.965187pt;}
._22{margin-left:-52.625273pt;}
._2c{margin-left:-51.010270pt;}
._29{margin-left:-48.720331pt;}
._1d{margin-left:-46.073751pt;}
._1b{margin-left:-44.577528pt;}
._2f{margin-left:-43.562205pt;}
._1e{margin-left:-41.506999pt;}
._1a{margin-left:-40.589650pt;}
._20{margin-left:-39.273935pt;}
._19{margin-left:-38.196042pt;}
._1c{margin-left:-36.457288pt;}
._15{margin-left:-34.996028pt;}
._4{margin-left:-33.931198pt;}
._6{margin-left:-32.236193pt;}
._c{margin-left:-31.083386pt;}
._0{margin-left:-29.996155pt;}
._11{margin-left:-28.971621pt;}
._2{margin-left:-28.051119pt;}
._7{margin-left:-27.081076pt;}
._f{margin-left:-26.051085pt;}
._18{margin-left:-25.141868pt;}
._1f{margin-left:-23.906873pt;}
._9{margin-left:-22.756052pt;}
._5{margin-left:-21.705965pt;}
._b{margin-left:-20.493581pt;}
._3{margin-left:-19.585950pt;}
._8{margin-left:-18.320905pt;}
._a{margin-left:-17.369350pt;}
._1{margin-left:-16.035853pt;}
._e{margin-left:-14.300826pt;}
._17{margin-left:-13.224308pt;}
._12{margin-left:-12.266729pt;}
._16{margin-left:-11.081778pt;}
._14{margin-left:-9.935188pt;}
._30{margin-left:-8.999137pt;}
._28{margin-left:-8.071085pt;}
._32{margin-left:-6.897499pt;}
._d{margin-left:-5.415597pt;}
._13{margin-left:-4.131465pt;}
._10{margin-left:-2.830652pt;}
._3e{margin-left:-1.920127pt;}
._33{margin-left:-0.905136pt;}
._3f{width:0.896973pt;}
._35{width:3.835566pt;}
._3d{width:4.759565pt;}
._38{width:7.657237pt;}
._39{width:8.604484pt;}
._34{width:11.905045pt;}
._3a{width:15.288216pt;}
._37{width:19.967573pt;}
._36{width:23.840187pt;}
._3c{width:27.798497pt;}
._3b{width:31.937892pt;}
.fs7{font-size:39.712032pt;}
.fs0{font-size:42.306381pt;}
.fs3{font-size:48.439345pt;}
.fs9{font-size:51.392041pt;}
.fs11{font-size:51.999998pt;}
.fsc{font-size:55.999998pt;}
.fs1{font-size:57.818713pt;}
.fs8{font-size:58.400047pt;}
.fsa{font-size:58.666668pt;}
.fs10{font-size:63.999997pt;}
.fse{font-size:67.999997pt;}
.fs4{font-size:99.911013pt;}
.fsf{font-size:103.999996pt;}
.fs5{font-size:121.098230pt;}
.fs6{font-size:127.994769pt;}
.fsd{font-size:127.999995pt;}
.fs2{font-size:134.583574pt;}
.fsb{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.747501pt;}
.y94{bottom:13.999999pt;}
.yad{bottom:17.560019pt;}
.y89{bottom:23.560019pt;}
.y3e{bottom:25.197453pt;}
.y93{bottom:37.999998pt;}
.y88{bottom:44.560018pt;}
.yac{bottom:45.560018pt;}
.y92{bottom:58.999998pt;}
.y3c{bottom:63.273830pt;}
.yab{bottom:63.560017pt;}
.y87{bottom:65.560017pt;}
.y42{bottom:68.348821pt;}
.y3b{bottom:75.966347pt;}
.yaa{bottom:81.560017pt;}
.y3a{bottom:88.657611pt;}
.y40{bottom:95.442576pt;}
.ya9{bottom:99.560016pt;}
.y72{bottom:101.343589pt;}
.y39{bottom:101.348874pt;}
.y3d{bottom:105.951385pt;}
.y41{bottom:111.588856pt;}
.y38{bottom:114.041391pt;}
.ya8{bottom:117.560015pt;}
.y3f{bottom:117.643794pt;}
.y71{bottom:120.738609pt;}
.y7f{bottom:130.560015pt;}
.y70{bottom:140.133629pt;}
.ya7{bottom:145.560014pt;}
.y86{bottom:156.560014pt;}
.y6f{bottom:159.528649pt;}
.ya6{bottom:173.560013pt;}
.y6e{bottom:178.923669pt;}
.ya5{bottom:191.560012pt;}
.y85{bottom:192.560012pt;}
.y1f{bottom:194.954922pt;}
.y6d{bottom:198.318689pt;}
.y1e{bottom:207.647439pt;}
.ya4{bottom:209.560011pt;}
.y84{bottom:217.560011pt;}
.y6c{bottom:217.713708pt;}
.y1d{bottom:233.031193pt;}
.y6b{bottom:237.108728pt;}
.ya3{bottom:237.560010pt;}
.y1c{bottom:245.722456pt;}
.y7e{bottom:255.560009pt;}
.y6a{bottom:256.503747pt;}
.ya2{bottom:265.560009pt;}
.y1b{bottom:271.106210pt;}
.y69{bottom:275.898767pt;}
.ya1{bottom:283.560008pt;}
.y1a{bottom:283.797474pt;}
.y68{bottom:295.293786pt;}
.ya0{bottom:301.560008pt;}
.y30{bottom:302.888742pt;}
.y83{bottom:306.560007pt;}
.y27{bottom:313.652751pt;}
.y23{bottom:314.055418pt;}
.y67{bottom:314.688806pt;}
.ycc{bottom:319.560007pt;}
.y7d{bottom:320.560007pt;}
.y82{bottom:324.560007pt;}
.y2f{bottom:325.091427pt;}
.y9f{bottom:329.560006pt;}
.y66{bottom:334.083825pt;}
.ycb{bottom:337.560006pt;}
.y9e{bottom:347.560006pt;}
.y65{bottom:353.478836pt;}
.yca{bottom:355.560005pt;}
.y19{bottom:358.766333pt;}
.y9d{bottom:365.560005pt;}
.y18{bottom:371.457597pt;}
.y64{bottom:372.873856pt;}
.yc9{bottom:373.560005pt;}
.y81{bottom:377.560004pt;}
.y9c{bottom:383.560004pt;}
.y17{bottom:384.150114pt;}
.yc8{bottom:391.560004pt;}
.y63{bottom:392.268876pt;}
.y9b{bottom:401.560003pt;}
.y80{bottom:408.560003pt;}
.y16{bottom:409.532667pt;}
.y62{bottom:411.663896pt;}
.yc7{bottom:419.560003pt;}
.y15{bottom:422.225184pt;}
.y9a{bottom:429.560002pt;}
.y61{bottom:431.058916pt;}
.yc6{bottom:437.560002pt;}
.y14{bottom:447.608938pt;}
.y60{bottom:450.453936pt;}
.y13{bottom:460.300201pt;}
.yc5{bottom:465.560001pt;}
.y5f{bottom:469.848956pt;}
.y2e{bottom:479.396883pt;}
.y99{bottom:483.560000pt;}
.y5e{bottom:489.243976pt;}
.y26{bottom:490.158225pt;}
.y22{bottom:490.563559pt;}
.y2d{bottom:501.598234pt;}
.y5d{bottom:508.638996pt;}
.y28{bottom:518.722248pt;}
.yc4{bottom:519.559998pt;}
.y5c{bottom:528.034016pt;}
.y33{bottom:535.498262pt;}
.y35{bottom:535.639595pt;}
.y37{bottom:536.716929pt;}
.y5b{bottom:547.429036pt;}
.yc3{bottom:547.559997pt;}
.yc2{bottom:565.559997pt;}
.y5a{bottom:566.824055pt;}
.y98{bottom:578.559996pt;}
.y12{bottom:582.894033pt;}
.y59{bottom:586.219075pt;}
.yc1{bottom:593.559995pt;}
.y11{bottom:595.586550pt;}
.y97{bottom:596.559995pt;}
.y58{bottom:605.614094pt;}
.y10{bottom:608.277813pt;}
.y96{bottom:614.559994pt;}
.y57{bottom:625.009114pt;}
.y95{bottom:632.559994pt;}
.yf{bottom:633.662900pt;}
.y56{bottom:644.404133pt;}
.ye{bottom:646.354164pt;}
.y91{bottom:646.559993pt;}
.yc0{bottom:647.559993pt;}
.y55{bottom:663.799153pt;}
.yd{bottom:671.737917pt;}
.y54{bottom:683.194172pt;}
.yc{bottom:684.430434pt;}
.yb{bottom:697.121697pt;}
.y53{bottom:702.589199pt;}
.ya{bottom:709.814214pt;}
.y7b{bottom:721.984209pt;}
.y52{bottom:721.984212pt;}
.y2c{bottom:730.293084pt;}
.ybf{bottom:732.559990pt;}
.y21{bottom:740.486426pt;}
.y25{bottom:740.499759pt;}
.y51{bottom:741.379225pt;}
.y7a{bottom:741.379229pt;}
.ybe{bottom:750.559989pt;}
.y2b{bottom:752.494435pt;}
.y79{bottom:760.774249pt;}
.y50{bottom:760.774252pt;}
.ybd{bottom:768.559988pt;}
.y90{bottom:771.559988pt;}
.y4f{bottom:780.169265pt;}
.y78{bottom:780.169269pt;}
.y9{bottom:786.325476pt;}
.ybc{bottom:796.559987pt;}
.y8{bottom:799.015486pt;}
.y77{bottom:799.564289pt;}
.y4e{bottom:799.564292pt;}
.ybb{bottom:814.559986pt;}
.y4d{bottom:818.959305pt;}
.y76{bottom:818.959309pt;}
.y7{bottom:824.400573pt;}
.yba{bottom:832.559985pt;}
.y6{bottom:837.093089pt;}
.y75{bottom:838.354329pt;}
.y4c{bottom:838.354332pt;}
.y5{bottom:849.784353pt;}
.y4b{bottom:857.749345pt;}
.y74{bottom:857.749349pt;}
.yb9{bottom:860.559984pt;}
.y4{bottom:875.168107pt;}
.y73{bottom:877.144369pt;}
.y4a{bottom:877.144372pt;}
.yb8{bottom:878.559983pt;}
.y3{bottom:887.859370pt;}
.y49{bottom:896.539388pt;}
.yb7{bottom:896.559983pt;}
.y2{bottom:900.551887pt;}
.y48{bottom:915.934408pt;}
.y2a{bottom:918.447901pt;}
.yb6{bottom:924.559982pt;}
.y20{bottom:926.661241pt;}
.y24{bottom:926.675908pt;}
.y47{bottom:935.329427pt;}
.y29{bottom:940.649252pt;}
.yb5{bottom:942.559981pt;}
.y46{bottom:954.724448pt;}
.y7c{bottom:958.559980pt;}
.y8f{bottom:959.559980pt;}
.yb4{bottom:960.559980pt;}
.y45{bottom:974.119467pt;}
.y32{bottom:976.887948pt;}
.y34{bottom:977.027948pt;}
.y36{bottom:978.107949pt;}
.y8e{bottom:980.559979pt;}
.yb3{bottom:988.559979pt;}
.y44{bottom:993.514485pt;}
.y8d{bottom:1001.559978pt;}
.y43{bottom:1012.909505pt;}
.yb2{bottom:1016.559978pt;}
.yb1{bottom:1034.559977pt;}
.y8c{bottom:1043.559977pt;}
.ycd{bottom:1047.559976pt;}
.yb0{bottom:1062.559976pt;}
.y31{bottom:1063.754684pt;}
.y8b{bottom:1064.559976pt;}
.y8a{bottom:1085.559975pt;}
.yaf{bottom:1090.559975pt;}
.yae{bottom:1108.559974pt;}
.h8{height:37.726430pt;}
.h2{height:40.191061pt;}
.ha{height:48.822439pt;}
.h16{height:49.399998pt;}
.h12{height:49.505857pt;}
.h11{height:51.333331pt;}
.hb{height:52.593751pt;}
.hc{height:53.080730pt;}
.hf{height:53.199998pt;}
.h3{height:54.927777pt;}
.h9{height:55.480044pt;}
.h15{height:60.799997pt;}
.h13{height:80.287997pt;}
.h14{height:84.999996pt;}
.h5{height:94.915463pt;}
.h10{height:98.815996pt;}
.h6{height:115.043319pt;}
.h7{height:121.595031pt;}
.he{height:123.519995pt;}
.h4{height:127.854396pt;}
.h1{height:1121.281299pt;}
.hd{height:1122.559973pt;}
.h0{height:1122.666667pt;}
.w4{width:715.999970pt;}
.w3{width:793.279947pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.w2{width:794.666667pt;}
.x5f{left:-6.181641pt;}
.x60{left:-2.400391pt;}
.x0{left:0.000000pt;}
.xe5{left:5.835937pt;}
.xd8{left:10.000000pt;}
.x5c{left:24.999999pt;}
.xea{left:33.999999pt;}
.x192{left:39.106444pt;}
.x18c{left:41.868162pt;}
.xd9{left:43.999998pt;}
.x18d{left:45.805662pt;}
.x13b{left:47.596678pt;}
.xda{left:50.617185pt;}
.x61{left:53.314451pt;}
.x1a7{left:54.671873pt;}
.x62{left:57.251951pt;}
.xe6{left:60.148435pt;}
.x11{left:61.453122pt;}
.x93{left:64.409177pt;}
.xdb{left:66.976560pt;}
.x94{left:68.346677pt;}
.x173{left:69.832074pt;}
.x183{left:71.071286pt;}
.xe8{left:72.725095pt;}
.x10d{left:73.785153pt;}
.x184{left:75.008786pt;}
.x95{left:76.208005pt;}
.x10e{left:77.722653pt;}
.xeb{left:79.253903pt;}
.x96{left:80.145504pt;}
.xec{left:83.191403pt;}
.x75{left:85.005856pt;}
.x14b{left:86.281246pt;}
.x1ae{left:87.217770pt;}
.x76{left:88.943355pt;}
.x100{left:90.075191pt;}
.x8d{left:92.340816pt;}
.x189{left:93.848629pt;}
.x5d{left:94.883785pt;}
.x10{left:96.000000pt;}
.xe7{left:97.234371pt;}
.x5e{left:98.821285pt;}
.xdc{left:100.664058pt;}
.x1e{left:102.156246pt;}
.xb5{left:103.510738pt;}
.x77{left:105.677730pt;}
.x63{left:107.803706pt;}
.x78{left:109.615230pt;}
.x64{left:111.741206pt;}
.x144{left:113.706493pt;}
.xe9{left:115.413081pt;}
.x18b{left:118.068354pt;}
.xc5{left:119.028316pt;}
.xb6{left:119.944331pt;}
.x8e{left:122.042964pt;}
.xc6{left:122.965815pt;}
.xb7{left:123.881831pt;}
.x18a{left:124.800395pt;}
.x6{left:125.703834pt;}
.xa6{left:126.882807pt;}
.x169{left:127.928706pt;}
.x12c{left:128.878901pt;}
.x97{left:130.177729pt;}
.x19f{left:131.207026pt;}
.x117{left:132.266596pt;}
.x8f{left:134.374994pt;}
.x118{left:135.582026pt;}
.x18e{left:136.997065pt;}
.x90{left:138.312494pt;}
.x168{left:139.672846pt;}
.x130{left:142.790033pt;}
.x165{left:145.585931pt;}
.x1f{left:147.251565pt;}
.x79{left:148.395502pt;}
.x11a{left:150.371088pt;}
.x7a{left:152.333001pt;}
.x11b{left:154.308587pt;}
.x10f{left:157.135736pt;}
.x16c{left:158.471673pt;}
.x20{left:160.820901pt;}
.x19c{left:162.153314pt;}
.x9{left:163.072130pt;}
.x15c{left:164.466790pt;}
.x124{left:167.194329pt;}
.x170{left:168.253899pt;}
.xd3{left:169.203123pt;}
.x14d{left:170.623040pt;}
.x185{left:171.634758pt;}
.x12d{left:172.697258pt;}
.x7{left:174.776140pt;}
.x8{left:176.286808pt;}
.xba{left:177.988274pt;}
.xb8{left:178.931633pt;}
.x101{left:180.439445pt;}
.x65{left:182.206047pt;}
.x193{left:183.707023pt;}
.x98{left:184.742180pt;}
.x14e{left:185.812492pt;}
.x21{left:186.787895pt;}
.x99{left:188.679680pt;}
.x22{left:190.315239pt;}
.x102{left:192.245109pt;}
.x66{left:194.004875pt;}
.x45{left:195.734372pt;}
.x7b{left:197.128898pt;}
.x5b{left:198.718742pt;}
.x9a{left:200.478507pt;}
.x13c{left:201.446281pt;}
.x197{left:203.933463pt;}
.x12e{left:205.400382pt;}
.x23{left:207.329886pt;}
.x12f{left:209.337882pt;}
.x24{left:210.857230pt;}
.x1{left:212.604170pt;}
.x145{left:215.056098pt;}
.x3a{left:216.656241pt;}
.xdd{left:218.374991pt;}
.xc7{left:219.707999pt;}
.x7c{left:221.184561pt;}
.xb{left:223.405512pt;}
.x46{left:225.498042pt;}
.xa7{left:226.557608pt;}
.x2{left:228.297516pt;}
.xd4{left:230.560313pt;}
.x152{left:232.249014pt;}
.x47{left:234.070308pt;}
.x186{left:236.917959pt;}
.xa8{left:238.889639pt;}
.x13d{left:240.322255pt;}
.x19d{left:241.224599pt;}
.x157{left:242.355459pt;}
.x13e{left:244.259755pt;}
.x103{left:245.654286pt;}
.x153{left:247.438466pt;}
.x110{left:250.302724pt;}
.x7d{left:252.335927pt;}
.x104{left:253.624989pt;}
.x1aa{left:254.862294pt;}
.x91{left:256.375966pt;}
.x48{left:258.160150pt;}
.x14c{left:259.575154pt;}
.x119{left:260.686513pt;}
.x171{left:262.104481pt;}
.xb9{left:263.006825pt;}
.x17a{left:264.209950pt;}
.xed{left:265.820302pt;}
.x49{left:266.732416pt;}
.x17b{left:268.147450pt;}
.x3b{left:269.286122pt;}
.x18f{left:271.781239pt;}
.x3c{left:273.223621pt;}
.xbb{left:274.832996pt;}
.x125{left:276.582997pt;}
.xee{left:277.625965pt;}
.xbc{left:278.770496pt;}
.x67{left:280.616199pt;}
.xef{left:281.563465pt;}
.x105{left:282.575183pt;}
.x1af{left:283.491199pt;}
.x68{left:284.553699pt;}
.x7e{left:285.558582pt;}
.xa9{left:287.479480pt;}
.x4a{left:288.655266pt;}
.x1a0{left:289.732410pt;}
.xaa{left:291.416980pt;}
.x9b{left:292.654285pt;}
.x7f{left:293.720691pt;}
.x25{left:295.677539pt;}
.x4b{left:296.653313pt;}
.x26{left:299.204883pt;}
.x111{left:300.916003pt;}
.xbd{left:303.133776pt;}
.xde{left:304.773425pt;}
.x11c{left:306.326159pt;}
.x16a{left:307.802722pt;}
.x1ab{left:308.770495pt;}
.x17{left:309.859367pt;}
.x16b{left:311.740222pt;}
.x146{left:314.080070pt;}
.x172{left:315.828112pt;}
.x34{left:316.921867pt;}
.x3d{left:319.062487pt;}
.x19a{left:320.432604pt;}
.x69{left:321.604479pt;}
.xdf{left:322.765612pt;}
.x3e{left:324.168932pt;}
.x6a{left:325.541979pt;}
.x4c{left:326.704093pt;}
.x176{left:328.802721pt;}
.x80{left:330.573228pt;}
.x9c{left:332.261705pt;}
.x92{left:333.355455pt;}
.x12{left:335.874986pt;}
.xf4{left:337.570299pt;}
.x16d{left:339.391588pt;}
.x13f{left:341.104478pt;}
.x174{left:342.132799pt;}
.x16e{left:343.329087pt;}
.xab{left:344.511705pt;}
.x126{left:345.913072pt;}
.x106{left:346.915024pt;}
.xf5{left:349.123032pt;}
.x107{left:350.852524pt;}
.x131{left:351.860337pt;}
.x9d{left:353.166001pt;}
.x18{left:354.703115pt;}
.x132{left:355.797837pt;}
.x9e{left:357.103501pt;}
.x19{left:358.230459pt;}
.x35{left:359.231405pt;}
.x140{left:361.530258pt;}
.x36{left:362.758748pt;}
.x19e{left:364.045883pt;}
.x141{left:365.468735pt;}
.x127{left:366.523422pt;}
.x158{left:367.521469pt;}
.x154{left:368.803696pt;}
.xd{left:370.440296pt;}
.x3f{left:371.692367pt;}
.x27{left:373.006760pt;}
.x1a{left:375.320302pt;}
.x28{left:376.534103pt;}
.x13{left:378.914047pt;}
.x155{left:380.055648pt;}
.x1a1{left:381.156234pt;}
.x14{left:382.441390pt;}
.x37{left:383.656234pt;}
.x29{left:384.771408pt;}
.xf0{left:385.674789pt;}
.x2a{left:388.298751pt;}
.x4d{left:390.032215pt;}
.x166{left:391.249007pt;}
.x81{left:392.999007pt;}
.xbe{left:396.054671pt;}
.xa{left:397.268318pt;}
.x4e{left:398.194324pt;}
.x1b{left:400.004871pt;}
.x9f{left:401.858382pt;}
.x6b{left:403.581038pt;}
.x17f{left:404.979476pt;}
.x4f{left:406.855457pt;}
.x190{left:408.301741pt;}
.xa0{left:409.829085pt;}
.x112{left:411.603498pt;}
.x38{left:412.813459pt;}
.x15d{left:415.085921pt;}
.x1b0{left:416.005847pt;}
.x16f{left:417.669905pt;}
.x6c{left:419.713850pt;}
.x1c{left:420.916003pt;}
.x50{left:422.851550pt;}
.xc8{left:425.114241pt;}
.xf6{left:427.114240pt;}
.xc9{left:429.051741pt;}
.x108{left:430.245099pt;}
.x51{left:431.895495pt;}
.x39{left:433.724591pt;}
.x11d{left:435.429670pt;}
.xac{left:436.755842pt;}
.x133{left:437.815412pt;}
.x52{left:439.893541pt;}
.x15{left:441.248227pt;}
.xf7{left:442.918927pt;}
.x16{left:444.775570pt;}
.xe0{left:446.249981pt;}
.x11e{left:447.529279pt;}
.x53{left:448.575181pt;}
.x167{left:449.757794pt;}
.x194{left:450.889629pt;}
.x175{left:452.177716pt;}
.x54{left:453.756822pt;}
.x159{left:455.082989pt;}
.xd5{left:456.614239pt;}
.x142{left:457.883770pt;}
.x82{left:459.416973pt;}
.xca{left:461.262677pt;}
.x19b{left:462.237285pt;}
.x113{left:463.905254pt;}
.xcb{left:465.200177pt;}
.x195{left:466.263652pt;}
.x1d{left:467.402025pt;}
.xd6{left:469.165996pt;}
.x55{left:471.099594pt;}
.xbf{left:472.719707pt;}
.x134{left:473.963848pt;}
.xf8{left:475.205058pt;}
.x191{left:476.367168pt;}
.xc0{left:480.690410pt;}
.xcc{left:481.633770pt;}
.x83{left:483.773417pt;}
.xcd{left:485.571270pt;}
.x84{left:487.710917pt;}
.x135{left:490.397441pt;}
.x14f{left:491.946269pt;}
.x40{left:493.385722pt;}
.x136{left:494.334941pt;}
.x2b{left:495.964763pt;}
.x41{left:497.418925pt;}
.x177{left:498.573222pt;}
.x2c{left:499.492106pt;}
.x1ac{left:500.614237pt;}
.x178{left:502.510721pt;}
.x56{left:503.830062pt;}
.x11f{left:506.072245pt;}
.x6d{left:508.136698pt;}
.x120{left:510.009745pt;}
.xa1{left:513.284159pt;}
.x2d{left:516.506754pt;}
.x187{left:518.852517pt;}
.x2e{left:520.034098pt;}
.x147{left:523.423812pt;}
.x156{left:524.847634pt;}
.x42{left:526.075173pt;}
.x15a{left:527.461892pt;}
.x121{left:530.080056pt;}
.x43{left:531.120095pt;}
.x196{left:532.374001pt;}
.x57{left:533.607404pt;}
.xad{left:535.453103pt;}
.x128{left:537.339822pt;}
.xae{left:539.390603pt;}
.x198{left:540.707008pt;}
.xc1{left:541.605446pt;}
.x58{left:542.624006pt;}
.xd7{left:544.431623pt;}
.xc2{left:545.542946pt;}
.x1a8{left:546.476540pt;}
.xf9{left:548.807594pt;}
.x143{left:550.140607pt;}
.x179{left:551.107399pt;}
.xfa{left:552.745094pt;}
.xe{left:554.588444pt;}
.x148{left:555.634748pt;}
.xce{left:556.685524pt;}
.x149{left:559.572248pt;}
.xcf{left:560.623024pt;}
.x137{left:561.962867pt;}
.x199{left:563.108375pt;}
.x6e{left:564.998024pt;}
.x138{left:565.900367pt;}
.x15b{left:567.069313pt;}
.x6f{left:568.935524pt;}
.xc{left:569.895123pt;}
.xf{left:571.119124pt;}
.x139{left:574.062476pt;}
.x17c{left:575.169898pt;}
.xe1{left:576.882788pt;}
.xf1{left:578.769507pt;}
.x59{left:579.996074pt;}
.xe2{left:581.382788pt;}
.x114{left:582.973609pt;}
.x85{left:584.063452pt;}
.x70{left:585.669898pt;}
.x109{left:587.054663pt;}
.x44{left:588.104468pt;}
.x71{left:589.607398pt;}
.x86{left:591.924780pt;}
.x5a{left:593.148417pt;}
.xe3{left:594.874975pt;}
.x87{left:595.862280pt;}
.x180{left:597.206030pt;}
.x115{left:598.716772pt;}
.xd0{left:600.271460pt;}
.x1a2{left:601.362280pt;}
.x17d{left:602.465796pt;}
.xaf{left:603.395483pt;}
.xfb{left:604.937475pt;}
.xb0{left:607.332983pt;}
.x116{left:610.269506pt;}
.xe4{left:612.578099pt;}
.xc3{left:613.471654pt;}
.x1a5{left:614.459935pt;}
.x4{left:616.152381pt;}
.x3{left:617.207382pt;}
.x122{left:618.318334pt;}
.x2f{left:619.912633pt;}
.xfc{left:621.371068pt;}
.x129{left:623.055638pt;}
.x88{left:624.265599pt;}
.x5{left:625.403643pt;}
.x30{left:628.149938pt;}
.xc4{left:629.508763pt;}
.x15e{left:630.657201pt;}
.x31{left:631.677281pt;}
.x10a{left:633.368138pt;}
.x15f{left:634.594701pt;}
.xfd{left:636.560520pt;}
.x188{left:638.228489pt;}
.x1a9{left:639.356419pt;}
.xfe{left:640.498020pt;}
.xd1{left:642.613255pt;}
.x32{left:643.619664pt;}
.xf2{left:645.180638pt;}
.x17e{left:646.085911pt;}
.x33{left:647.147007pt;}
.x150{left:649.015599pt;}
.x13a{left:651.431614pt;}
.x72{left:653.010715pt;}
.x14a{left:654.999973pt;}
.x73{left:656.948215pt;}
.x160{left:659.258762pt;}
.x123{left:661.863254pt;}
.x161{left:663.196262pt;}
.x1a3{left:666.426731pt;}
.x1a4{left:670.364230pt;}
.x162{left:674.448215pt;}
.xa2{left:676.293917pt;}
.x163{left:678.385715pt;}
.x89{left:679.315401pt;}
.xa3{left:680.231417pt;}
.x1a6{left:682.258761pt;}
.x8a{left:683.252901pt;}
.x12a{left:685.406221pt;}
.x181{left:686.449191pt;}
.xa4{left:688.393526pt;}
.x12b{left:689.343721pt;}
.xb1{left:691.011691pt;}
.xa5{left:692.331026pt;}
.x1ad{left:693.462862pt;}
.xb2{left:694.949190pt;}
.xd2{left:695.913058pt;}
.x151{left:697.243136pt;}
.x74{left:701.238253pt;}
.xff{left:705.459932pt;}
.xf3{left:711.181611pt;}
.xb3{left:724.651338pt;}
.x10b{left:726.678681pt;}
.xb4{left:728.588837pt;}
.x10c{left:730.616181pt;}
.x182{left:735.182587pt;}
.x8b{left:740.114227pt;}
.x164{left:742.171845pt;}
.x8c{left:744.051727pt;}
}




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