
    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_6a55918d35c0b7e9dca7c87b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_756512ba399cb447f88183fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_f978217f285409213f1690a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_9e671a1187da7cf9470c9e4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_2e8cb84f9a91475cf960c883.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_0adf2504e8143855b47fb539.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_88edeed98ab396e47847a378.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b0b7460deef3051ed2095ab9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-20.864453px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.549777px;}
.v2{vertical-align:29.526869px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000122px;}
.ls7{letter-spacing:0.293762px;}
.ls0{letter-spacing:0.463678px;}
.lsa{letter-spacing:27.158163px;}
.ls4{letter-spacing:34.111102px;}
.ls3{letter-spacing:43.699656px;}
.lsb{letter-spacing:50.926313px;}
.ls9{letter-spacing:91.934479px;}
.ls8{letter-spacing:116.848911px;}
.ls6{letter-spacing:131.291958px;}
.ls5{letter-spacing:131.336136px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-64.219857px;}
.ws1d{word-spacing:-58.236428px;}
.wsd{word-spacing:-52.452732px;}
.ws5{word-spacing:-40.885340px;}
.wsa{word-spacing:-36.697061px;}
.wsc{word-spacing:-34.901910px;}
.ws7{word-spacing:-33.107167px;}
.wse{word-spacing:-30.916654px;}
.ws16{word-spacing:-29.118214px;}
.ws1b{word-spacing:-26.326028px;}
.ws9{word-spacing:-23.533843px;}
.ws13{word-spacing:-23.334518px;}
.ws15{word-spacing:-21.938425px;}
.ws18{word-spacing:-20.636769px;}
.ws1a{word-spacing:-19.345565px;}
.ws14{word-spacing:-14.319443px;}
.ws19{word-spacing:-12.963485px;}
.ws1c{word-spacing:-11.567392px;}
.ws8{word-spacing:-0.939843px;}
.ws11{word-spacing:-0.819286px;}
.ws2{word-spacing:-0.558445px;}
.ws12{word-spacing:-0.336701px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.369136px;}
.ws3{word-spacing:0.486150px;}
.ws4{word-spacing:0.881641px;}
.wsb{word-spacing:0.881998px;}
.ws17{word-spacing:24.920602px;}
.ws10{word-spacing:462.796805px;}
.wsf{word-spacing:492.154730px;}
._11{margin-left:-28.907955px;}
._d{margin-left:-13.859964px;}
._10{margin-left:-9.329106px;}
._7{margin-left:-8.078451px;}
._c{margin-left:-6.917061px;}
._6{margin-left:-5.904020px;}
._8{margin-left:-4.644739px;}
._2{margin-left:-2.785717px;}
._1{margin-left:-1.419139px;}
._0{width:1.103774px;}
._5{width:2.785697px;}
._3{width:3.813846px;}
._a{width:4.980272px;}
._16{width:20.161962px;}
._17{width:23.296474px;}
._12{width:24.513880px;}
._4{width:30.169413px;}
._b{width:36.035907px;}
._13{width:46.576143px;}
._15{width:74.339808px;}
._14{width:116.604398px;}
._9{width:137.268468px;}
._e{width:645.622333px;}
._f{width:861.653148px;}
.fc10{color:rgb(127,127,127);}
.fcf{color:rgb(51,51,51);}
.fce{color:rgb(17,85,204);}
.fcd{color:rgb(34,34,34);}
.fc0{color:rgb(0,21,91);}
.fc9{color:rgb(5,99,193);}
.fc1{color:rgb(57,64,110);}
.fcc{color:rgb(136,136,136);}
.fc3{color:rgb(58,56,56);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(137,138,155);}
.fc5{color:rgb(255,0,0);}
.fc7{color:rgb(27,46,140);}
.fc8{color:transparent;}
.fca{color:rgb(218,224,246);}
.fc2{color:rgb(0,0,0);}
.fcb{color:rgb(0,45,196);}
.fs1a{font-size:41.759538px;}
.fs17{font-size:46.799584px;}
.fs0{font-size:52.560690px;}
.fsb{font-size:63.360367px;}
.fs16{font-size:65.520598px;}
.fs18{font-size:69.839584px;}
.fs9{font-size:73.440459px;}
.fs13{font-size:79.200090px;}
.fs12{font-size:84.240136px;}
.fsd{font-size:84.959722px;}
.fsc{font-size:95.039814px;}
.fs15{font-size:97.919629px;}
.fs5{font-size:105.119906px;}
.fs2{font-size:115.919583px;}
.fsa{font-size:119.520458px;}
.fs8{font-size:125.999675px;}
.fs7{font-size:131.759306px;}
.fse{font-size:132.480366px;}
.fs10{font-size:136.799352px;}
.fs11{font-size:140.400227px;}
.fs3{font-size:147.600504px;}
.fs14{font-size:168.480273px;}
.fs6{font-size:189.360042px;}
.fs19{font-size:192.959443px;}
.fsf{font-size:210.239811px;}
.fs4{font-size:231.840640px;}
.fs1{font-size:257.760455px;}
.y0{bottom:0.000000px;}
.y10f{bottom:97.388020px;}
.y2{bottom:105.828786px;}
.y37{bottom:118.431003px;}
.y89{bottom:118.793554px;}
.y1{bottom:124.010425px;}
.y51{bottom:142.200837px;}
.y10b{bottom:145.614944px;}
.y48{bottom:154.080852px;}
.ybb{bottom:161.285370px;}
.yb{bottom:162.725083px;}
.y10a{bottom:164.515833px;}
.y81{bottom:165.421084px;}
.ybe{bottom:169.915371px;}
.y2b{bottom:170.453884px;}
.y39{bottom:172.975400px;}
.y4d{bottom:173.526759px;}
.yd2{bottom:173.698079px;}
.yae{bottom:174.773878px;}
.ydb{bottom:183.058595px;}
.y88{bottom:184.858175px;}
.y2a{bottom:192.597198px;}
.yba{bottom:192.775197px;}
.ybd{bottom:195.122127px;}
.ya4{bottom:196.021647px;}
.yad{bottom:196.737883px;}
.y109{bottom:196.740407px;}
.y10e{bottom:199.084668px;}
.y80{bottom:199.258888px;}
.yeb{bottom:199.625175px;}
.yd1{bottom:201.062267px;}
.y1a{bottom:208.802378px;}
.y87{bottom:210.058529px;}
.y4c{bottom:213.301584px;}
.y36{bottom:213.484582px;}
.y108{bottom:215.641355px;}
.yac{bottom:218.875561px;}
.ybc{bottom:220.322480px;}
.y1e{bottom:223.192279px;}
.yb9{bottom:224.277791px;}
.yd0{bottom:230.220058px;}
.y64{bottom:231.480349px;}
.y107{bottom:234.542244px;}
.y86{bottom:235.252418px;}
.y19{bottom:240.484638px;}
.yab{bottom:241.018875px;}
.ya{bottom:242.460578px;}
.y59{bottom:242.463606px;}
.yf4{bottom:245.524374px;}
.y9d{bottom:245.694435px;}
.y35{bottom:249.113137px;}
.y4b{bottom:252.907196px;}
.yb3{bottom:254.702499px;}
.y3e{bottom:254.705113px;}
.yb8{bottom:255.960051px;}
.ycf{bottom:256.323254px;}
.yea{bottom:257.029404px;}
.y85{bottom:260.633971px;}
.y91{bottom:263.159442px;}
.yaa{bottom:263.162189px;}
.y106{bottom:266.579525px;}
.y68{bottom:267.129644px;}
.y1d{bottom:267.299426px;}
.y97{bottom:267.662847px;}
.yda{bottom:268.380496px;}
.y7e{bottom:269.103197px;}
.y63{bottom:271.263329px;}
.y18{bottom:271.974387px;}
.y78{bottom:272.702303px;}
.y9c{bottom:277.197028px;}
.ya3{bottom:278.452350px;}
.y58{bottom:279.362178px;}
.y9{bottom:280.086327px;}
.ydf{bottom:281.346808px;}
.y34{bottom:284.931324px;}
.ya9{bottom:285.114977px;}
.y105{bottom:285.480414px;}
.y84{bottom:285.838153px;}
.yb2{bottom:286.205132px;}
.y90{bottom:286.737240px;}
.yb7{bottom:287.462644px;}
.yce{bottom:289.803496px;}
.y29{bottom:292.328245px;}
.y4a{bottom:292.681974px;}
.y96{bottom:299.345108px;}
.yf3{bottom:302.218101px;}
.y17{bottom:303.477020px;}
.y104{bottom:304.557739px;}
.yc5{bottom:305.644213px;}
.y77{bottom:306.720364px;}
.ya8{bottom:307.258291px;}
.y67{bottom:308.343109px;}
.y9b{bottom:308.879289px;}
.y83{bottom:311.042335px;}
.y62{bottom:311.046254px;}
.yd9{bottom:312.649850px;}
.y50{bottom:313.200491px;}
.ye9{bottom:314.271427px;}
.y57{bottom:317.168260px;}
.y8{bottom:317.528115px;}
.yb1{bottom:317.694880px;}
.yb6{bottom:318.965277px;}
.y33{bottom:320.764115px;}
.y7d{bottom:322.197771px;}
.y28{bottom:322.566942px;}
.ya7{bottom:329.390388px;}
.y95{bottom:330.834896px;}
.y49{bottom:332.456798px;}
.ycd{bottom:333.892663px;}
.y82{bottom:336.236224px;}
.y103{bottom:336.597439px;}
.y9a{bottom:340.381882px;}
.y76{bottom:340.747036px;}
.y3d{bottom:343.081616px;}
.yde{bottom:343.438272px;}
.y71{bottom:343.978486px;}
.y16{bottom:348.299256px;}
.y66{bottom:349.205907px;}
.yb0{bottom:349.377141px;}
.yb5{bottom:350.634693px;}
.y61{bottom:350.811199px;}
.y8f{bottom:351.006064px;}
.ya6{bottom:351.535890px;}
.ye1{bottom:351.721753px;}
.y4f{bottom:352.983424px;}
.y7{bottom:354.955781px;}
.y56{bottom:355.143508px;}
.y102{bottom:355.498328px;}
.y32{bottom:356.582346px;}
.yc4{bottom:356.757053px;}
.yf2{bottom:359.096390px;}
.ya2{bottom:361.081275px;}
.y94{bottom:363.602959px;}
.y27{bottom:368.647866px;}
.yd8{bottom:369.891873px;}
.ye8{bottom:371.693637px;}
.y99{bottom:373.139039px;}
.y101{bottom:374.399217px;}
.y75{bottom:374.934312px;}
.y70{bottom:378.179602px;}
.ycc{bottom:378.183946px;}
.y15{bottom:379.801849px;}
.ye0{bottom:380.157139px;}
.yaf{bottom:380.879774px;}
.yb4{bottom:382.137286px;}
.y47{bottom:384.484526px;}
.y8e{bottom:388.796750px;}
.y65{bottom:390.235706px;}
.y60{bottom:390.594179px;}
.y7c{bottom:390.965404px;}
.y20{bottom:391.134686px;}
.y31{bottom:392.210857px;}
.y6{bottom:392.397569px;}
.y4e{bottom:392.766357px;}
.y55{bottom:392.934194px;}
.y93{bottom:401.393645px;}
.y100{bottom:406.622611px;}
.y74{bottom:408.956119px;}
.y98{bottom:410.945121px;}
.y14{bottom:411.304482px;}
.y10d{bottom:411.311573px;}
.y6f{bottom:412.201408px;}
.yd7{bottom:414.179263px;}
.y26{bottom:414.728790px;}
.yf1{bottom:415.805466px;}
.y46{bottom:417.235871px;}
.y118{bottom:418.497109px;}
.yc3{bottom:421.207044px;}
.yff{bottom:425.523500px;}
.y8d{bottom:426.787347px;}
.y9e{bottom:428.393082px;}
.ye7{bottom:429.115847px;}
.y5f{bottom:430.377103px;}
.y54{bottom:430.924791px;}
.y3c{bottom:431.458173px;}
.ycb{bottom:435.422048px;}
.ydc{bottom:437.758778px;}
.y73{bottom:442.977898px;}
.y13{bottom:442.986743px;}
.ya1{bottom:443.692138px;}
.yfe{bottom:444.414741px;}
.y6e{bottom:446.393522px;}
.y117{bottom:456.303144px;}
.y5{bottom:457.568709px;}
.y7b{bottom:459.717688px;}
.y45{bottom:460.256026px;}
.y25{bottom:460.794364px;}
.yfd{bottom:463.315630px;}
.y8c{bottom:464.578033px;}
.y53{bottom:468.715477px;}
.y5e{bottom:470.160056px;}
.yd6{bottom:471.421285px;}
.yc2{bottom:472.502355px;}
.yf0{bottom:472.683708px;}
.y21{bottom:476.646390px;}
.yca{bottom:479.697358px;}
.ye6{bottom:486.357924px;}
.y10c{bottom:486.545035px;}
.y12{bottom:487.616507px;}
.y72{bottom:487.619153px;}
.y6d{bottom:490.862334px;}
.ye3{bottom:491.044643px;}
.y116{bottom:494.278393px;}
.yfc{bottom:495.355330px;}
.y44{bottom:499.861638px;}
.y8b{bottom:502.384091px;}
.ydd{bottom:505.616174px;}
.y52{bottom:506.521536px;}
.y24{bottom:506.875288px;}
.yfb{bottom:514.439913px;}
.yd5{bottom:515.690640px;}
.y11{bottom:519.298767px;}
.ye2{bottom:519.480029px;}
.y3b{bottom:519.834675px;}
.ya0{bottom:526.321036px;}
.y4{bottom:527.043214px;}
.yef{bottom:529.561997px;}
.y7a{bottom:530.825446px;}
.y115{bottom:532.084451px;}
.yc9{bottom:536.933425px;}
.yc1{bottom:536.946799px;}
.y43{bottom:539.636439px;}
.y30{bottom:539.816895px;}
.yfa{bottom:546.479613px;}
.y10{bottom:550.801360px;}
.y92{bottom:553.143278px;}
.y6a{bottom:558.356398px;}
.yd4{bottom:559.797815px;}
.y1f{bottom:562.320274px;}
.yf9{bottom:565.380502px;}
.ye4{bottom:569.157832px;}
.y114{bottom:569.875114px;}
.y23{bottom:570.787314px;}
.y2f{bottom:575.460010px;}
.y42{bottom:579.242051px;}
.yc8{bottom:581.220788px;}
.yf{bottom:582.303973px;}
.yf8{bottom:584.281421px;}
.y112{bottom:585.364850px;}
.yee{bottom:586.255701px;}
.yc0{bottom:588.247656px;}
.y79{bottom:592.734059px;}
.ye5{bottom:599.217075px;}
.y3{bottom:599.947405px;}
.y69{bottom:602.463573px;}
.y2e{bottom:611.278219px;}
.ye{bottom:613.986234px;}
.yf7{bottom:616.321091px;}
.y41{bottom:619.016852px;}
.y5c{bottom:623.340732px;}
.yc7{bottom:625.327963px;}
.yf6{bottom:635.396026px;}
.y22{bottom:637.926461px;}
.y6c{bottom:638.281789px;}
.yd{bottom:645.476002px;}
.y2d{bottom:647.096428px;}
.y113{bottom:657.717760px;}
.y40{bottom:658.795645px;}
.yed{bottom:666.358403px;}
.y1c{bottom:667.976273px;}
.y5b{bottom:674.448529px;}
.y3a{bottom:676.987848px;}
.y8a{bottom:680.389145px;}
.y7f{bottom:681.660491px;}
.y9f{bottom:683.463477px;}
.y5d{bottom:685.794207px;}
.y111{bottom:689.027881px;}
.yd3{bottom:690.289243px;}
.yc6{bottom:703.618946px;}
.y6b{bottom:704.888259px;}
.ya5{bottom:705.053102px;}
.yc{bottom:710.637569px;}
.yec{bottom:711.892500px;}
.y2c{bottom:713.351483px;}
.y38{bottom:715.501201px;}
.yf5{bottom:715.873223px;}
.y3f{bottom:716.749426px;}
.y1b{bottom:719.107172px;}
.ybf{bottom:719.810592px;}
.y5a{bottom:725.579447px;}
.y110{bottom:745.925063px;}
.h34{height:35.907494px;}
.h2d{height:39.188041px;}
.h2{height:45.195007px;}
.h2f{height:52.139965px;}
.h10{height:54.481253px;}
.h27{height:59.554756px;}
.h2e{height:60.052494px;}
.h26{height:63.020053px;}
.hc{height:63.148754px;}
.h32{height:68.101250px;}
.h12{height:71.465485px;}
.h25{height:72.435000px;}
.h30{height:73.046004px;}
.h13{height:73.053745px;}
.h29{height:79.045242px;}
.h31{height:81.721246px;}
.he{height:89.873782px;}
.h7{height:90.388747px;}
.h14{height:93.269290px;}
.h17{height:94.745849px;}
.h11{height:96.468501px;}
.h15{height:99.619025px;}
.h4{height:99.674993px;}
.hf{height:102.771253px;}
.h16{height:104.568598px;}
.h1e{height:108.336619px;}
.hb{height:108.342494px;}
.h21{height:108.359708px;}
.h22{height:108.359716px;}
.h1d{height:108.359873px;}
.h1b{height:108.359973px;}
.h20{height:108.361948px;}
.h1c{height:108.362300px;}
.h1f{height:108.364297px;}
.h2b{height:110.964728px;}
.h2c{height:110.972867px;}
.h5{height:110.988660px;}
.ha{height:113.294989px;}
.h1a{height:120.725000px;}
.h9{height:126.916253px;}
.h24{height:129.014315px;}
.h19{height:140.072383px;}
.hd{height:142.389875px;}
.h2a{height:144.870000px;}
.h23{height:145.564093px;}
.h8{height:162.823747px;}
.h33{height:165.918740px;}
.h18{height:180.777494px;}
.h28{height:193.890629px;}
.h6{height:199.351254px;}
.h3{height:221.638751px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x25{left:23.045895px;}
.x29{left:27.368794px;}
.x3f{left:33.122251px;}
.x2a{left:34.380231px;}
.x38{left:39.781326px;}
.x30{left:42.666394px;}
.x4f{left:44.107182px;}
.x19{left:46.978026px;}
.x18{left:48.426430px;}
.x10{left:49.506245px;}
.x1a{left:50.582713px;}
.xc{left:52.919253px;}
.x2{left:55.095041px;}
.x34{left:58.677831px;}
.x42{left:66.422116px;}
.x41{left:67.854432px;}
.xb{left:70.752150px;}
.x39{left:73.079550px;}
.x1d{left:75.955284px;}
.x50{left:78.478284px;}
.x1e{left:83.517851px;}
.x14{left:88.022838px;}
.x16{left:94.128656px;}
.x11{left:96.483016px;}
.x1f{left:97.560542px;}
.x51{left:101.881171px;}
.x53{left:105.479201px;}
.x40{left:107.644747px;}
.xd{left:109.799496px;}
.x17{left:113.583204px;}
.x20{left:119.524351px;}
.x21{left:124.015547px;}
.x22{left:127.445475px;}
.x45{left:138.249358px;}
.x26{left:149.039825px;}
.x23{left:152.823828px;}
.x28{left:163.801858px;}
.xe{left:171.726122px;}
.xf{left:174.789129px;}
.x3a{left:175.860750px;}
.x46{left:180.356574px;}
.x6{left:181.435661px;}
.x27{left:188.466495px;}
.x43{left:235.256339px;}
.x37{left:237.614018px;}
.x44{left:259.021583px;}
.x1{left:271.445947px;}
.xa{left:323.452681px;}
.x3c{left:340.202508px;}
.x35{left:379.627734px;}
.x3{left:411.466511px;}
.x4{left:431.100578px;}
.x12{left:477.542013px;}
.x7{left:488.880083px;}
.x9{left:500.044722px;}
.x5{left:519.303314px;}
.x8{left:525.953991px;}
.x3d{left:633.593832px;}
.x31{left:640.980278px;}
.x24{left:680.216765px;}
.x49{left:743.404930px;}
.x2e{left:747.191553px;}
.x48{left:756.898943px;}
.x36{left:766.441638px;}
.x2f{left:794.511634px;}
.x2b{left:826.739422px;}
.x2c{left:846.006407px;}
.x1c{left:847.974586px;}
.x2d{left:889.918906px;}
.x15{left:898.385745px;}
.x47{left:901.439658px;}
.x4a{left:916.021315px;}
.x4e{left:922.322430px;}
.x32{left:926.280310px;}
.x3e{left:934.379545px;}
.x3b{left:952.565493px;}
.x1b{left:1013.939619px;}
.x52{left:1036.969697px;}
.x4d{left:1057.676161px;}
.x4c{left:1059.474386px;}
.x4b{left:1075.136465px;}
.x33{left:1150.209749px;}
.x13{left:1157.586434px;}
@media print{
.v3{vertical-align:-18.546180pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.710913pt;}
.v2{vertical-align:26.246106pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000109pt;}
.ls7{letter-spacing:0.261122pt;}
.ls0{letter-spacing:0.412159pt;}
.lsa{letter-spacing:24.140590pt;}
.ls4{letter-spacing:30.320980pt;}
.ls3{letter-spacing:38.844139pt;}
.lsb{letter-spacing:45.267834pt;}
.ls9{letter-spacing:81.719537pt;}
.ls8{letter-spacing:103.865698pt;}
.ls6{letter-spacing:116.703963pt;}
.ls5{letter-spacing:116.743232pt;}
.ws1{word-spacing:-57.084318pt;}
.ws1d{word-spacing:-51.765714pt;}
.wsd{word-spacing:-46.624650pt;}
.ws5{word-spacing:-36.342524pt;}
.wsa{word-spacing:-32.619610pt;}
.wsc{word-spacing:-31.023920pt;}
.ws7{word-spacing:-29.428593pt;}
.wse{word-spacing:-27.481470pt;}
.ws16{word-spacing:-25.882857pt;}
.ws1b{word-spacing:-23.400914pt;}
.ws9{word-spacing:-20.918971pt;}
.ws13{word-spacing:-20.741794pt;}
.ws15{word-spacing:-19.500822pt;}
.ws18{word-spacing:-18.343795pt;}
.ws1a{word-spacing:-17.196058pt;}
.ws14{word-spacing:-12.728394pt;}
.ws19{word-spacing:-11.523098pt;}
.ws1c{word-spacing:-10.282126pt;}
.ws8{word-spacing:-0.835416pt;}
.ws11{word-spacing:-0.728254pt;}
.ws2{word-spacing:-0.496396pt;}
.ws12{word-spacing:-0.299290pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.328121pt;}
.ws3{word-spacing:0.432134pt;}
.ws4{word-spacing:0.783681pt;}
.wsb{word-spacing:0.783998pt;}
.ws17{word-spacing:22.151647pt;}
.ws10{word-spacing:411.374938pt;}
.wsf{word-spacing:437.470871pt;}
._11{margin-left:-25.695960pt;}
._d{margin-left:-12.319968pt;}
._10{margin-left:-8.292539pt;}
._7{margin-left:-7.180845pt;}
._c{margin-left:-6.148498pt;}
._6{margin-left:-5.248018pt;}
._8{margin-left:-4.128657pt;}
._2{margin-left:-2.476193pt;}
._1{margin-left:-1.261457pt;}
._0{width:0.981133pt;}
._5{width:2.476175pt;}
._3{width:3.390085pt;}
._a{width:4.426908pt;}
._16{width:17.921744pt;}
._17{width:20.707977pt;}
._12{width:21.790115pt;}
._4{width:26.817256pt;}
._b{width:32.031917pt;}
._13{width:41.401016pt;}
._15{width:66.079829pt;}
._14{width:103.648354pt;}
._9{width:122.016416pt;}
._e{width:573.886519pt;}
._f{width:765.913909pt;}
.fs1a{font-size:37.119590pt;}
.fs17{font-size:41.599630pt;}
.fs0{font-size:46.720613pt;}
.fsb{font-size:56.320326pt;}
.fs16{font-size:58.240531pt;}
.fs18{font-size:62.079630pt;}
.fs9{font-size:65.280408pt;}
.fs13{font-size:70.400080pt;}
.fs12{font-size:74.880121pt;}
.fsd{font-size:75.519753pt;}
.fsc{font-size:84.479834pt;}
.fs15{font-size:87.039670pt;}
.fs5{font-size:93.439916pt;}
.fs2{font-size:103.039629pt;}
.fsa{font-size:106.240407pt;}
.fs8{font-size:111.999711pt;}
.fs7{font-size:117.119383pt;}
.fse{font-size:117.760325pt;}
.fs10{font-size:121.599424pt;}
.fs11{font-size:124.800202pt;}
.fs3{font-size:131.200448pt;}
.fs14{font-size:149.760243pt;}
.fs6{font-size:168.320037pt;}
.fs19{font-size:171.519505pt;}
.fsf{font-size:186.879832pt;}
.fs4{font-size:206.080569pt;}
.fs1{font-size:229.120405pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:86.567129pt;}
.y2{bottom:94.070032pt;}
.y37{bottom:105.272002pt;}
.y89{bottom:105.594270pt;}
.y1{bottom:110.231489pt;}
.y51{bottom:126.400744pt;}
.y10b{bottom:129.435506pt;}
.y48{bottom:136.960757pt;}
.ybb{bottom:143.364773pt;}
.yb{bottom:144.644518pt;}
.y10a{bottom:146.236296pt;}
.y81{bottom:147.040964pt;}
.ybe{bottom:151.035885pt;}
.y2b{bottom:151.514564pt;}
.y39{bottom:153.755911pt;}
.y4d{bottom:154.246008pt;}
.yd2{bottom:154.398293pt;}
.yae{bottom:155.354558pt;}
.ydb{bottom:162.718751pt;}
.y88{bottom:164.318378pt;}
.y2a{bottom:171.197509pt;}
.yba{bottom:171.355731pt;}
.ybd{bottom:173.441890pt;}
.ya4{bottom:174.241464pt;}
.yad{bottom:174.878118pt;}
.y109{bottom:174.880362pt;}
.y10e{bottom:176.964149pt;}
.y80{bottom:177.119012pt;}
.yeb{bottom:177.444600pt;}
.yd1{bottom:178.722015pt;}
.y1a{bottom:185.602113pt;}
.y87{bottom:186.718692pt;}
.y4c{bottom:189.601408pt;}
.y36{bottom:189.764073pt;}
.y108{bottom:191.681205pt;}
.yac{bottom:194.556054pt;}
.ybc{bottom:195.842205pt;}
.y1e{bottom:198.393137pt;}
.yb9{bottom:199.358036pt;}
.yd0{bottom:204.640052pt;}
.y64{bottom:205.760310pt;}
.y107{bottom:208.481995pt;}
.y86{bottom:209.113260pt;}
.y19{bottom:213.764123pt;}
.yab{bottom:214.239000pt;}
.ya{bottom:215.520514pt;}
.y59{bottom:215.523205pt;}
.yf4{bottom:218.243888pt;}
.y9d{bottom:218.395053pt;}
.y35{bottom:221.433900pt;}
.y4b{bottom:224.806396pt;}
.yb3{bottom:226.402221pt;}
.y3e{bottom:226.404545pt;}
.yb8{bottom:227.520045pt;}
.ycf{bottom:227.842893pt;}
.yea{bottom:228.470582pt;}
.y85{bottom:231.674640pt;}
.y91{bottom:233.919504pt;}
.yaa{bottom:233.921946pt;}
.y106{bottom:236.959578pt;}
.y68{bottom:237.448572pt;}
.y1d{bottom:237.599490pt;}
.y97{bottom:237.922531pt;}
.yda{bottom:238.560441pt;}
.y7e{bottom:239.202842pt;}
.y63{bottom:241.122959pt;}
.y18{bottom:241.755011pt;}
.y78{bottom:242.402048pt;}
.y9c{bottom:246.397359pt;}
.ya3{bottom:247.513200pt;}
.y58{bottom:248.321936pt;}
.y9{bottom:248.965624pt;}
.ydf{bottom:250.086051pt;}
.y34{bottom:253.272288pt;}
.ya9{bottom:253.435535pt;}
.y105{bottom:253.760368pt;}
.y84{bottom:254.078358pt;}
.yb2{bottom:254.404561pt;}
.y90{bottom:254.877546pt;}
.yb7{bottom:255.522351pt;}
.yce{bottom:257.603108pt;}
.y29{bottom:259.847329pt;}
.y4a{bottom:260.161754pt;}
.y96{bottom:266.084540pt;}
.yf3{bottom:268.638312pt;}
.y17{bottom:269.757351pt;}
.y104{bottom:270.717990pt;}
.yc5{bottom:271.683745pt;}
.y77{bottom:272.640324pt;}
.ya8{bottom:273.118481pt;}
.y67{bottom:274.082763pt;}
.y9b{bottom:274.559368pt;}
.y83{bottom:276.482076pt;}
.y62{bottom:276.485559pt;}
.yd9{bottom:277.910978pt;}
.y50{bottom:278.400436pt;}
.ye9{bottom:279.352380pt;}
.y57{bottom:281.927342pt;}
.y8{bottom:282.247213pt;}
.yb1{bottom:282.395449pt;}
.yb6{bottom:283.524691pt;}
.y33{bottom:285.123658pt;}
.y7d{bottom:286.398019pt;}
.y28{bottom:286.726171pt;}
.ya7{bottom:292.791456pt;}
.y95{bottom:294.075463pt;}
.y49{bottom:295.517154pt;}
.ycd{bottom:296.793478pt;}
.y82{bottom:298.876644pt;}
.y103{bottom:299.197723pt;}
.y9a{bottom:302.561673pt;}
.y76{bottom:302.886254pt;}
.y3d{bottom:304.961436pt;}
.yde{bottom:305.278464pt;}
.y71{bottom:305.758654pt;}
.y16{bottom:309.599339pt;}
.y66{bottom:310.405250pt;}
.yb0{bottom:310.557459pt;}
.yb5{bottom:311.675283pt;}
.y61{bottom:311.832177pt;}
.y8f{bottom:312.005390pt;}
.ya6{bottom:312.476347pt;}
.ye1{bottom:312.641559pt;}
.y4f{bottom:313.763043pt;}
.y7{bottom:315.516250pt;}
.y56{bottom:315.683118pt;}
.y102{bottom:315.998514pt;}
.y32{bottom:316.962085pt;}
.yc4{bottom:317.117380pt;}
.yf2{bottom:319.196791pt;}
.ya2{bottom:320.961134pt;}
.y94{bottom:323.202630pt;}
.y27{bottom:327.686992pt;}
.yd8{bottom:328.792776pt;}
.ye8{bottom:330.394344pt;}
.y99{bottom:331.679146pt;}
.y101{bottom:332.799304pt;}
.y75{bottom:333.274944pt;}
.y70{bottom:336.159646pt;}
.ycc{bottom:336.163508pt;}
.y15{bottom:337.601644pt;}
.ye0{bottom:337.917457pt;}
.yaf{bottom:338.559799pt;}
.yb4{bottom:339.677588pt;}
.y47{bottom:341.764024pt;}
.y8e{bottom:345.597111pt;}
.y65{bottom:346.876183pt;}
.y60{bottom:347.194825pt;}
.y7c{bottom:347.524804pt;}
.y20{bottom:347.675276pt;}
.y31{bottom:348.631873pt;}
.y6{bottom:348.797839pt;}
.y4e{bottom:349.125651pt;}
.y55{bottom:349.274839pt;}
.y93{bottom:356.794351pt;}
.y100{bottom:361.442321pt;}
.y74{bottom:363.516550pt;}
.y98{bottom:365.284552pt;}
.y14{bottom:365.603984pt;}
.y10d{bottom:365.610287pt;}
.y6f{bottom:366.401252pt;}
.yd7{bottom:368.159345pt;}
.y26{bottom:368.647813pt;}
.yf1{bottom:369.604859pt;}
.y46{bottom:370.876330pt;}
.y118{bottom:371.997431pt;}
.yc3{bottom:374.406261pt;}
.yff{bottom:378.243111pt;}
.y8d{bottom:379.366531pt;}
.y9e{bottom:380.793851pt;}
.ye7{bottom:381.436308pt;}
.y5f{bottom:382.557425pt;}
.y54{bottom:383.044259pt;}
.y3c{bottom:383.518376pt;}
.ycb{bottom:387.041821pt;}
.ydc{bottom:389.118914pt;}
.y73{bottom:393.758131pt;}
.y13{bottom:393.765993pt;}
.ya1{bottom:394.393012pt;}
.yfe{bottom:395.035326pt;}
.y6e{bottom:396.794242pt;}
.y117{bottom:405.602795pt;}
.y5{bottom:406.727741pt;}
.y7b{bottom:408.637945pt;}
.y45{bottom:409.116468pt;}
.y25{bottom:409.594991pt;}
.yfd{bottom:411.836116pt;}
.y8c{bottom:412.958252pt;}
.y53{bottom:416.635980pt;}
.y5e{bottom:417.920050pt;}
.yd6{bottom:419.041142pt;}
.yc2{bottom:420.002093pt;}
.yf0{bottom:420.163296pt;}
.y21{bottom:423.685680pt;}
.yca{bottom:426.397652pt;}
.ye6{bottom:432.318155pt;}
.y10c{bottom:432.484476pt;}
.y12{bottom:433.436895pt;}
.y72{bottom:433.439247pt;}
.y6d{bottom:436.322075pt;}
.ye3{bottom:436.484127pt;}
.y116{bottom:439.358571pt;}
.yfc{bottom:440.315849pt;}
.y44{bottom:444.321456pt;}
.y8b{bottom:446.563637pt;}
.ydd{bottom:449.436600pt;}
.y52{bottom:450.241365pt;}
.y24{bottom:450.555812pt;}
.yfb{bottom:457.279923pt;}
.yd5{bottom:458.391680pt;}
.y11{bottom:461.598904pt;}
.ye2{bottom:461.760026pt;}
.y3b{bottom:462.075267pt;}
.ya0{bottom:467.840921pt;}
.y4{bottom:468.482857pt;}
.yef{bottom:470.721776pt;}
.y7a{bottom:471.844841pt;}
.y115{bottom:472.963956pt;}
.yc9{bottom:477.274156pt;}
.yc1{bottom:477.286044pt;}
.y43{bottom:479.676835pt;}
.y30{bottom:479.837240pt;}
.yfa{bottom:485.759656pt;}
.y10{bottom:489.601209pt;}
.y92{bottom:491.682914pt;}
.y6a{bottom:496.316798pt;}
.yd4{bottom:497.598058pt;}
.y1f{bottom:499.840243pt;}
.yf9{bottom:502.560446pt;}
.ye4{bottom:505.918073pt;}
.y114{bottom:506.555656pt;}
.y23{bottom:507.366501pt;}
.y2f{bottom:511.520009pt;}
.y42{bottom:514.881823pt;}
.yc8{bottom:516.640700pt;}
.yf{bottom:517.603532pt;}
.yf8{bottom:519.361263pt;}
.y112{bottom:520.324311pt;}
.yee{bottom:521.116179pt;}
.yc0{bottom:522.886806pt;}
.y79{bottom:526.874719pt;}
.ye5{bottom:532.637400pt;}
.y3{bottom:533.286583pt;}
.y69{bottom:535.523176pt;}
.y2e{bottom:543.358417pt;}
.ye{bottom:545.765541pt;}
.yf7{bottom:547.840970pt;}
.y41{bottom:550.237202pt;}
.y5c{bottom:554.080651pt;}
.yc7{bottom:555.847078pt;}
.yf6{bottom:564.796468pt;}
.y22{bottom:567.045743pt;}
.y6c{bottom:567.361590pt;}
.yd{bottom:573.756447pt;}
.y2d{bottom:575.196825pt;}
.y113{bottom:584.638009pt;}
.y40{bottom:585.596129pt;}
.yed{bottom:592.318581pt;}
.y1c{bottom:593.756687pt;}
.y5b{bottom:599.509804pt;}
.y3a{bottom:601.766976pt;}
.y8a{bottom:604.790351pt;}
.y7f{bottom:605.920436pt;}
.y9f{bottom:607.523090pt;}
.y5d{bottom:609.594851pt;}
.y111{bottom:612.469228pt;}
.yd3{bottom:613.590439pt;}
.yc6{bottom:625.439063pt;}
.y6b{bottom:626.567341pt;}
.ya5{bottom:626.713869pt;}
.yc{bottom:631.677839pt;}
.yec{bottom:632.793333pt;}
.y2c{bottom:634.090207pt;}
.y38{bottom:636.001067pt;}
.yf5{bottom:636.331754pt;}
.y3f{bottom:637.110601pt;}
.y1b{bottom:639.206375pt;}
.ybf{bottom:639.831637pt;}
.y5a{bottom:644.959508pt;}
.y110{bottom:663.044501pt;}
.h34{height:31.917772pt;}
.h2d{height:34.833814pt;}
.h2{height:40.173340pt;}
.h2f{height:46.346636pt;}
.h10{height:48.427781pt;}
.h27{height:52.937560pt;}
.h2e{height:53.379994pt;}
.h26{height:56.017825pt;}
.hc{height:56.132226pt;}
.h32{height:60.534444pt;}
.h12{height:63.524875pt;}
.h25{height:64.386667pt;}
.h30{height:64.929781pt;}
.h13{height:64.936662pt;}
.h29{height:70.262437pt;}
.h31{height:72.641108pt;}
.he{height:79.887806pt;}
.h7{height:80.345553pt;}
.h14{height:82.906036pt;}
.h17{height:84.218533pt;}
.h11{height:85.749779pt;}
.h15{height:88.550245pt;}
.h4{height:88.599994pt;}
.hf{height:91.352225pt;}
.h16{height:92.949865pt;}
.h1e{height:96.299217pt;}
.hb{height:96.304439pt;}
.h21{height:96.319741pt;}
.h22{height:96.319748pt;}
.h1d{height:96.319887pt;}
.h1b{height:96.319976pt;}
.h20{height:96.321731pt;}
.h1c{height:96.322044pt;}
.h1f{height:96.323819pt;}
.h2b{height:98.635314pt;}
.h2c{height:98.642549pt;}
.h5{height:98.656587pt;}
.ha{height:100.706657pt;}
.h1a{height:107.311111pt;}
.h9{height:112.814448pt;}
.h24{height:114.679391pt;}
.h19{height:124.508785pt;}
.hd{height:126.568778pt;}
.h2a{height:128.773334pt;}
.h23{height:129.390305pt;}
.h8{height:144.732220pt;}
.h33{height:147.483324pt;}
.h18{height:160.691106pt;}
.h28{height:172.347226pt;}
.h6{height:177.201114pt;}
.h3{height:197.012223pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x25{left:20.485240pt;}
.x29{left:24.327817pt;}
.x3f{left:29.442001pt;}
.x2a{left:30.560206pt;}
.x38{left:35.361179pt;}
.x30{left:37.925684pt;}
.x4f{left:39.206384pt;}
.x19{left:41.758245pt;}
.x18{left:43.045715pt;}
.x10{left:44.005551pt;}
.x1a{left:44.962411pt;}
.xc{left:47.039336pt;}
.x2{left:48.973369pt;}
.x34{left:52.158072pt;}
.x42{left:59.041881pt;}
.x41{left:60.315051pt;}
.xb{left:62.890800pt;}
.x39{left:64.959600pt;}
.x1d{left:67.515808pt;}
.x50{left:69.758474pt;}
.x1e{left:74.238090pt;}
.x14{left:78.242523pt;}
.x16{left:83.669916pt;}
.x11{left:85.762681pt;}
.x1f{left:86.720482pt;}
.x51{left:90.561041pt;}
.x53{left:93.759289pt;}
.x40{left:95.684220pt;}
.xd{left:97.599552pt;}
.x17{left:100.962848pt;}
.x20{left:106.243867pt;}
.x21{left:110.236042pt;}
.x22{left:113.284867pt;}
.x45{left:122.888318pt;}
.x26{left:132.479844pt;}
.x23{left:135.843403pt;}
.x28{left:145.601652pt;}
.xe{left:152.645442pt;}
.xf{left:155.368115pt;}
.x3a{left:156.320667pt;}
.x46{left:160.316954pt;}
.x6{left:161.276143pt;}
.x27{left:167.525773pt;}
.x43{left:209.116745pt;}
.x37{left:211.212460pt;}
.x44{left:230.241407pt;}
.x1{left:241.285287pt;}
.xa{left:287.513494pt;}
.x3c{left:302.402229pt;}
.x35{left:337.446875pt;}
.x3{left:365.748009pt;}
.x4{left:383.200513pt;}
.x12{left:424.481790pt;}
.x7{left:434.560074pt;}
.x9{left:444.484197pt;}
.x5{left:461.602946pt;}
.x8{left:467.514659pt;}
.x3d{left:563.194517pt;}
.x31{left:569.760247pt;}
.x24{left:604.637124pt;}
.x49{left:660.804383pt;}
.x2e{left:664.170269pt;}
.x48{left:672.799061pt;}
.x36{left:681.281456pt;}
.x2f{left:706.232564pt;}
.x2b{left:734.879487pt;}
.x2c{left:752.005695pt;}
.x1c{left:753.755187pt;}
.x2d{left:791.039027pt;}
.x15{left:798.565106pt;}
.x47{left:801.279696pt;}
.x4a{left:814.241169pt;}
.x4e{left:819.842160pt;}
.x32{left:823.360276pt;}
.x3e{left:830.559596pt;}
.x3b{left:846.724883pt;}
.x1b{left:901.279662pt;}
.x52{left:921.750842pt;}
.x4d{left:940.156588pt;}
.x4c{left:941.755010pt;}
.x4b{left:955.676858pt;}
.x33{left:1022.408666pt;}
.x13{left:1028.965719pt;}
}




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