
    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_ca9576b9e6b9aeecc3f29c07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999023;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_2d45c76185cd3546208de7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_765a2cf1da7e30567c8996d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_fd05634c739ed4ee20cfa10d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c42010868402a67a39c5f5bd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d517e9ee94615d56d3e6d7d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_d3e93eff8fadeb17b600cfdf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1cf4afd40a4f30e2d14365cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:87.839965px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.359999px;}
.ls5{letter-spacing:36.071986px;}
.ls1{letter-spacing:55.030298px;}
.ls6{letter-spacing:64.367974px;}
.ls7{letter-spacing:69.178292px;}
.ls4{letter-spacing:83.326287px;}
.ls2{letter-spacing:90.400284px;}
.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;}
}
.ws0{word-spacing:-72.167731px;}
.ws11{word-spacing:-65.015974px;}
.ws3{word-spacing:-40.430144px;}
.ws1{word-spacing:-34.703986px;}
.ws40{word-spacing:-31.754147px;}
.ws3d{word-spacing:-30.199628px;}
.ws1d{word-spacing:-21.641751px;}
.wsf{word-spacing:-21.174472px;}
.ws1b{word-spacing:-15.963834px;}
.ws1c{word-spacing:-14.402154px;}
.ws1e{word-spacing:-13.013995px;}
.ws1f{word-spacing:-11.625835px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.162084px;}
.ws41{word-spacing:1.457402px;}
.ws42{word-spacing:2.177284px;}
.ws5{word-spacing:3.507971px;}
.ws33{word-spacing:23.600355px;}
.ws9{word-spacing:30.167988px;}
.wse{word-spacing:63.143975px;}
.ws12{word-spacing:69.997494px;}
.ws6{word-spacing:70.271972px;}
.ws1a{word-spacing:82.819680px;}
.ws17{word-spacing:87.997911px;}
.ws13{word-spacing:88.342453px;}
.ws15{word-spacing:89.568144px;}
.ws19{word-spacing:92.209910px;}
.ws16{word-spacing:94.608221px;}
.wsb{word-spacing:98.567961px;}
.ws14{word-spacing:98.659321px;}
.wsa{word-spacing:101.447959px;}
.ws20{word-spacing:101.699961px;}
.ws8{word-spacing:111.395475px;}
.ws10{word-spacing:121.607951px;}
.wsc{word-spacing:123.047951px;}
.ws29{word-spacing:124.019763px;}
.ws21{word-spacing:130.933058px;}
.ws34{word-spacing:131.866255px;}
.ws7{word-spacing:136.522914px;}
.ws37{word-spacing:154.711420px;}
.wsd{word-spacing:163.367935px;}
.ws22{word-spacing:166.500293px;}
.ws18{word-spacing:167.458102px;}
.ws23{word-spacing:181.612101px;}
.ws36{word-spacing:186.127680px;}
.ws3c{word-spacing:197.899845px;}
.ws25{word-spacing:224.091789px;}
.ws3f{word-spacing:230.060968px;}
.ws39{word-spacing:246.871315px;}
.ws38{word-spacing:250.471351px;}
.ws3e{word-spacing:276.391296px;}
.ws3a{word-spacing:278.551308px;}
.ws35{word-spacing:296.761044px;}
.ws3b{word-spacing:332.551298px;}
.ws2e{word-spacing:475.379764px;}
.ws26{word-spacing:542.339737px;}
.ws31{word-spacing:596.339769px;}
.ws27{word-spacing:597.059714px;}
.ws30{word-spacing:628.720984px;}
.ws2c{word-spacing:661.859735px;}
.ws28{word-spacing:670.499735px;}
.ws2f{word-spacing:671.219643px;}
.ws2b{word-spacing:675.539734px;}
.ws24{word-spacing:679.859729px;}
.ws2a{word-spacing:700.739721px;}
.ws32{word-spacing:708.659718px;}
.ws2d{word-spacing:749.699702px;}
._3d{margin-left:-29.860657px;}
._1{margin-left:-11.386054px;}
._3c{margin-left:-3.553852px;}
._11{margin-left:-2.221930px;}
._3{margin-left:-1.150042px;}
._0{width:1.089667px;}
._4{width:2.166293px;}
._2{width:3.369990px;}
._10{width:42.240960px;}
._4a{width:61.254180px;}
._6{width:69.911972px;}
._5{width:78.623969px;}
._40{width:86.399967px;}
._7{width:88.017295px;}
._e{width:94.758442px;}
._b{width:106.028914px;}
._f{width:107.035613px;}
._32{width:108.750650px;}
._43{width:111.779717px;}
._3f{width:121.633806px;}
._16{width:123.873070px;}
._3e{width:127.439950px;}
._14{width:135.079866px;}
._1c{width:136.943695px;}
._3a{width:139.860058px;}
._31{width:141.814827px;}
._a{width:142.991943px;}
._42{width:144.170677px;}
._47{width:145.512187px;}
._2f{width:146.788459px;}
._37{width:147.943047px;}
._28{width:149.274290px;}
._46{width:150.597660px;}
._8{width:152.052971px;}
._29{width:153.207523px;}
._20{width:154.878679px;}
._1f{width:157.460243px;}
._15{width:158.500017px;}
._35{width:171.885275px;}
._12{width:172.934571px;}
._2e{width:174.242172px;}
._17{width:176.251047px;}
._23{width:177.292275px;}
._2c{width:178.650321px;}
._d{width:181.810896px;}
._1a{width:183.194462px;}
._27{width:186.245526px;}
._13{width:187.407285px;}
._24{width:189.303869px;}
._38{width:192.035596px;}
._c{width:193.896091px;}
._44{width:198.599845px;}
._19{width:201.352613px;}
._1d{width:203.307071px;}
._33{width:204.364329px;}
._4c{width:206.377236px;}
._21{width:208.372331px;}
._36{width:210.530409px;}
._2b{width:212.284219px;}
._2d{width:214.650270px;}
._30{width:218.321588px;}
._1b{width:220.938179px;}
._9{width:232.837107px;}
._4b{width:234.399642px;}
._4d{width:235.608869px;}
._45{width:240.943751px;}
._4e{width:242.762263px;}
._4f{width:246.036016px;}
._50{width:249.957163px;}
._41{width:256.027293px;}
._51{width:259.192158px;}
._52{width:260.827789px;}
._25{width:324.366331px;}
._22{width:382.983994px;}
._18{width:435.933800px;}
._26{width:475.673877px;}
._1e{width:505.563533px;}
._49{width:512.384915px;}
._48{width:521.862388px;}
._34{width:601.055760px;}
._3b{width:607.157757px;}
._39{width:678.625649px;}
._2a{width:991.595123px;}
.fc5{color:rgb(67,128,134);}
.fc2{color:rgb(160,77,163);}
.fc1{color:rgb(66,68,86);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:48.239981px;}
.fsb{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs7{font-size:77.759969px;}
.fs6{font-size:84.239966px;}
.fsa{font-size:95.759962px;}
.fs5{font-size:120.239952px;}
.fse{font-size:131.759947px;}
.fs1{font-size:143.999942px;}
.fsd{font-size:156.239938px;}
.fs2{font-size:167.759933px;}
.fs3{font-size:215.999914px;}
.fs0{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y96{bottom:55.140335px;}
.y32{bottom:56.400334px;}
.yb4{bottom:67.020330px;}
.yb2{bottom:71.160329px;}
.y48{bottom:73.140328px;}
.y104{bottom:77.640326px;}
.y51{bottom:84.120323px;}
.y47{bottom:90.060321px;}
.yf2{bottom:94.560319px;}
.ye3{bottom:99.420317px;}
.y31{bottom:100.500317px;}
.ya7{bottom:101.940316px;}
.y46{bottom:106.800314px;}
.yb1{bottom:117.780310px;}
.y22{bottom:118.320310px;}
.yd6{bottom:121.200309px;}
.y17{bottom:122.820308px;}
.y103{bottom:123.000308px;}
.yf1{bottom:126.240307px;}
.y43{bottom:127.320306px;}
.y50{bottom:127.860306px;}
.yc7{bottom:130.740305px;}
.ya6{bottom:130.920305px;}
.ybd{bottom:131.100305px;}
.yd0{bottom:133.080304px;}
.ye2{bottom:133.980303px;}
.y30{bottom:143.160300px;}
.y42{bottom:144.060299px;}
.ybe{bottom:148.920297px;}
.y21{bottom:151.980296px;}
.yfc{bottom:155.760295px;}
.y4f{bottom:156.840294px;}
.yf0{bottom:157.920294px;}
.ya5{bottom:159.900293px;}
.yb0{bottom:164.400291px;}
.yd5{bottom:172.500288px;}
.y45{bottom:172.860288px;}
.ye1{bottom:173.040288px;}
.y15{bottom:173.220288px;}
.ybc{bottom:180.780285px;}
.ycf{bottom:181.320284px;}
.y2f{bottom:185.820283px;}
.ya4{bottom:188.880281px;}
.y44{bottom:189.600281px;}
.yfb{bottom:190.320281px;}
.ybf{bottom:193.920279px;}
.yef{bottom:194.100279px;}
.y20{bottom:199.680277px;}
.y6{bottom:207.240274px;}
.ye0{bottom:207.600274px;}
.yaf{bottom:211.020273px;}
.ya3{bottom:217.860270px;}
.y102{bottom:222.720268px;}
.y14{bottom:223.620268px;}
.y57{bottom:223.693916px;}
.yd4{bottom:223.800267px;}
.yee{bottom:225.780267px;}
.yce{bottom:229.380265px;}
.ybb{bottom:230.640265px;}
.ye{bottom:232.620264px;}
.y2e{bottom:232.800264px;}
.y94{bottom:238.633910px;}
.yc0{bottom:238.920261px;}
.ydf{bottom:246.660258px;}
.ya2{bottom:246.840258px;}
.y1f{bottom:247.200258px;}
.y93{bottom:253.393904px;}
.y4e{bottom:256.020255px;}
.y2d{bottom:256.200255px;}
.yed{bottom:257.460254px;}
.yae{bottom:257.640254px;}
.y41{bottom:263.940251px;}
.y101{bottom:268.080250px;}
.y92{bottom:268.333898px;}
.ya1{bottom:275.820247px;}
.ycd{bottom:277.440246px;}
.y13{bottom:278.520246px;}
.yba{bottom:280.320245px;}
.y40{bottom:280.680245px;}
.yde{bottom:281.220245px;}
.yd{bottom:283.020244px;}
.y91{bottom:283.093892px;}
.yc1{bottom:283.920243px;}
.y4d{bottom:285.000243px;}
.yec{bottom:293.640240px;}
.y1e{bottom:294.900239px;}
.y90{bottom:297.853886px;}
.yfa{bottom:298.500238px;}
.y2c{bottom:298.860237px;}
.y5{bottom:302.640236px;}
.ya0{bottom:304.800235px;}
.yad{bottom:304.980235px;}
.y35{bottom:309.660233px;}
.y8f{bottom:312.613880px;}
.ydd{bottom:315.780231px;}
.y55{bottom:319.920229px;}
.yeb{bottom:325.320227px;}
.ycc{bottom:325.500227px;}
.y34{bottom:326.400226px;}
.y8e{bottom:327.373874px;}
.y12{bottom:328.920225px;}
.yd3{bottom:330.000225px;}
.yb9{bottom:330.180225px;}
.yc{bottom:333.420224px;}
.y9f{bottom:333.780223px;}
.yf9{bottom:337.560222px;}
.y2b{bottom:341.700220px;}
.y8d{bottom:342.313868px;}
.y1d{bottom:342.420220px;}
.y3f{bottom:346.740218px;}
.y4{bottom:350.340217px;}
.yac{bottom:354.120215px;}
.ydc{bottom:354.840215px;}
.yea{bottom:357.000214px;}
.y8c{bottom:357.073862px;}
.y9e{bottom:362.760212px;}
.y3e{bottom:363.660212px;}
.y100{bottom:367.800210px;}
.y8b{bottom:371.833856px;}
.yf8{bottom:372.120208px;}
.ycb{bottom:373.740208px;}
.yc2{bottom:373.920207px;}
.y54{bottom:374.820207px;}
.y4c{bottom:376.260206px;}
.yb8{bottom:380.040205px;}
.y3d{bottom:380.400205px;}
.yd2{bottom:381.300204px;}
.yb{bottom:383.820203px;}
.y2a{bottom:384.360203px;}
.y8a{bottom:386.593851px;}
.ydb{bottom:389.400201px;}
.y1c{bottom:390.120201px;}
.y9d{bottom:391.740200px;}
.ye9{bottom:393.180200px;}
.yab{bottom:400.740197px;}
.y89{bottom:401.533845px;}
.yf7{bottom:406.680194px;}
.y3{bottom:412.980192px;}
.yff{bottom:413.160192px;}
.y88{bottom:416.293839px;}
.yc3{bottom:418.920189px;}
.y4b{bottom:420.180189px;}
.y9c{bottom:420.720189px;}
.yca{bottom:421.800188px;}
.yda{bottom:423.960187px;}
.ye8{bottom:424.860187px;}
.y29{bottom:427.020186px;}
.y53{bottom:429.720185px;}
.y87{bottom:431.053833px;}
.yd1{bottom:432.600184px;}
.y11{bottom:434.220183px;}
.y1b{bottom:437.640182px;}
.ya{bottom:438.720182px;}
.y3c{bottom:439.980181px;}
.yf6{bottom:445.740179px;}
.y86{bottom:445.813827px;}
.yaa{bottom:447.360178px;}
.y9b{bottom:449.700177px;}
.y3b{bottom:455.280175px;}
.ye7{bottom:456.540174px;}
.y85{bottom:460.573821px;}
.yd9{bottom:463.020172px;}
.yc4{bottom:463.920171px;}
.y28{bottom:468.780169px;}
.yc9{bottom:469.860169px;}
.y3a{bottom:470.580169px;}
.y84{bottom:475.513815px;}
.y9a{bottom:478.680166px;}
.yb7{bottom:479.580165px;}
.yf5{bottom:480.300165px;}
.y52{bottom:484.620163px;}
.y2{bottom:484.980163px;}
.y1a{bottom:485.340163px;}
.y9{bottom:489.120161px;}
.y83{bottom:490.273809px;}
.ye6{bottom:492.720160px;}
.ya9{bottom:494.700159px;}
.yd8{bottom:497.580158px;}
.y36{bottom:500.280157px;}
.y82{bottom:505.033803px;}
.y99{bottom:507.660154px;}
.yc5{bottom:508.920153px;}
.y27{bottom:510.540153px;}
.yfe{bottom:512.880152px;}
.yc8{bottom:517.920150px;}
.yf4{bottom:519.360149px;}
.y81{bottom:519.793797px;}
.ye5{bottom:524.400147px;}
.y4a{bottom:527.820146px;}
.y39{bottom:529.080145px;}
.yb6{bottom:529.260145px;}
.y19{bottom:532.860144px;}
.y80{bottom:534.553791px;}
.y98{bottom:536.640142px;}
.y8{bottom:539.520141px;}
.yd7{bottom:540.780141px;}
.ya8{bottom:544.560139px;}
.y38{bottom:546.000139px;}
.y26{bottom:546.540138px;}
.y7f{bottom:549.493785px;}
.yf3{bottom:553.920135px;}
.yc6{bottom:554.100135px;}
.ye4{bottom:556.080135px;}
.y49{bottom:556.800134px;}
.y1{bottom:556.980134px;}
.yfd{bottom:558.240134px;}
.y37{bottom:562.740132px;}
.y7e{bottom:564.253779px;}
.y97{bottom:565.620131px;}
.yb5{bottom:565.980131px;}
.y18{bottom:572.100128px;}
.y7d{bottom:579.013774px;}
.y7c{bottom:593.773768px;}
.y25{bottom:600.720117px;}
.y10{bottom:600.900117px;}
.y7b{bottom:608.713762px;}
.y7a{bottom:623.473756px;}
.y23{bottom:630.780105px;}
.y7{bottom:630.960105px;}
.y33{bottom:633.120104px;}
.y16{bottom:633.300104px;}
.yb3{bottom:637.800102px;}
.y79{bottom:638.233750px;}
.y78{bottom:652.993744px;}
.y24{bottom:665.520091px;}
.yf{bottom:665.700091px;}
.y77{bottom:667.753738px;}
.y76{bottom:682.693732px;}
.y75{bottom:697.453726px;}
.y74{bottom:712.213720px;}
.y73{bottom:726.973714px;}
.y72{bottom:741.733709px;}
.y71{bottom:756.673703px;}
.y70{bottom:771.433697px;}
.y6f{bottom:786.193691px;}
.y6e{bottom:800.953685px;}
.y6d{bottom:815.713679px;}
.y6c{bottom:830.653673px;}
.y95{bottom:842.533668px;}
.y6b{bottom:845.413667px;}
.y6a{bottom:860.173661px;}
.y69{bottom:874.933655px;}
.y68{bottom:889.873649px;}
.y67{bottom:904.633643px;}
.y66{bottom:919.393637px;}
.y65{bottom:934.153632px;}
.y64{bottom:948.913626px;}
.y63{bottom:963.853620px;}
.y62{bottom:978.613614px;}
.y61{bottom:993.373608px;}
.y60{bottom:1008.133602px;}
.y5f{bottom:1022.893596px;}
.y5d{bottom:1080.853573px;}
.y5e{bottom:1081.033573px;}
.y58{bottom:1081.393573px;}
.y5c{bottom:1081.573573px;}
.y59{bottom:1081.753572px;}
.y5b{bottom:1082.293572px;}
.y5a{bottom:1082.473572px;}
.y56{bottom:1106.773562px;}
.h12{height:44.000139px;}
.h6{height:48.937480px;}
.h11{height:49.253887px;}
.h7{height:49.886699px;}
.he{height:54.507634px;}
.hd{height:60.418101px;}
.h15{height:65.086849px;}
.hf{height:66.349309px;}
.hb{height:70.925597px;}
.ha{height:71.076065px;}
.h9{height:76.836063px;}
.h13{height:84.898091px;}
.h8{height:90.884495px;}
.h17{height:120.179483px;}
.h4{height:126.884832px;}
.h2{height:131.343697px;}
.h14{height:142.507912px;}
.h3{height:153.015408px;}
.hc{height:164.676028px;}
.h5{height:170.648369px;}
.h1{height:189.419690px;}
.h16{height:197.015546px;}
.h0{height:892.500000px;}
.h10{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:102.211159px;}
.x30{left:104.820315px;}
.x7{left:129.226448px;}
.x34{left:141.646443px;}
.x2e{left:154.140295px;}
.x2f{left:155.220295px;}
.x1{left:156.226438px;}
.x2d{left:157.560294px;}
.x2c{left:159.000293px;}
.x2{left:163.786434px;}
.x3{left:169.186432px;}
.x1c{left:186.000283px;}
.x36{left:188.446425px;}
.x35{left:190.786424px;}
.x4{left:199.405942px;}
.x32{left:204.826418px;}
.x6{left:217.426413px;}
.x24{left:227.040266px;}
.x1d{left:238.560262px;}
.x37{left:261.706395px;}
.x25{left:267.900250px;}
.x33{left:284.566386px;}
.x1e{left:291.300240px;}
.x26{left:308.760233px;}
.x12{left:328.666369px;}
.x11{left:330.826368px;}
.xc{left:332.986367px;}
.xe{left:339.106364px;}
.x1f{left:343.860219px;}
.x27{left:349.800217px;}
.xd{left:372.946351px;}
.x31{left:379.786348px;}
.x28{left:390.660201px;}
.xf{left:393.286343px;}
.x20{left:396.420198px;}
.x29{left:431.520184px;}
.x9{left:444.766322px;}
.x21{left:449.160177px;}
.x18{left:466.546313px;}
.x16{left:469.246312px;}
.x2a{left:472.560168px;}
.x19{left:483.646307px;}
.x15{left:492.286303px;}
.x13{left:493.546303px;}
.x22{left:501.720156px;}
.x2b{left:513.420152px;}
.x1a{left:524.146290px;}
.x17{left:529.366288px;}
.x23{left:554.280135px;}
.x14{left:560.326276px;}
.x10{left:570.406272px;}
.xb{left:571.846271px;}
.x5{left:588.226265px;}
.x1b{left:633.300104px;}
.xa{left:828.346169px;}
.x38{left:964.606114px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:78.079969pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:32.063987pt;}
.ls1{letter-spacing:48.915820pt;}
.ls6{letter-spacing:57.215977pt;}
.ls7{letter-spacing:61.491815pt;}
.ls4{letter-spacing:74.067810pt;}
.ls2{letter-spacing:80.355808pt;}
.ws0{word-spacing:-64.149094pt;}
.ws11{word-spacing:-57.791977pt;}
.ws3{word-spacing:-35.937906pt;}
.ws1{word-spacing:-30.847988pt;}
.ws40{word-spacing:-28.225909pt;}
.ws3d{word-spacing:-26.844113pt;}
.ws1d{word-spacing:-19.237112pt;}
.wsf{word-spacing:-18.821752pt;}
.ws1b{word-spacing:-14.190074pt;}
.ws1c{word-spacing:-12.801915pt;}
.ws1e{word-spacing:-11.567995pt;}
.ws1f{word-spacing:-10.334076pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.144075pt;}
.ws41{word-spacing:1.295469pt;}
.ws42{word-spacing:1.935364pt;}
.ws5{word-spacing:3.118197pt;}
.ws33{word-spacing:20.978093pt;}
.ws9{word-spacing:26.815989pt;}
.wse{word-spacing:56.127978pt;}
.ws12{word-spacing:62.219995pt;}
.ws6{word-spacing:62.463975pt;}
.ws1a{word-spacing:73.617494pt;}
.ws17{word-spacing:78.220366pt;}
.ws13{word-spacing:78.526625pt;}
.ws15{word-spacing:79.616128pt;}
.ws19{word-spacing:81.964364pt;}
.ws16{word-spacing:84.096197pt;}
.wsb{word-spacing:87.615965pt;}
.ws14{word-spacing:87.697175pt;}
.wsa{word-spacing:90.175964pt;}
.ws20{word-spacing:90.399965pt;}
.ws8{word-spacing:99.018200pt;}
.ws10{word-spacing:108.095957pt;}
.wsc{word-spacing:109.375956pt;}
.ws29{word-spacing:110.239790pt;}
.ws21{word-spacing:116.384940pt;}
.ws34{word-spacing:117.214449pt;}
.ws7{word-spacing:121.353701pt;}
.ws37{word-spacing:137.521262pt;}
.wsd{word-spacing:145.215942pt;}
.ws22{word-spacing:148.000261pt;}
.ws18{word-spacing:148.851646pt;}
.ws23{word-spacing:161.432979pt;}
.ws36{word-spacing:165.446827pt;}
.ws3c{word-spacing:175.910973pt;}
.ws25{word-spacing:199.192701pt;}
.ws3f{word-spacing:204.498638pt;}
.ws39{word-spacing:219.441169pt;}
.ws38{word-spacing:222.641201pt;}
.ws3e{word-spacing:245.681152pt;}
.ws3a{word-spacing:247.601163pt;}
.ws35{word-spacing:263.787594pt;}
.ws3b{word-spacing:295.601153pt;}
.ws2e{word-spacing:422.559790pt;}
.ws26{word-spacing:482.079766pt;}
.ws31{word-spacing:530.079795pt;}
.ws27{word-spacing:530.719746pt;}
.ws30{word-spacing:558.863097pt;}
.ws2c{word-spacing:588.319764pt;}
.ws28{word-spacing:595.999764pt;}
.ws2f{word-spacing:596.639683pt;}
.ws2b{word-spacing:600.479764pt;}
.ws24{word-spacing:604.319759pt;}
.ws2a{word-spacing:622.879752pt;}
.ws32{word-spacing:629.919749pt;}
.ws2d{word-spacing:666.399735pt;}
._3d{margin-left:-26.542807pt;}
._1{margin-left:-10.120937pt;}
._3c{margin-left:-3.158980pt;}
._11{margin-left:-1.975049pt;}
._3{margin-left:-1.022259pt;}
._0{width:0.968593pt;}
._4{width:1.925594pt;}
._2{width:2.995546pt;}
._10{width:37.547520pt;}
._4a{width:54.448160pt;}
._6{width:62.143975pt;}
._5{width:69.887972pt;}
._40{width:76.799971pt;}
._7{width:78.237595pt;}
._e{width:84.229726pt;}
._b{width:94.247924pt;}
._f{width:95.142767pt;}
._32{width:96.667245pt;}
._43{width:99.359749pt;}
._3f{width:108.118939pt;}
._16{width:110.109396pt;}
._3e{width:113.279956pt;}
._14{width:120.070992pt;}
._1c{width:121.727729pt;}
._3a{width:124.320052pt;}
._31{width:126.057624pt;}
._a{width:127.103949pt;}
._42{width:128.151713pt;}
._47{width:129.344167pt;}
._2f{width:130.478630pt;}
._37{width:131.504931pt;}
._28{width:132.688258pt;}
._46{width:133.864587pt;}
._8{width:135.158196pt;}
._29{width:136.184465pt;}
._20{width:137.669936pt;}
._1f{width:139.964661pt;}
._15{width:140.888904pt;}
._35{width:152.786911pt;}
._12{width:153.719619pt;}
._2e{width:154.881931pt;}
._17{width:156.667597pt;}
._23{width:157.593134pt;}
._2c{width:158.800285pt;}
._d{width:161.609685pt;}
._1a{width:162.839522pt;}
._27{width:165.551578pt;}
._13{width:166.584253pt;}
._24{width:168.270106pt;}
._38{width:170.698308pt;}
._c{width:172.352081pt;}
._44{width:176.533196pt;}
._19{width:178.980101pt;}
._1d{width:180.717397pt;}
._33{width:181.657182pt;}
._4c{width:183.446432pt;}
._21{width:185.219850pt;}
._36{width:187.138142pt;}
._2b{width:188.697083pt;}
._2d{width:190.800240pt;}
._30{width:194.063633pt;}
._1b{width:196.389492pt;}
._9{width:206.966317pt;}
._4b{width:208.355237pt;}
._4d{width:209.430106pt;}
._45{width:214.172223pt;}
._4e{width:215.788678pt;}
._4f{width:218.698681pt;}
._50{width:222.184145pt;}
._41{width:227.579816pt;}
._51{width:230.393029pt;}
._52{width:231.846923pt;}
._25{width:288.325628pt;}
._22{width:340.430217pt;}
._18{width:387.496712pt;}
._26{width:422.821224pt;}
._1e{width:449.389807pt;}
._49{width:455.453258pt;}
._48{width:463.877678pt;}
._34{width:534.271786pt;}
._3b{width:539.695784pt;}
._39{width:603.222799pt;}
._2a{width:881.417887pt;}
.fsc{font-size:42.879983pt;}
.fsb{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs7{font-size:69.119972pt;}
.fs6{font-size:74.879970pt;}
.fsa{font-size:85.119966pt;}
.fs5{font-size:106.879957pt;}
.fse{font-size:117.119953pt;}
.fs1{font-size:127.999949pt;}
.fsd{font-size:138.879944pt;}
.fs2{font-size:149.119940pt;}
.fs3{font-size:191.999923pt;}
.fs0{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:49.013631pt;}
.y32{bottom:50.133631pt;}
.yb4{bottom:59.573627pt;}
.yb2{bottom:63.253625pt;}
.y48{bottom:65.013625pt;}
.y104{bottom:69.013623pt;}
.y51{bottom:74.773621pt;}
.y47{bottom:80.053619pt;}
.yf2{bottom:84.053617pt;}
.ye3{bottom:88.373615pt;}
.y31{bottom:89.333615pt;}
.ya7{bottom:90.613614pt;}
.y46{bottom:94.933613pt;}
.yb1{bottom:104.693609pt;}
.y22{bottom:105.173609pt;}
.yd6{bottom:107.733608pt;}
.y17{bottom:109.173607pt;}
.y103{bottom:109.333607pt;}
.yf1{bottom:112.213606pt;}
.y43{bottom:113.173605pt;}
.y50{bottom:113.653605pt;}
.yc7{bottom:116.213604pt;}
.ya6{bottom:116.373604pt;}
.ybd{bottom:116.533604pt;}
.yd0{bottom:118.293603pt;}
.ye2{bottom:119.093603pt;}
.y30{bottom:127.253600pt;}
.y42{bottom:128.053599pt;}
.ybe{bottom:132.373598pt;}
.y21{bottom:135.093597pt;}
.yfc{bottom:138.453595pt;}
.y4f{bottom:139.413595pt;}
.yf0{bottom:140.373595pt;}
.ya5{bottom:142.133594pt;}
.yb0{bottom:146.133592pt;}
.yd5{bottom:153.333589pt;}
.y45{bottom:153.653589pt;}
.ye1{bottom:153.813589pt;}
.y15{bottom:153.973589pt;}
.ybc{bottom:160.693586pt;}
.ycf{bottom:161.173586pt;}
.y2f{bottom:165.173585pt;}
.ya4{bottom:167.893584pt;}
.y44{bottom:168.533583pt;}
.yfb{bottom:169.173583pt;}
.ybf{bottom:172.373582pt;}
.yef{bottom:172.533582pt;}
.y20{bottom:177.493580pt;}
.y6{bottom:184.213577pt;}
.ye0{bottom:184.533577pt;}
.yaf{bottom:187.573576pt;}
.ya3{bottom:193.653573pt;}
.y102{bottom:197.973571pt;}
.y14{bottom:198.773571pt;}
.y57{bottom:198.839036pt;}
.yd4{bottom:198.933571pt;}
.yee{bottom:200.693570pt;}
.yce{bottom:203.893569pt;}
.ybb{bottom:205.013569pt;}
.ye{bottom:206.773568pt;}
.y2e{bottom:206.933568pt;}
.y94{bottom:212.119031pt;}
.yc0{bottom:212.373566pt;}
.ydf{bottom:219.253563pt;}
.ya2{bottom:219.413563pt;}
.y1f{bottom:219.733563pt;}
.y93{bottom:225.239026pt;}
.y4e{bottom:227.573560pt;}
.y2d{bottom:227.733560pt;}
.yed{bottom:228.853559pt;}
.yae{bottom:229.013559pt;}
.y41{bottom:234.613557pt;}
.y101{bottom:238.293555pt;}
.y92{bottom:238.519020pt;}
.ya1{bottom:245.173553pt;}
.ycd{bottom:246.613552pt;}
.y13{bottom:247.573552pt;}
.yba{bottom:249.173551pt;}
.y40{bottom:249.493551pt;}
.yde{bottom:249.973551pt;}
.yd{bottom:251.573550pt;}
.y91{bottom:251.639015pt;}
.yc1{bottom:252.373550pt;}
.y4d{bottom:253.333549pt;}
.yec{bottom:261.013546pt;}
.y1e{bottom:262.133546pt;}
.y90{bottom:264.759010pt;}
.yfa{bottom:265.333545pt;}
.y2c{bottom:265.653544pt;}
.y5{bottom:269.013543pt;}
.ya0{bottom:270.933542pt;}
.yad{bottom:271.093542pt;}
.y35{bottom:275.253541pt;}
.y8f{bottom:277.879005pt;}
.ydd{bottom:280.693538pt;}
.y55{bottom:284.373537pt;}
.yeb{bottom:289.173535pt;}
.ycc{bottom:289.333535pt;}
.y34{bottom:290.133535pt;}
.y8e{bottom:290.998999pt;}
.y12{bottom:292.373534pt;}
.yd3{bottom:293.333533pt;}
.yb9{bottom:293.493533pt;}
.yc{bottom:296.373532pt;}
.y9f{bottom:296.693532pt;}
.yf9{bottom:300.053531pt;}
.y2b{bottom:303.733529pt;}
.y8d{bottom:304.278994pt;}
.y1d{bottom:304.373529pt;}
.y3f{bottom:308.213527pt;}
.y4{bottom:311.413526pt;}
.yac{bottom:314.773525pt;}
.ydc{bottom:315.413525pt;}
.yea{bottom:317.333524pt;}
.y8c{bottom:317.398989pt;}
.y9e{bottom:322.453522pt;}
.y3e{bottom:323.253521pt;}
.y100{bottom:326.933520pt;}
.y8b{bottom:330.518984pt;}
.yf8{bottom:330.773518pt;}
.ycb{bottom:332.213518pt;}
.yc2{bottom:332.373518pt;}
.y54{bottom:333.173517pt;}
.y4c{bottom:334.453517pt;}
.yb8{bottom:337.813516pt;}
.y3d{bottom:338.133515pt;}
.yd2{bottom:338.933515pt;}
.yb{bottom:341.173514pt;}
.y2a{bottom:341.653514pt;}
.y8a{bottom:343.638978pt;}
.ydb{bottom:346.133512pt;}
.y1c{bottom:346.773512pt;}
.y9d{bottom:348.213511pt;}
.ye9{bottom:349.493511pt;}
.yab{bottom:356.213508pt;}
.y89{bottom:356.918973pt;}
.yf7{bottom:361.493506pt;}
.y3{bottom:367.093504pt;}
.yff{bottom:367.253504pt;}
.y88{bottom:370.038968pt;}
.yc3{bottom:372.373502pt;}
.y4b{bottom:373.493501pt;}
.y9c{bottom:373.973501pt;}
.yca{bottom:374.933501pt;}
.yda{bottom:376.853500pt;}
.ye8{bottom:377.653500pt;}
.y29{bottom:379.573499pt;}
.y53{bottom:381.973498pt;}
.y87{bottom:383.158962pt;}
.yd1{bottom:384.533497pt;}
.y11{bottom:385.973496pt;}
.y1b{bottom:389.013495pt;}
.ya{bottom:389.973495pt;}
.y3c{bottom:391.093494pt;}
.yf6{bottom:396.213492pt;}
.y86{bottom:396.278957pt;}
.yaa{bottom:397.653492pt;}
.y9b{bottom:399.733491pt;}
.y3b{bottom:404.693489pt;}
.ye7{bottom:405.813488pt;}
.y85{bottom:409.398952pt;}
.yd9{bottom:411.573486pt;}
.yc4{bottom:412.373486pt;}
.y28{bottom:416.693484pt;}
.yc9{bottom:417.653484pt;}
.y3a{bottom:418.293483pt;}
.y84{bottom:422.678947pt;}
.y9a{bottom:425.493480pt;}
.yb7{bottom:426.293480pt;}
.yf5{bottom:426.933480pt;}
.y52{bottom:430.773478pt;}
.y2{bottom:431.093478pt;}
.y1a{bottom:431.413478pt;}
.y9{bottom:434.773477pt;}
.y83{bottom:435.798941pt;}
.ye6{bottom:437.973475pt;}
.ya9{bottom:439.733475pt;}
.yd8{bottom:442.293474pt;}
.y36{bottom:444.693473pt;}
.y82{bottom:448.918936pt;}
.y99{bottom:451.253470pt;}
.yc5{bottom:452.373470pt;}
.y27{bottom:453.813469pt;}
.yfe{bottom:455.893468pt;}
.yc8{bottom:460.373467pt;}
.yf4{bottom:461.653466pt;}
.y81{bottom:462.038931pt;}
.ye5{bottom:466.133464pt;}
.y4a{bottom:469.173463pt;}
.y39{bottom:470.293463pt;}
.yb6{bottom:470.453462pt;}
.y19{bottom:473.653461pt;}
.y80{bottom:475.158926pt;}
.y98{bottom:477.013460pt;}
.y8{bottom:479.573459pt;}
.yd7{bottom:480.693458pt;}
.ya8{bottom:484.053457pt;}
.y38{bottom:485.333457pt;}
.y26{bottom:485.813456pt;}
.y7f{bottom:488.438920pt;}
.yf3{bottom:492.373454pt;}
.yc6{bottom:492.533454pt;}
.ye4{bottom:494.293453pt;}
.y49{bottom:494.933453pt;}
.y1{bottom:495.093453pt;}
.yfd{bottom:496.213452pt;}
.y37{bottom:500.213451pt;}
.y7e{bottom:501.558915pt;}
.y97{bottom:502.773450pt;}
.yb5{bottom:503.093449pt;}
.y18{bottom:508.533447pt;}
.y7d{bottom:514.678910pt;}
.y7c{bottom:527.798905pt;}
.y25{bottom:533.973437pt;}
.y10{bottom:534.133437pt;}
.y7b{bottom:541.078899pt;}
.y7a{bottom:554.198894pt;}
.y23{bottom:560.693426pt;}
.y7{bottom:560.853426pt;}
.y33{bottom:562.773426pt;}
.y16{bottom:562.933425pt;}
.yb3{bottom:566.933424pt;}
.y79{bottom:567.318889pt;}
.y78{bottom:580.438884pt;}
.y24{bottom:591.573414pt;}
.yf{bottom:591.733414pt;}
.y77{bottom:593.558878pt;}
.y76{bottom:606.838873pt;}
.y75{bottom:619.958868pt;}
.y74{bottom:633.078863pt;}
.y73{bottom:646.198857pt;}
.y72{bottom:659.318852pt;}
.y71{bottom:672.598847pt;}
.y70{bottom:685.718841pt;}
.y6f{bottom:698.838836pt;}
.y6e{bottom:711.958831pt;}
.y6d{bottom:725.078826pt;}
.y6c{bottom:738.358820pt;}
.y95{bottom:748.918816pt;}
.y6b{bottom:751.478815pt;}
.y6a{bottom:764.598810pt;}
.y69{bottom:777.718805pt;}
.y68{bottom:790.998799pt;}
.y67{bottom:804.118794pt;}
.y66{bottom:817.238789pt;}
.y65{bottom:830.358784pt;}
.y64{bottom:843.478778pt;}
.y63{bottom:856.758773pt;}
.y62{bottom:869.878768pt;}
.y61{bottom:882.998763pt;}
.y60{bottom:896.118757pt;}
.y5f{bottom:909.238752pt;}
.y5d{bottom:960.758731pt;}
.y5e{bottom:960.918731pt;}
.y58{bottom:961.238731pt;}
.y5c{bottom:961.398731pt;}
.y59{bottom:961.558731pt;}
.y5b{bottom:962.038731pt;}
.y5a{bottom:962.198731pt;}
.y56{bottom:983.798722pt;}
.h12{height:39.111234pt;}
.h6{height:43.499983pt;}
.h11{height:43.781232pt;}
.h7{height:44.343732pt;}
.he{height:48.451231pt;}
.hd{height:53.704979pt;}
.h15{height:57.854977pt;}
.hf{height:58.977164pt;}
.hb{height:63.044975pt;}
.ha{height:63.178725pt;}
.h9{height:68.298723pt;}
.h13{height:75.464970pt;}
.h8{height:80.786218pt;}
.h17{height:106.826207pt;}
.h4{height:112.786517pt;}
.h2{height:116.749953pt;}
.h14{height:126.673699pt;}
.h3{height:136.013696pt;}
.hc{height:146.378691pt;}
.h5{height:151.687439pt;}
.h1{height:168.373058pt;}
.h16{height:175.124930pt;}
.h0{height:793.333333pt;}
.h10{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:90.854364pt;}
.x30{left:93.173613pt;}
.x7{left:114.867954pt;}
.x34{left:125.907950pt;}
.x2e{left:137.013596pt;}
.x2f{left:137.973595pt;}
.x1{left:138.867944pt;}
.x2d{left:140.053595pt;}
.x2c{left:141.333594pt;}
.x2{left:145.587942pt;}
.x3{left:150.387940pt;}
.x1c{left:165.333585pt;}
.x36{left:167.507933pt;}
.x35{left:169.587932pt;}
.x4{left:177.249726pt;}
.x32{left:182.067927pt;}
.x6{left:193.267923pt;}
.x24{left:201.813570pt;}
.x1d{left:212.053566pt;}
.x37{left:232.627907pt;}
.x25{left:238.133555pt;}
.x33{left:252.947899pt;}
.x1e{left:258.933547pt;}
.x26{left:274.453541pt;}
.x12{left:292.147883pt;}
.x11{left:294.067882pt;}
.xc{left:295.987882pt;}
.xe{left:301.427879pt;}
.x1f{left:305.653528pt;}
.x27{left:310.933526pt;}
.xd{left:331.507867pt;}
.x31{left:337.587865pt;}
.x28{left:347.253512pt;}
.xf{left:349.587860pt;}
.x20{left:352.373510pt;}
.x29{left:383.573497pt;}
.x9{left:395.347842pt;}
.x21{left:399.253491pt;}
.x18{left:414.707834pt;}
.x16{left:417.107833pt;}
.x2a{left:420.053483pt;}
.x19{left:429.907828pt;}
.x15{left:437.587825pt;}
.x13{left:438.707825pt;}
.x22{left:445.973472pt;}
.x2b{left:456.373468pt;}
.x1a{left:465.907814pt;}
.x17{left:470.547812pt;}
.x23{left:492.693454pt;}
.x14{left:498.067801pt;}
.x10{left:507.027797pt;}
.xb{left:508.307797pt;}
.x5{left:522.867791pt;}
.x1b{left:562.933425pt;}
.xa{left:736.307705pt;}
.x38{left:857.427657pt;}
}




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