
    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_8ff692a02006593767dbb01c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_e66613ae4ad571930886c9e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_79ef372c0f59f66997abb779.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_5465cb3dc95bd789cc673280.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_8780c15ec2ec109a22b5f558.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_d726e4be841d932a718f8ab6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0894789660679c7800eaf73b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_125151ac10ee2d73876433a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e974f659ce88e83e66b142c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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;}
.m3{transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v9{vertical-align:-70.559969px;}
.v2{vertical-align:-15.120072px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880067px;}
.v6{vertical-align:7.199887px;}
.v4{vertical-align:12.960022px;}
.v8{vertical-align:15.120211px;}
.v3{vertical-align:20.880067px;}
.v1{vertical-align:23.759991px;}
.va{vertical-align:35.280050px;}
.v7{vertical-align:43.920009px;}
.vb{vertical-align:71.280050px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.176973px;}
.lse{letter-spacing:0.658919px;}
.lsd{letter-spacing:0.935465px;}
.ls4{letter-spacing:1.393049px;}
.ls3{letter-spacing:72.317062px;}
.ls1d{letter-spacing:135.543244px;}
.ls1c{letter-spacing:136.263123px;}
.ls1e{letter-spacing:136.263397px;}
.ls1b{letter-spacing:136.983276px;}
.ls1a{letter-spacing:154.983276px;}
.ls7{letter-spacing:181.032586px;}
.lsa{letter-spacing:191.832838px;}
.ls6{letter-spacing:214.152662px;}
.ls8{letter-spacing:232.152662px;}
.ls9{letter-spacing:242.232752px;}
.lsf{letter-spacing:471.063164px;}
.lsc{letter-spacing:498.552716px;}
.ls14{letter-spacing:509.223145px;}
.ls10{letter-spacing:520.023186px;}
.ls13{letter-spacing:543.783177px;}
.ls11{letter-spacing:546.663177px;}
.ls12{letter-spacing:553.863136px;}
.ls15{letter-spacing:563.943092px;}
.ls16{letter-spacing:567.543240px;}
.ls5{letter-spacing:697.863137px;}
.lsb{letter-spacing:736.743272px;}
.ls0{letter-spacing:849.041377px;}
.ls17{letter-spacing:849.779438px;}
.ls19{letter-spacing:851.939550px;}
.ls18{letter-spacing:1323.543195px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc3{text-shadow:-0.015em 0 rgb(1,2,5),0 0.015em rgb(1,2,5),0.015em 0 rgb(1,2,5),0 -0.015em  rgb(1,2,5);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(1,2,5);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-180.007191px;}
.wsd{word-spacing:-56.882250px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.wsa{word-spacing:-13.367329px;}
.wsb{word-spacing:-11.336823px;}
.wsf{word-spacing:-11.165801px;}
.wse{word-spacing:-10.564954px;}
.ws4{word-spacing:-9.934234px;}
.ws5{word-spacing:-9.145795px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.wsc{word-spacing:-7.106675px;}
.ws6{word-spacing:-5.992077px;}
.ws9{word-spacing:0.000000px;}
._1f{margin-left:-3.490763px;}
._7{margin-left:-2.489606px;}
._0{margin-left:-1.302529px;}
._1{width:1.061320px;}
._8{width:2.389814px;}
._5{width:3.925397px;}
._6{width:5.770799px;}
._d{width:6.783890px;}
._c{width:7.830326px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._1d{width:11.760879px;}
._9{width:13.230551px;}
._11{width:14.618738px;}
._a{width:16.092670px;}
._b{width:17.172715px;}
._16{width:18.941789px;}
._1b{width:20.789381px;}
._18{width:22.354724px;}
._15{width:24.061192px;}
._1a{width:25.597013px;}
._12{width:28.554890px;}
._41{width:29.692535px;}
._17{width:32.044150px;}
._1c{width:33.105470px;}
._5e{width:34.251678px;}
._5c{width:35.437642px;}
._13{width:36.689051px;}
._14{width:38.224872px;}
._1e{width:45.790211px;}
._40{width:48.145338px;}
._5d{width:60.864008px;}
._19{width:125.862856px;}
._81{width:130.166684px;}
._e{width:135.993634px;}
._87{width:137.280888px;}
._80{width:162.585174px;}
._82{width:185.711963px;}
._f{width:202.519076px;}
._49{width:218.133247px;}
._84{width:235.960951px;}
._65{width:269.792566px;}
._83{width:274.495842px;}
._30{width:276.569111px;}
._4d{width:282.933085px;}
._44{width:284.433653px;}
._32{width:287.123996px;}
._2f{width:290.723942px;}
._45{width:297.240006px;}
._6c{width:313.622227px;}
._33{width:317.267648px;}
._31{width:318.328967px;}
._4a{width:323.200261px;}
._2e{width:325.277809px;}
._6a{width:334.502290px;}
._6b{width:336.662204px;}
._4c{width:341.257377px;}
._68{width:348.182191px;}
._6f{width:360.422200px;}
._55{width:364.436824px;}
._4f{width:365.592432px;}
._64{width:373.199054px;}
._51{width:375.336243px;}
._61{width:377.539775px;}
._66{width:381.302263px;}
._53{width:382.324943px;}
._75{width:384.048755px;}
._69{width:385.622087px;}
._57{width:391.879261px;}
._6e{width:398.582245px;}
._70{width:399.847626px;}
._48{width:405.014443px;}
._6d{width:415.862231px;}
._62{width:423.599041px;}
._67{width:431.702182px;}
._43{width:438.276753px;}
._63{width:443.039005px;}
._71{width:445.995441px;}
._27{width:448.557509px;}
._4b{width:454.090486px;}
._54{width:461.059456px;}
._7f{width:467.341145px;}
._73{width:469.633923px;}
._72{width:471.081177px;}
._7c{width:476.031414px;}
._4e{width:478.900013px;}
._7b{width:491.607707px;}
._52{width:493.599393px;}
._79{width:496.464521px;}
._50{width:498.271450px;}
._7a{width:499.714874px;}
._74{width:508.824221px;}
._56{width:513.669630px;}
._7d{width:519.584687px;}
._85{width:521.831551px;}
._7e{width:532.489528px;}
._42{width:534.856837px;}
._47{width:544.144845px;}
._10{width:546.097176px;}
._46{width:553.783832px;}
._76{width:559.305060px;}
._77{width:560.811455px;}
._78{width:562.358806px;}
._5a{width:564.531882px;}
._86{width:596.075681px;}
._2c{width:609.559137px;}
._88{width:624.152408px;}
._28{width:638.691936px;}
._2a{width:650.931801px;}
._5f{width:684.936588px;}
._3c{width:731.333273px;}
._2d{width:779.799913px;}
._21{width:797.109618px;}
._23{width:833.710061px;}
._22{width:845.767184px;}
._3e{width:878.021897px;}
._39{width:891.357590px;}
._29{width:913.169032px;}
._2b{width:925.252040px;}
._3b{width:933.117581px;}
._26{width:977.384264px;}
._3a{width:1040.451927px;}
._38{width:1058.845708px;}
._3d{width:1086.205654px;}
._3f{width:1138.503128px;}
._60{width:1189.142353px;}
._4{width:1196.879058px;}
._20{width:1256.200898px;}
._34{width:1273.895247px;}
._35{width:1290.773345px;}
._24{width:1312.028670px;}
._37{width:1408.503218px;}
._36{width:1424.501942px;}
._59{width:1439.093201px;}
._25{width:1462.883857px;}
._58{width:1683.854063px;}
._5b{width:1711.781820px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.361080px;}
.fs13{font-size:30.241170px;}
.fs12{font-size:33.121260px;}
.fse{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs15{font-size:48.240000px;}
.fs0{font-size:48.241800px;}
.fsf{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs7{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs11{font-size:60.117237px;}
.fs14{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs10{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y0{bottom:0.000000px;}
.y45{bottom:2.879998px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y1d1{bottom:6.479978px;}
.y131{bottom:6.480011px;}
.y105{bottom:12.779984px;}
.y106{bottom:12.959954px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y17c{bottom:107.280121px;}
.y1ac{bottom:108.180039px;}
.y12d{bottom:113.940033px;}
.y10{bottom:115.572842px;}
.ybf{bottom:118.080093px;}
.y1ab{bottom:122.400055px;}
.y1c4{bottom:126.540047px;}
.y95{bottom:127.080093px;}
.ye{bottom:127.800041px;}
.y116{bottom:128.340088px;}
.yee{bottom:130.860077px;}
.y12c{bottom:135.000068px;}
.ybe{bottom:139.320099px;}
.y1aa{bottom:144.000068px;}
.y94{bottom:148.320099px;}
.y115{bottom:149.400055px;}
.yed{bottom:151.920043px;}
.y12b{bottom:156.060036px;}
.ybd{bottom:160.380066px;}
.y93{bottom:169.380066px;}
.y17b{bottom:170.280052px;}
.y114{bottom:170.640060px;}
.yec{bottom:173.160049px;}
.ybc{bottom:181.440033px;}
.y1c3{bottom:181.980079px;}
.y1a9{bottom:183.960091px;}
.y92{bottom:190.440033px;}
.y17a{bottom:191.340088px;}
.y113{bottom:191.700096px;}
.yeb{bottom:194.220085px;}
.y13d{bottom:199.980079px;}
.ybb{bottom:202.680039px;}
.y91{bottom:211.680039px;}
.y179{bottom:212.400055px;}
.y112{bottom:212.760064px;}
.yea{bottom:215.280052px;}
.yba{bottom:223.740074px;}
.y1a8{bottom:224.280052px;}
.y90{bottom:232.740074px;}
.y178{bottom:233.280052px;}
.ye9{bottom:236.520058px;}
.y1a7{bottom:238.500068px;}
.y1f1{bottom:239.040047px;}
.yb9{bottom:244.800041px;}
.y111{bottom:251.280052px;}
.y1a6{bottom:252.720085px;}
.y8f{bottom:253.980079px;}
.y177{bottom:254.340088px;}
.ye8{bottom:257.580093px;}
.y13c{bottom:264.060036px;}
.y1f0{bottom:265.680039px;}
.yb8{bottom:269.100083px;}
.y8e{bottom:275.040047px;}
.y110{bottom:275.220085px;}
.y176{bottom:275.400055px;}
.ye7{bottom:278.820099px;}
.y1a5{bottom:289.980079px;}
.yb7{bottom:290.160049px;}
.y1ef{bottom:291.780052px;}
.y13b{bottom:295.200096px;}
.y8d{bottom:296.100083px;}
.y175{bottom:296.280052px;}
.y10f{bottom:299.160049px;}
.ye6{bottom:299.880066px;}
.y1c1{bottom:310.860077px;}
.yb6{bottom:311.400055px;}
.y8c{bottom:317.340088px;}
.y1ee{bottom:317.520058px;}
.y13a{bottom:319.860077px;}
.y10e{bottom:323.100083px;}
.ye5{bottom:324.180039px;}
.y1a4{bottom:324.900055px;}
.yb5{bottom:332.460091px;}
.y8b{bottom:338.400055px;}
.y1a3{bottom:343.800041px;}
.y10d{bottom:347.040047px;}
.ye4{bottom:351.000068px;}
.y12a{bottom:351.180039px;}
.yb4{bottom:353.520058px;}
.y174{bottom:359.280052px;}
.y8a{bottom:359.640060px;}
.y43{bottom:364.140060px;}
.y10c{bottom:370.980079px;}
.ye3{bottom:372.240074px;}
.yb3{bottom:374.760064px;}
.y1a2{bottom:376.020058px;}
.y42{bottom:380.160049px;}
.y173{bottom:380.340088px;}
.y89{bottom:380.700096px;}
.y129{bottom:381.420043px;}
.y151{bottom:382.860077px;}
.y1a1{bottom:389.340088px;}
.ye2{bottom:393.300041px;}
.y10b{bottom:394.920043px;}
.y41{bottom:395.820099px;}
.y1ed{bottom:399.240074px;}
.y172{bottom:401.400055px;}
.y88{bottom:401.760064px;}
.y128{bottom:402.480079px;}
.y1a0{bottom:402.660049px;}
.y150{bottom:403.740074px;}
.y40{bottom:410.040047px;}
.ye1{bottom:414.360077px;}
.yb2{bottom:417.060036px;}
.y10a{bottom:418.680039px;}
.y19f{bottom:421.020058px;}
.y171{bottom:422.280052px;}
.y87{bottom:423.000068px;}
.y127{bottom:423.540047px;}
.y14f{bottom:424.800041px;}
.y3f{bottom:424.980079px;}
.y204{bottom:425.340088px;}
.ye0{bottom:435.600083px;}
.yb1{bottom:438.120072px;}
.y109{bottom:442.620072px;}
.y3e{bottom:443.340088px;}
.y86{bottom:444.060036px;}
.y14e{bottom:445.860077px;}
.ydf{bottom:456.660049px;}
.yb0{bottom:459.180039px;}
.y19e{bottom:460.440033px;}
.y3d{bottom:461.340088px;}
.y62{bottom:461.700096px;}
.y170{bottom:464.400055px;}
.y85{bottom:465.300041px;}
.y126{bottom:466.020058px;}
.y108{bottom:466.560036px;}
.y14d{bottom:466.740074px;}
.y201{bottom:473.400055px;}
.y19d{bottom:473.940033px;}
.y61{bottom:475.920043px;}
.y3c{bottom:477.360077px;}
.yde{bottom:477.900055px;}
.yaf{bottom:480.420043px;}
.y104{bottom:481.320099px;}
.y16f{bottom:485.280052px;}
.y84{bottom:486.360077px;}
.y19c{bottom:487.260064px;}
.y14c{bottom:487.800041px;}
.y60{bottom:489.420043px;}
.y200{bottom:491.220085px;}
.y203{bottom:492.660049px;}
.y3b{bottom:493.380066px;}
.y107{bottom:494.100083px;}
.y103{bottom:495.900055px;}
.y125{bottom:497.520058px;}
.ydd{bottom:498.960091px;}
.y1ec{bottom:499.500068px;}
.y19b{bottom:500.580093px;}
.yae{bottom:501.480079px;}
.y16e{bottom:506.340088px;}
.y83{bottom:507.420043px;}
.y14b{bottom:508.860077px;}
.y3a{bottom:509.400055px;}
.y5f{bottom:511.380066px;}
.y19a{bottom:513.900055px;}
.ydc{bottom:520.020058px;}
.yad{bottom:522.540047px;}
.y102{bottom:523.620072px;}
.y39{bottom:525.420043px;}
.y199{bottom:527.220085px;}
.y16d{bottom:527.400055px;}
.y124{bottom:528.300041px;}
.y82{bottom:528.660049px;}
.y5e{bottom:533.160049px;}
.y15e{bottom:539.640060px;}
.y38{bottom:541.260064px;}
.y1eb{bottom:542.160049px;}
.y198{bottom:545.580093px;}
.yac{bottom:546.660049px;}
.y16c{bottom:548.280052px;}
.y81{bottom:549.720085px;}
.y101{bottom:553.860077px;}
.y123{bottom:554.220085px;}
.y5d{bottom:555.120072px;}
.y37{bottom:557.280052px;}
.ydb{bottom:562.320099px;}
.y197{bottom:562.680039px;}
.y16b{bottom:569.340088px;}
.y15d{bottom:570.780052px;}
.y80{bottom:570.960091px;}
.y36{bottom:573.300041px;}
.y100{bottom:574.920043px;}
.y196{bottom:576.000068px;}
.y5c{bottom:577.260064px;}
.yda{bottom:583.560036px;}
.y122{bottom:584.280052px;}
.y1ea{bottom:585.000068px;}
.y35{bottom:589.320099px;}
.y195{bottom:589.500068px;}
.y16a{bottom:590.400055px;}
.y7f{bottom:592.020058px;}
.yff{bottom:595.980079px;}
.y15c{bottom:598.500068px;}
.y5b{bottom:599.400055px;}
.y194{bottom:602.820099px;}
.yd9{bottom:604.620072px;}
.y34{bottom:605.340088px;}
.y121{bottom:605.520058px;}
.y202{bottom:609.660049px;}
.y169{bottom:611.280052px;}
.y7e{bottom:613.080093px;}
.y193{bottom:616.140060px;}
.yfe{bottom:617.040047px;}
.y1db{bottom:619.380066px;}
.y33{bottom:621.360077px;}
.y5a{bottom:622.080093px;}
.yd8{bottom:625.680039px;}
.y120{bottom:626.580093px;}
.y1e9{bottom:627.660049px;}
.y192{bottom:629.460091px;}
.y168{bottom:632.340088px;}
.y7d{bottom:634.320099px;}
.y1da{bottom:637.200096px;}
.y32{bottom:637.380066px;}
.y59{bottom:644.940033px;}
.y14a{bottom:646.560036px;}
.yd7{bottom:646.920043px;}
.y11f{bottom:647.820099px;}
.y31{bottom:653.400055px;}
.yfd{bottom:654.120072px;}
.y1d9{bottom:654.840088px;}
.y7c{bottom:655.380066px;}
.y58{bottom:666.720085px;}
.y149{bottom:667.620072px;}
.yd6{bottom:667.980079px;}
.y1ff{bottom:668.340088px;}
.y11e{bottom:668.880066px;}
.y30{bottom:669.600083px;}
.y1e8{bottom:669.780052px;}
.y1d8{bottom:672.660049px;}
.y167{bottom:675.000068px;}
.y7b{bottom:676.620072px;}
.yfc{bottom:680.040047px;}
.y57{bottom:686.160049px;}
.y2f{bottom:687.960056px;}
.y148{bottom:688.500068px;}
.yd5{bottom:689.220051px;}
.y191{bottom:693.360077px;}
.y1d5{bottom:695.700061px;}
.y7a{bottom:697.680073px;}
.y56{bottom:703.620072px;}
.y1d7{bottom:704.700061px;}
.yfb{bottom:706.140060px;}
.y2e{bottom:706.320065px;}
.y190{bottom:706.680073px;}
.y147{bottom:709.560070px;}
.yd4{bottom:710.280052px;}
.y139{bottom:711.000068px;}
.y1e7{bottom:712.080059px;}
.y1d4{bottom:713.520058px;}
.y79{bottom:718.920078px;}
.y166{bottom:720.000068px;}
.y1d6{bottom:722.520058px;}
.y2d{bottom:724.680073px;}
.y1fe{bottom:727.740074px;}
.yfa{bottom:728.100083px;}
.y146{bottom:730.620072px;}
.yd3{bottom:731.340054px;}
.y18f{bottom:733.320065px;}
.y138{bottom:735.840054px;}
.y55{bottom:736.560070px;}
.y78{bottom:739.980079px;}
.y2c{bottom:743.040081px;}
.y165{bottom:743.400055px;}
.y18e{bottom:746.640060px;}
.y145{bottom:751.500068px;}
.yd2{bottom:752.580059px;}
.y1e6{bottom:754.200061px;}
.y137{bottom:754.380066px;}
.yf9{bottom:758.160049px;}
.y18d{bottom:759.960056px;}
.y2b{bottom:761.040081px;}
.y1d3{bottom:763.200061px;}
.y164{bottom:764.460056px;}
.y54{bottom:771.120072px;}
.y1cf{bottom:772.200061px;}
.y144{bottom:772.560070px;}
.yd1{bottom:773.640060px;}
.y1fa{bottom:776.340054px;}
.y2a{bottom:777.060070px;}
.y18c{bottom:778.320065px;}
.yab{bottom:779.220051px;}
.yf8{bottom:779.400055px;}
.y1d2{bottom:781.020058px;}
.y77{bottom:782.280052px;}
.y1d0{bottom:783.540081px;}
.y53{bottom:784.440067px;}
.y1c0{bottom:784.800076px;}
.y163{bottom:785.340054px;}
.y136{bottom:785.700061px;}
.y1fd{bottom:786.420078px;}
.y29{bottom:793.080059px;}
.y1f9{bottom:794.160049px;}
.yd0{bottom:794.880066px;}
.y18b{bottom:795.600083px;}
.y1e5{bottom:796.500068px;}
.y15b{bottom:798.120072px;}
.yf7{bottom:800.460056px;}
.y52{bottom:801.540081px;}
.y76{bottom:803.340054px;}
.yaa{bottom:806.040081px;}
.y162{bottom:806.400055px;}
.y1bf{bottom:806.940067px;}
.y18a{bottom:808.920078px;}
.y28{bottom:809.100083px;}
.y135{bottom:810.540081px;}
.y51{bottom:811.080059px;}
.y1f8{bottom:811.980079px;}
.ycf{bottom:815.940067px;}
.y15a{bottom:819.360077px;}
.y1ce{bottom:820.980079px;}
.y189{bottom:822.240074px;}
.y50{bottom:824.400055px;}
.y75{bottom:824.580059px;}
.y27{bottom:825.120072px;}
.ya9{bottom:827.280052px;}
.y161{bottom:827.460056px;}
.y134{bottom:829.080059px;}
.y1be{bottom:829.260064px;}
.y1cd{bottom:829.980079px;}
.y188{bottom:835.560070px;}
.yf6{bottom:836.640060px;}
.yce{bottom:837.000068px;}
.y4f{bottom:837.720051px;}
.y1e4{bottom:838.800076px;}
.y159{bottom:840.600083px;}
.y26{bottom:840.960056px;}
.y74{bottom:845.640060px;}
.ya8{bottom:848.340054px;}
.y187{bottom:848.880066px;}
.y1fc{bottom:850.500068px;}
.y1bd{bottom:851.040081px;}
.y4e{bottom:854.820065px;}
.y25{bottom:856.980079px;}
.yf5{bottom:857.700061px;}
.ycd{bottom:858.240074px;}
.y133{bottom:860.400055px;}
.y158{bottom:861.840054px;}
.y186{bottom:862.200061px;}
.y4d{bottom:864.360077px;}
.y1bc{bottom:865.260064px;}
.y73{bottom:866.700061px;}
.ya7{bottom:869.580059px;}
.y160{bottom:872.820065px;}
.y24{bottom:873.000068px;}
.y185{bottom:875.520058px;}
.y4c{bottom:877.680073px;}
.yf4{bottom:878.760064px;}
.ycc{bottom:879.300076px;}
.y1cc{bottom:879.840054px;}
.y157{bottom:883.260064px;}
.y132{bottom:885.240074px;}
.y1e3{bottom:886.500068px;}
.y1bb{bottom:886.860077px;}
.y72{bottom:887.940067px;}
.y1cb{bottom:888.660049px;}
.y184{bottom:888.840054px;}
.y23{bottom:889.020058px;}
.ya6{bottom:890.640060px;}
.y4b{bottom:891.000068px;}
.ycb{bottom:900.360077px;}
.y1ba{bottom:901.080059px;}
.y183{bottom:902.160049px;}
.y130{bottom:903.780052px;}
.y15f{bottom:904.320065px;}
.y156{bottom:904.500068px;}
.y22{bottom:905.040081px;}
.y4a{bottom:908.100083px;}
.y71{bottom:909.000068px;}
.ya5{bottom:911.700061px;}
.y182{bottom:915.480079px;}
.yf3{bottom:916.380066px;}
.y1fb{bottom:917.460056px;}
.y49{bottom:917.640060px;}
.y21{bottom:921.060070px;}
.y1b9{bottom:922.860077px;}
.yca{bottom:924.660049px;}
.y155{bottom:925.740074px;}
.y181{bottom:928.800076px;}
.y70{bottom:930.240074px;}
.y48{bottom:931.140060px;}
.ya4{bottom:932.940067px;}
.y12f{bottom:935.100083px;}
.y1e2{bottom:936.540081px;}
.y20{bottom:937.080059px;}
.y1ca{bottom:938.520058px;}
.yf2{bottom:939.060070px;}
.yf0{bottom:941.580059px;}
.y180{bottom:942.120072px;}
.y47{bottom:944.280053px;}
.y154{bottom:947.160049px;}
.y1c9{bottom:947.520058px;}
.y6f{bottom:951.300076px;}
.ya3{bottom:954.000068px;}
.yc9{bottom:956.160049px;}
.y46{bottom:956.700061px;}
.y1f{bottom:957.060070px;}
.y1b8{bottom:958.860077px;}
.y12e{bottom:959.940067px;}
.y17f{bottom:960.480079px;}
.yf1{bottom:964.080059px;}
.y44{bottom:967.680073px;}
.y153{bottom:968.400055px;}
.y6e{bottom:972.360077px;}
.y1f4{bottom:974.874367px;}
.ya2{bottom:975.240074px;}
.yc8{bottom:977.400072px;}
.y11d{bottom:979.740074px;}
.y1f6{bottom:979.915682px;}
.y1b7{bottom:980.460074px;}
.y1e1{bottom:984.240074px;}
.y152{bottom:989.640060px;}
.y1e{bottom:991.260064px;}
.y6d{bottom:993.600065px;}
.y17e{bottom:993.960074px;}
.y1f3{bottom:994.858691px;}
.yef{bottom:995.580059px;}
.ya1{bottom:996.300058px;}
.y1c8{bottom:997.020058px;}
.yc7{bottom:997.740074px;}
.y1f7{bottom:999.899988px;}
.y1b6{bottom:1002.240074px;}
.y1f5{bottom:1002.601555px;}
.y1c7{bottom:1006.020058px;}
.y11c{bottom:1009.800058px;}
.y6c{bottom:1014.660067px;}
.y17d{bottom:1015.020058px;}
.y1b5{bottom:1016.460074px;}
.ya0{bottom:1017.540064px;}
.y1d{bottom:1018.260064px;}
.y143{bottom:1018.440067px;}
.yc6{bottom:1018.980063px;}
.y1f2{bottom:1028.160067px;}
.y11b{bottom:1030.860060px;}
.y6b{bottom:1035.900072px;}
.y142{bottom:1036.080059px;}
.y1b4{bottom:1038.240074px;}
.y9f{bottom:1038.600065px;}
.yc5{bottom:1040.040064px;}
.y1c{bottom:1045.440067px;}
.y1e0{bottom:1048.860060px;}
.y1b3{bottom:1052.460074px;}
.y1de{bottom:1056.420061px;}
.y6a{bottom:1056.960074px;}
.y9e{bottom:1059.660067px;}
.yc4{bottom:1061.100065px;}
.y11a{bottom:1069.200061px;}
.y1b{bottom:1071.900072px;}
.y1b2{bottom:1074.060070px;}
.y1dd{bottom:1076.760064px;}
.y69{bottom:1078.020058px;}
.y9d{bottom:1080.900072px;}
.yc3{bottom:1082.340070px;}
.y1df{bottom:1084.320065px;}
.y1c6{bottom:1085.940067px;}
.y1b1{bottom:1088.280069px;}
.y119{bottom:1094.220068px;}
.y1a{bottom:1098.900072px;}
.y141{bottom:1099.080059px;}
.y68{bottom:1099.260064px;}
.y9c{bottom:1101.960074px;}
.y1b0{bottom:1102.500068px;}
.yc2{bottom:1103.400072px;}
.y118{bottom:1117.980063px;}
.y140{bottom:1119.960065px;}
.y67{bottom:1120.320065px;}
.y9b{bottom:1123.200061px;}
.y1af{bottom:1124.280069px;}
.yc1{bottom:1124.640069px;}
.y117{bottom:1130.760064px;}
.yd{bottom:1131.840063px;}
.y13f{bottom:1141.020066px;}
.y9a{bottom:1144.260064px;}
.yc0{bottom:1145.700061px;}
.y1ae{bottom:1146.060070px;}
.y1c5{bottom:1146.420069px;}
.yc{bottom:1149.660067px;}
.y66{bottom:1159.560070px;}
.y13e{bottom:1162.080068px;}
.y1c2{bottom:1165.140069px;}
.y99{bottom:1165.320065px;}
.y1dc{bottom:1167.480063px;}
.y1ad{bottom:1167.660067px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.y98{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y65{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.y97{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y64{bottom:1216.080068px;}
.y96{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y63{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h11{height:13.319996px;}
.h27{height:17.639992px;}
.h26{height:17.640026px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h18{height:25.137693px;}
.h17{height:26.622331px;}
.h14{height:27.293211px;}
.h16{height:27.293216px;}
.h15{height:27.293346px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.h22{height:34.019990px;}
.h19{height:40.634056px;}
.h23{height:40.656908px;}
.h12{height:42.413283px;}
.h13{height:44.137031px;}
.h2{height:45.106083px;}
.h34{height:45.828000px;}
.h1e{height:45.829710px;}
.h1a{height:45.926194px;}
.h3{height:46.891030px;}
.h2a{height:46.939271px;}
.h29{height:47.671340px;}
.h2b{height:48.436121px;}
.h1b{height:48.538092px;}
.h10{height:50.492104px;}
.h24{height:53.029597px;}
.h1d{height:54.038138px;}
.hd{height:54.151902px;}
.h28{height:56.774138px;}
.h21{height:56.918205px;}
.h1f{height:57.111375px;}
.hf{height:58.148669px;}
.he{height:61.936925px;}
.h33{height:62.665265px;}
.h20{height:66.998160px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1c{height:77.294993px;}
.h2e{height:81.109692px;}
.h31{height:81.109696px;}
.h2c{height:81.109760px;}
.h30{height:81.829710px;}
.hc{height:91.166947px;}
.h25{height:97.958146px;}
.h2f{height:117.109692px;}
.h32{height:117.109696px;}
.h2d{height:117.109760px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wf{width:4.320012px;}
.w4{width:5.579991px;}
.wb{width:5.939964px;}
.wa{width:5.939999px;}
.wd{width:5.940034px;}
.we{width:6.119987px;}
.w11{width:6.120003px;}
.w8{width:6.299990px;}
.w6{width:6.840002px;}
.w5{width:7.020007px;}
.w2{width:8.100014px;}
.w10{width:20.699993px;}
.w9{width:20.879997px;}
.wc{width:23.940016px;}
.w7{width:24.120003px;}
.w3{width:81.360008px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x37{left:62.460000px;}
.x75{left:66.240001px;}
.x6d{left:69.299998px;}
.x7c{left:72.000000px;}
.xa{left:79.560001px;}
.x66{left:81.180005px;}
.x10{left:82.439999px;}
.x71{left:83.879998px;}
.x64{left:86.400003px;}
.x13{left:87.659998px;}
.x1{left:89.640000px;}
.x29{left:95.040003px;}
.x42{left:97.920001px;}
.x2e{left:99.000000px;}
.x67{left:100.260003px;}
.x7{left:102.959997px;}
.x83{left:104.579999px;}
.x15{left:106.920001px;}
.x49{left:109.260003px;}
.x2c{left:110.700002px;}
.x45{left:120.420001px;}
.x8a{left:121.500000px;}
.x87{left:122.939999px;}
.x47{left:124.379998px;}
.x46{left:126.000000px;}
.x86{left:127.439999px;}
.x85{left:129.060001px;}
.x48{left:131.400003px;}
.x43{left:132.480002px;}
.x88{left:134.459997px;}
.x89{left:138.060001px;}
.x20{left:140.040003px;}
.x84{left:144.900003px;}
.x8e{left:154.080008px;}
.x41{left:155.699993px;}
.x38{left:160.919992px;}
.x14{left:162.180005px;}
.x11{left:163.800007px;}
.x12{left:183.240006px;}
.x39{left:184.860008px;}
.x17{left:191.340002px;}
.x32{left:192.419992px;}
.x24{left:198.180005px;}
.x28{left:201.419992px;}
.x18{left:213.300007px;}
.x1a{left:218.340002px;}
.x76{left:220.139992px;}
.x25{left:221.400003px;}
.x31{left:226.259994px;}
.x27{left:227.699993px;}
.x2f{left:232.740006px;}
.x52{left:233.819996px;}
.x69{left:235.080008px;}
.x72{left:237.960005px;}
.x2d{left:243.000000px;}
.x8{left:244.263088px;}
.x1b{left:245.340002px;}
.x4b{left:247.139992px;}
.x2a{left:256.319996px;}
.x73{left:258.659998px;}
.x2b{left:263.159998px;}
.x1d{left:264.419992px;}
.xe{left:266.400003px;}
.x5c{left:271.620002px;}
.x7d{left:282.780001px;}
.x5e{left:293.220017px;}
.x59{left:295.379998px;}
.xc{left:300.959988px;}
.x30{left:303.839985px;}
.x1f{left:311.220017px;}
.x68{left:333.899987px;}
.x33{left:341.279983px;}
.x77{left:345.420010px;}
.x53{left:346.680005px;}
.xf{left:350.100014px;}
.x74{left:357.839985px;}
.x6e{left:364.860008px;}
.x6a{left:366.300007px;}
.x26{left:374.220017px;}
.x7e{left:378.000000px;}
.x57{left:381.420010px;}
.x34{left:388.439999px;}
.x35{left:392.040012px;}
.x4f{left:396.720017px;}
.x5a{left:402.660015px;}
.x4e{left:406.980011px;}
.x3a{left:410.220017px;}
.x62{left:412.199993px;}
.x40{left:417.240006px;}
.x3d{left:420.660015px;}
.x3b{left:431.100014px;}
.x5f{left:435.959988px;}
.xb{left:444.240006px;}
.x1c{left:446.399987px;}
.x58{left:458.639992px;}
.x16{left:470.879998px;}
.x19{left:473.399987px;}
.x78{left:478.439999px;}
.x60{left:480.779983px;}
.x7f{left:491.040012px;}
.x6f{left:500.939999px;}
.x54{left:503.279983px;}
.x55{left:509.220017px;}
.x79{left:510.480011px;}
.x5d{left:529.560001px;}
.x21{left:530.639992px;}
.x22{left:531.720017px;}
.x23{left:534.060001px;}
.x5b{left:547.199993px;}
.x36{left:551.519989px;}
.xd{left:552.600014px;}
.x2{left:561.600014px;}
.x50{left:571.319996px;}
.x56{left:579.779983px;}
.x3{left:584.820030px;}
.x4a{left:598.320030px;}
.x80{left:606.600014px;}
.x7a{left:611.460023px;}
.x8b{left:612.539464px;}
.x5{left:625.860008px;}
.x1e{left:628.379998px;}
.x51{left:634.860008px;}
.x6b{left:637.019989px;}
.x4c{left:645.840019px;}
.x4d{left:651.419975px;}
.x63{left:662.039978px;}
.x61{left:663.299973px;}
.x3e{left:683.639992px;}
.x3c{left:694.080025px;}
.x3f{left:704.519989px;}
.x8c{left:714.241428px;}
.x9{left:723.960023px;}
.x65{left:729.899987px;}
.x81{left:731.879998px;}
.x7b{left:732.960023px;}
.x82{left:759.779983px;}
.x70{left:765.179970px;}
.x6c{left:766.620002px;}
.x44{left:795.960023px;}
.x4{left:803.340019px;}
.x8d{left:815.761027px;}
@media print{
.v9{vertical-align:-62.719972pt;}
.v2{vertical-align:-13.440064pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560060pt;}
.v6{vertical-align:6.399900pt;}
.v4{vertical-align:11.520020pt;}
.v8{vertical-align:13.440188pt;}
.v3{vertical-align:18.560060pt;}
.v1{vertical-align:21.119992pt;}
.va{vertical-align:31.360044pt;}
.v7{vertical-align:39.040008pt;}
.vb{vertical-align:63.360044pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.157310pt;}
.lse{letter-spacing:0.585706pt;}
.lsd{letter-spacing:0.831525pt;}
.ls4{letter-spacing:1.238266pt;}
.ls3{letter-spacing:64.281833pt;}
.ls1d{letter-spacing:120.482884pt;}
.ls1c{letter-spacing:121.122776pt;}
.ls1e{letter-spacing:121.123020pt;}
.ls1b{letter-spacing:121.762912pt;}
.ls1a{letter-spacing:137.762912pt;}
.ls7{letter-spacing:160.917854pt;}
.lsa{letter-spacing:170.518078pt;}
.ls6{letter-spacing:190.357922pt;}
.ls8{letter-spacing:206.357922pt;}
.ls9{letter-spacing:215.318002pt;}
.lsf{letter-spacing:418.722812pt;}
.lsc{letter-spacing:443.157970pt;}
.ls14{letter-spacing:452.642796pt;}
.ls10{letter-spacing:462.242832pt;}
.ls13{letter-spacing:483.362824pt;}
.ls11{letter-spacing:485.922824pt;}
.ls12{letter-spacing:492.322788pt;}
.ls15{letter-spacing:501.282748pt;}
.ls16{letter-spacing:504.482880pt;}
.ls5{letter-spacing:620.322788pt;}
.lsb{letter-spacing:654.882908pt;}
.ls0{letter-spacing:754.703446pt;}
.ls17{letter-spacing:755.359500pt;}
.ls19{letter-spacing:757.279600pt;}
.ls18{letter-spacing:1176.482840pt;}
.ws2{word-spacing:-160.006392pt;}
.wsd{word-spacing:-50.562000pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.wsa{word-spacing:-11.882070pt;}
.wsb{word-spacing:-10.077176pt;}
.wsf{word-spacing:-9.925156pt;}
.wse{word-spacing:-9.391070pt;}
.ws4{word-spacing:-8.830430pt;}
.ws5{word-spacing:-8.129595pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.wsc{word-spacing:-6.317044pt;}
.ws6{word-spacing:-5.326290pt;}
.ws9{word-spacing:0.000000pt;}
._1f{margin-left:-3.102900pt;}
._7{margin-left:-2.212984pt;}
._0{margin-left:-1.157803pt;}
._1{width:0.943395pt;}
._8{width:2.124279pt;}
._5{width:3.489241pt;}
._6{width:5.129599pt;}
._d{width:6.030124pt;}
._c{width:6.960290pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._1d{width:10.454115pt;}
._9{width:11.760490pt;}
._11{width:12.994434pt;}
._a{width:14.304596pt;}
._b{width:15.264636pt;}
._16{width:16.837146pt;}
._1b{width:18.479450pt;}
._18{width:19.870866pt;}
._15{width:21.387726pt;}
._1a{width:22.752900pt;}
._12{width:25.382124pt;}
._41{width:26.393364pt;}
._17{width:28.483689pt;}
._1c{width:29.427084pt;}
._5e{width:30.445936pt;}
._5c{width:31.500126pt;}
._13{width:32.612490pt;}
._14{width:33.977664pt;}
._1e{width:40.702410pt;}
._40{width:42.795856pt;}
._5d{width:54.101340pt;}
._19{width:111.878094pt;}
._81{width:115.703719pt;}
._e{width:120.883230pt;}
._87{width:122.027456pt;}
._80{width:144.520154pt;}
._82{width:165.077300pt;}
._f{width:180.016957pt;}
._49{width:193.896219pt;}
._84{width:209.743068pt;}
._65{width:239.815614pt;}
._83{width:243.996304pt;}
._30{width:245.839210pt;}
._4d{width:251.496075pt;}
._44{width:252.829914pt;}
._32{width:255.221330pt;}
._2f{width:258.421282pt;}
._45{width:264.213338pt;}
._6c{width:278.775313pt;}
._33{width:282.015687pt;}
._31{width:282.959082pt;}
._4a{width:287.289120pt;}
._2e{width:289.135830pt;}
._6a{width:297.335369pt;}
._6b{width:299.255293pt;}
._4c{width:303.339890pt;}
._68{width:309.495281pt;}
._6f{width:320.375289pt;}
._55{width:323.943843pt;}
._4f{width:324.971050pt;}
._64{width:331.732493pt;}
._51{width:333.632216pt;}
._61{width:335.590911pt;}
._66{width:338.935345pt;}
._53{width:339.844394pt;}
._75{width:341.376671pt;}
._69{width:342.775189pt;}
._57{width:348.337121pt;}
._6e{width:354.295329pt;}
._70{width:355.420112pt;}
._48{width:360.012838pt;}
._6d{width:369.655317pt;}
._62{width:376.532481pt;}
._67{width:383.735273pt;}
._43{width:389.579336pt;}
._63{width:393.812449pt;}
._71{width:396.440392pt;}
._27{width:398.717786pt;}
._4b{width:403.635988pt;}
._54{width:409.830628pt;}
._7f{width:415.414351pt;}
._73{width:417.452376pt;}
._72{width:418.738824pt;}
._7c{width:423.139034pt;}
._4e{width:425.688900pt;}
._7b{width:436.984628pt;}
._52{width:438.755016pt;}
._79{width:441.301796pt;}
._50{width:442.907956pt;}
._7a{width:444.190999pt;}
._74{width:452.288196pt;}
._56{width:456.595227pt;}
._7d{width:461.853055pt;}
._85{width:463.850267pt;}
._7e{width:473.324025pt;}
._42{width:475.428299pt;}
._47{width:483.684306pt;}
._10{width:485.419712pt;}
._46{width:492.252295pt;}
._76{width:497.160054pt;}
._77{width:498.499071pt;}
._78{width:499.874494pt;}
._5a{width:501.806118pt;}
._86{width:529.845050pt;}
._2c{width:541.830344pt;}
._88{width:554.802141pt;}
._28{width:567.726166pt;}
._2a{width:578.606046pt;}
._5f{width:608.832522pt;}
._3c{width:650.074020pt;}
._2d{width:693.155478pt;}
._21{width:708.541883pt;}
._23{width:741.075610pt;}
._22{width:751.793053pt;}
._3e{width:780.463908pt;}
._39{width:792.317858pt;}
._29{width:811.705806pt;}
._2b{width:822.446258pt;}
._3b{width:829.437850pt;}
._26{width:868.786013pt;}
._3a{width:924.846158pt;}
._38{width:941.196185pt;}
._3d{width:965.516137pt;}
._3f{width:1012.002780pt;}
._60{width:1057.015425pt;}
._4{width:1063.892496pt;}
._20{width:1116.623020pt;}
._34{width:1132.351330pt;}
._35{width:1147.354084pt;}
._24{width:1166.247707pt;}
._37{width:1252.002860pt;}
._36{width:1266.223948pt;}
._59{width:1279.193956pt;}
._25{width:1300.341206pt;}
._58{width:1496.759167pt;}
._5b{width:1521.583840pt;}
.fsd{font-size:24.320960pt;}
.fs13{font-size:26.881040pt;}
.fs12{font-size:29.441120pt;}
.fse{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs15{font-size:42.880000pt;}
.fs0{font-size:42.881600pt;}
.fsf{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs7{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs11{font-size:53.437544pt;}
.fs14{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs10{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.559998pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y1d1{bottom:5.759980pt;}
.y131{bottom:5.760010pt;}
.y105{bottom:11.359986pt;}
.y106{bottom:11.519959pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y17c{bottom:95.360108pt;}
.y1ac{bottom:96.160035pt;}
.y12d{bottom:101.280030pt;}
.y10{bottom:102.731415pt;}
.ybf{bottom:104.960083pt;}
.y1ab{bottom:108.800049pt;}
.y1c4{bottom:112.480042pt;}
.y95{bottom:112.960083pt;}
.ye{bottom:113.600037pt;}
.y116{bottom:114.080079pt;}
.yee{bottom:116.320069pt;}
.y12c{bottom:120.000061pt;}
.ybe{bottom:123.840088pt;}
.y1aa{bottom:128.000061pt;}
.y94{bottom:131.840088pt;}
.y115{bottom:132.800049pt;}
.yed{bottom:135.040039pt;}
.y12b{bottom:138.720032pt;}
.ybd{bottom:142.560059pt;}
.y93{bottom:150.560059pt;}
.y17b{bottom:151.360047pt;}
.y114{bottom:151.680054pt;}
.yec{bottom:153.920044pt;}
.ybc{bottom:161.280030pt;}
.y1c3{bottom:161.760071pt;}
.y1a9{bottom:163.520081pt;}
.y92{bottom:169.280030pt;}
.y17a{bottom:170.080079pt;}
.y113{bottom:170.400086pt;}
.yeb{bottom:172.640076pt;}
.y13d{bottom:177.760071pt;}
.ybb{bottom:180.160035pt;}
.y91{bottom:188.160035pt;}
.y179{bottom:188.800049pt;}
.y112{bottom:189.120057pt;}
.yea{bottom:191.360047pt;}
.yba{bottom:198.880066pt;}
.y1a8{bottom:199.360047pt;}
.y90{bottom:206.880066pt;}
.y178{bottom:207.360047pt;}
.ye9{bottom:210.240052pt;}
.y1a7{bottom:212.000061pt;}
.y1f1{bottom:212.480042pt;}
.yb9{bottom:217.600037pt;}
.y111{bottom:223.360047pt;}
.y1a6{bottom:224.640076pt;}
.y8f{bottom:225.760071pt;}
.y177{bottom:226.080079pt;}
.ye8{bottom:228.960083pt;}
.y13c{bottom:234.720032pt;}
.y1f0{bottom:236.160035pt;}
.yb8{bottom:239.200074pt;}
.y8e{bottom:244.480042pt;}
.y110{bottom:244.640076pt;}
.y176{bottom:244.800049pt;}
.ye7{bottom:247.840088pt;}
.y1a5{bottom:257.760071pt;}
.yb7{bottom:257.920044pt;}
.y1ef{bottom:259.360047pt;}
.y13b{bottom:262.400086pt;}
.y8d{bottom:263.200074pt;}
.y175{bottom:263.360047pt;}
.y10f{bottom:265.920044pt;}
.ye6{bottom:266.560059pt;}
.y1c1{bottom:276.320069pt;}
.yb6{bottom:276.800049pt;}
.y8c{bottom:282.080079pt;}
.y1ee{bottom:282.240052pt;}
.y13a{bottom:284.320069pt;}
.y10e{bottom:287.200074pt;}
.ye5{bottom:288.160035pt;}
.y1a4{bottom:288.800049pt;}
.yb5{bottom:295.520081pt;}
.y8b{bottom:300.800049pt;}
.y1a3{bottom:305.600037pt;}
.y10d{bottom:308.480042pt;}
.ye4{bottom:312.000061pt;}
.y12a{bottom:312.160035pt;}
.yb4{bottom:314.240052pt;}
.y174{bottom:319.360047pt;}
.y8a{bottom:319.680054pt;}
.y43{bottom:323.680054pt;}
.y10c{bottom:329.760071pt;}
.ye3{bottom:330.880066pt;}
.yb3{bottom:333.120057pt;}
.y1a2{bottom:334.240052pt;}
.y42{bottom:337.920044pt;}
.y173{bottom:338.080079pt;}
.y89{bottom:338.400086pt;}
.y129{bottom:339.040039pt;}
.y151{bottom:340.320069pt;}
.y1a1{bottom:346.080079pt;}
.ye2{bottom:349.600037pt;}
.y10b{bottom:351.040039pt;}
.y41{bottom:351.840088pt;}
.y1ed{bottom:354.880066pt;}
.y172{bottom:356.800049pt;}
.y88{bottom:357.120057pt;}
.y128{bottom:357.760071pt;}
.y1a0{bottom:357.920044pt;}
.y150{bottom:358.880066pt;}
.y40{bottom:364.480042pt;}
.ye1{bottom:368.320069pt;}
.yb2{bottom:370.720032pt;}
.y10a{bottom:372.160035pt;}
.y19f{bottom:374.240052pt;}
.y171{bottom:375.360047pt;}
.y87{bottom:376.000061pt;}
.y127{bottom:376.480042pt;}
.y14f{bottom:377.600037pt;}
.y3f{bottom:377.760071pt;}
.y204{bottom:378.080079pt;}
.ye0{bottom:387.200074pt;}
.yb1{bottom:389.440064pt;}
.y109{bottom:393.440064pt;}
.y3e{bottom:394.080079pt;}
.y86{bottom:394.720032pt;}
.y14e{bottom:396.320069pt;}
.ydf{bottom:405.920044pt;}
.yb0{bottom:408.160035pt;}
.y19e{bottom:409.280030pt;}
.y3d{bottom:410.080079pt;}
.y62{bottom:410.400086pt;}
.y170{bottom:412.800049pt;}
.y85{bottom:413.600037pt;}
.y126{bottom:414.240052pt;}
.y108{bottom:414.720032pt;}
.y14d{bottom:414.880066pt;}
.y201{bottom:420.800049pt;}
.y19d{bottom:421.280030pt;}
.y61{bottom:423.040039pt;}
.y3c{bottom:424.320069pt;}
.yde{bottom:424.800049pt;}
.yaf{bottom:427.040039pt;}
.y104{bottom:427.840088pt;}
.y16f{bottom:431.360047pt;}
.y84{bottom:432.320069pt;}
.y19c{bottom:433.120057pt;}
.y14c{bottom:433.600037pt;}
.y60{bottom:435.040039pt;}
.y200{bottom:436.640076pt;}
.y203{bottom:437.920044pt;}
.y3b{bottom:438.560059pt;}
.y107{bottom:439.200074pt;}
.y103{bottom:440.800049pt;}
.y125{bottom:442.240052pt;}
.ydd{bottom:443.520081pt;}
.y1ec{bottom:444.000061pt;}
.y19b{bottom:444.960083pt;}
.yae{bottom:445.760071pt;}
.y16e{bottom:450.080079pt;}
.y83{bottom:451.040039pt;}
.y14b{bottom:452.320069pt;}
.y3a{bottom:452.800049pt;}
.y5f{bottom:454.560059pt;}
.y19a{bottom:456.800049pt;}
.ydc{bottom:462.240052pt;}
.yad{bottom:464.480042pt;}
.y102{bottom:465.440064pt;}
.y39{bottom:467.040039pt;}
.y199{bottom:468.640076pt;}
.y16d{bottom:468.800049pt;}
.y124{bottom:469.600037pt;}
.y82{bottom:469.920044pt;}
.y5e{bottom:473.920044pt;}
.y15e{bottom:479.680054pt;}
.y38{bottom:481.120057pt;}
.y1eb{bottom:481.920044pt;}
.y198{bottom:484.960083pt;}
.yac{bottom:485.920044pt;}
.y16c{bottom:487.360047pt;}
.y81{bottom:488.640076pt;}
.y101{bottom:492.320069pt;}
.y123{bottom:492.640076pt;}
.y5d{bottom:493.440064pt;}
.y37{bottom:495.360047pt;}
.ydb{bottom:499.840088pt;}
.y197{bottom:500.160035pt;}
.y16b{bottom:506.080079pt;}
.y15d{bottom:507.360047pt;}
.y80{bottom:507.520081pt;}
.y36{bottom:509.600037pt;}
.y100{bottom:511.040039pt;}
.y196{bottom:512.000061pt;}
.y5c{bottom:513.120057pt;}
.yda{bottom:518.720032pt;}
.y122{bottom:519.360047pt;}
.y1ea{bottom:520.000061pt;}
.y35{bottom:523.840088pt;}
.y195{bottom:524.000061pt;}
.y16a{bottom:524.800049pt;}
.y7f{bottom:526.240052pt;}
.yff{bottom:529.760071pt;}
.y15c{bottom:532.000061pt;}
.y5b{bottom:532.800049pt;}
.y194{bottom:535.840088pt;}
.yd9{bottom:537.440064pt;}
.y34{bottom:538.080079pt;}
.y121{bottom:538.240052pt;}
.y202{bottom:541.920044pt;}
.y169{bottom:543.360047pt;}
.y7e{bottom:544.960083pt;}
.y193{bottom:547.680054pt;}
.yfe{bottom:548.480042pt;}
.y1db{bottom:550.560059pt;}
.y33{bottom:552.320069pt;}
.y5a{bottom:552.960083pt;}
.yd8{bottom:556.160035pt;}
.y120{bottom:556.960083pt;}
.y1e9{bottom:557.920044pt;}
.y192{bottom:559.520081pt;}
.y168{bottom:562.080079pt;}
.y7d{bottom:563.840088pt;}
.y1da{bottom:566.400086pt;}
.y32{bottom:566.560059pt;}
.y59{bottom:573.280030pt;}
.y14a{bottom:574.720032pt;}
.yd7{bottom:575.040039pt;}
.y11f{bottom:575.840088pt;}
.y31{bottom:580.800049pt;}
.yfd{bottom:581.440064pt;}
.y1d9{bottom:582.080079pt;}
.y7c{bottom:582.560059pt;}
.y58{bottom:592.640076pt;}
.y149{bottom:593.440064pt;}
.yd6{bottom:593.760071pt;}
.y1ff{bottom:594.080079pt;}
.y11e{bottom:594.560059pt;}
.y30{bottom:595.200074pt;}
.y1e8{bottom:595.360047pt;}
.y1d8{bottom:597.920044pt;}
.y167{bottom:600.000061pt;}
.y7b{bottom:601.440064pt;}
.yfc{bottom:604.480042pt;}
.y57{bottom:609.920044pt;}
.y2f{bottom:611.520050pt;}
.y148{bottom:612.000061pt;}
.yd5{bottom:612.640046pt;}
.y191{bottom:616.320069pt;}
.y1d5{bottom:618.400055pt;}
.y7a{bottom:620.160065pt;}
.y56{bottom:625.440064pt;}
.y1d7{bottom:626.400055pt;}
.yfb{bottom:627.680054pt;}
.y2e{bottom:627.840058pt;}
.y190{bottom:628.160065pt;}
.y147{bottom:630.720063pt;}
.yd4{bottom:631.360047pt;}
.y139{bottom:632.000061pt;}
.y1e7{bottom:632.960053pt;}
.y1d4{bottom:634.240052pt;}
.y79{bottom:639.040070pt;}
.y166{bottom:640.000061pt;}
.y1d6{bottom:642.240052pt;}
.y2d{bottom:644.160065pt;}
.y1fe{bottom:646.880066pt;}
.yfa{bottom:647.200074pt;}
.y146{bottom:649.440064pt;}
.yd3{bottom:650.080048pt;}
.y18f{bottom:651.840058pt;}
.y138{bottom:654.080048pt;}
.y55{bottom:654.720063pt;}
.y78{bottom:657.760071pt;}
.y2c{bottom:660.480072pt;}
.y165{bottom:660.800049pt;}
.y18e{bottom:663.680054pt;}
.y145{bottom:668.000061pt;}
.yd2{bottom:668.960053pt;}
.y1e6{bottom:670.400055pt;}
.y137{bottom:670.560059pt;}
.yf9{bottom:673.920044pt;}
.y18d{bottom:675.520050pt;}
.y2b{bottom:676.480072pt;}
.y1d3{bottom:678.400055pt;}
.y164{bottom:679.520050pt;}
.y54{bottom:685.440064pt;}
.y1cf{bottom:686.400055pt;}
.y144{bottom:686.720063pt;}
.yd1{bottom:687.680054pt;}
.y1fa{bottom:690.080048pt;}
.y2a{bottom:690.720063pt;}
.y18c{bottom:691.840058pt;}
.yab{bottom:692.640046pt;}
.yf8{bottom:692.800049pt;}
.y1d2{bottom:694.240052pt;}
.y77{bottom:695.360047pt;}
.y1d0{bottom:696.480072pt;}
.y53{bottom:697.280060pt;}
.y1c0{bottom:697.600068pt;}
.y163{bottom:698.080048pt;}
.y136{bottom:698.400055pt;}
.y1fd{bottom:699.040070pt;}
.y29{bottom:704.960053pt;}
.y1f9{bottom:705.920044pt;}
.yd0{bottom:706.560059pt;}
.y18b{bottom:707.200074pt;}
.y1e5{bottom:708.000061pt;}
.y15b{bottom:709.440064pt;}
.yf7{bottom:711.520050pt;}
.y52{bottom:712.480072pt;}
.y76{bottom:714.080048pt;}
.yaa{bottom:716.480072pt;}
.y162{bottom:716.800049pt;}
.y1bf{bottom:717.280060pt;}
.y18a{bottom:719.040070pt;}
.y28{bottom:719.200074pt;}
.y135{bottom:720.480072pt;}
.y51{bottom:720.960053pt;}
.y1f8{bottom:721.760071pt;}
.ycf{bottom:725.280060pt;}
.y15a{bottom:728.320069pt;}
.y1ce{bottom:729.760071pt;}
.y189{bottom:730.880066pt;}
.y50{bottom:732.800049pt;}
.y75{bottom:732.960053pt;}
.y27{bottom:733.440064pt;}
.ya9{bottom:735.360047pt;}
.y161{bottom:735.520050pt;}
.y134{bottom:736.960053pt;}
.y1be{bottom:737.120057pt;}
.y1cd{bottom:737.760071pt;}
.y188{bottom:742.720063pt;}
.yf6{bottom:743.680054pt;}
.yce{bottom:744.000061pt;}
.y4f{bottom:744.640046pt;}
.y1e4{bottom:745.600068pt;}
.y159{bottom:747.200074pt;}
.y26{bottom:747.520050pt;}
.y74{bottom:751.680054pt;}
.ya8{bottom:754.080048pt;}
.y187{bottom:754.560059pt;}
.y1fc{bottom:756.000061pt;}
.y1bd{bottom:756.480072pt;}
.y4e{bottom:759.840058pt;}
.y25{bottom:761.760071pt;}
.yf5{bottom:762.400055pt;}
.ycd{bottom:762.880066pt;}
.y133{bottom:764.800049pt;}
.y158{bottom:766.080048pt;}
.y186{bottom:766.400055pt;}
.y4d{bottom:768.320069pt;}
.y1bc{bottom:769.120057pt;}
.y73{bottom:770.400055pt;}
.ya7{bottom:772.960053pt;}
.y160{bottom:775.840058pt;}
.y24{bottom:776.000061pt;}
.y185{bottom:778.240052pt;}
.y4c{bottom:780.160065pt;}
.yf4{bottom:781.120057pt;}
.ycc{bottom:781.600068pt;}
.y1cc{bottom:782.080048pt;}
.y157{bottom:785.120057pt;}
.y132{bottom:786.880066pt;}
.y1e3{bottom:788.000061pt;}
.y1bb{bottom:788.320069pt;}
.y72{bottom:789.280060pt;}
.y1cb{bottom:789.920044pt;}
.y184{bottom:790.080048pt;}
.y23{bottom:790.240052pt;}
.ya6{bottom:791.680054pt;}
.y4b{bottom:792.000061pt;}
.ycb{bottom:800.320069pt;}
.y1ba{bottom:800.960053pt;}
.y183{bottom:801.920044pt;}
.y130{bottom:803.360047pt;}
.y15f{bottom:803.840058pt;}
.y156{bottom:804.000061pt;}
.y22{bottom:804.480072pt;}
.y4a{bottom:807.200074pt;}
.y71{bottom:808.000061pt;}
.ya5{bottom:810.400055pt;}
.y182{bottom:813.760071pt;}
.yf3{bottom:814.560059pt;}
.y1fb{bottom:815.520050pt;}
.y49{bottom:815.680054pt;}
.y21{bottom:818.720063pt;}
.y1b9{bottom:820.320069pt;}
.yca{bottom:821.920044pt;}
.y155{bottom:822.880066pt;}
.y181{bottom:825.600068pt;}
.y70{bottom:826.880066pt;}
.y48{bottom:827.680054pt;}
.ya4{bottom:829.280060pt;}
.y12f{bottom:831.200074pt;}
.y1e2{bottom:832.480072pt;}
.y20{bottom:832.960053pt;}
.y1ca{bottom:834.240052pt;}
.yf2{bottom:834.720063pt;}
.yf0{bottom:836.960053pt;}
.y180{bottom:837.440064pt;}
.y47{bottom:839.360047pt;}
.y154{bottom:841.920044pt;}
.y1c9{bottom:842.240052pt;}
.y6f{bottom:845.600068pt;}
.ya3{bottom:848.000061pt;}
.yc9{bottom:849.920044pt;}
.y46{bottom:850.400055pt;}
.y1f{bottom:850.720063pt;}
.y1b8{bottom:852.320069pt;}
.y12e{bottom:853.280060pt;}
.y17f{bottom:853.760071pt;}
.yf1{bottom:856.960053pt;}
.y44{bottom:860.160065pt;}
.y153{bottom:860.800049pt;}
.y6e{bottom:864.320069pt;}
.y1f4{bottom:866.554993pt;}
.ya2{bottom:866.880066pt;}
.yc8{bottom:868.800064pt;}
.y11d{bottom:870.880066pt;}
.y1f6{bottom:871.036162pt;}
.y1b7{bottom:871.520066pt;}
.y1e1{bottom:874.880066pt;}
.y152{bottom:879.680054pt;}
.y1e{bottom:881.120057pt;}
.y6d{bottom:883.200058pt;}
.y17e{bottom:883.520066pt;}
.y1f3{bottom:884.318836pt;}
.yef{bottom:884.960053pt;}
.ya1{bottom:885.600052pt;}
.y1c8{bottom:886.240052pt;}
.yc7{bottom:886.880066pt;}
.y1f7{bottom:888.799989pt;}
.y1b6{bottom:890.880066pt;}
.y1f5{bottom:891.201382pt;}
.y1c7{bottom:894.240052pt;}
.y11c{bottom:897.600052pt;}
.y6c{bottom:901.920060pt;}
.y17d{bottom:902.240052pt;}
.y1b5{bottom:903.520066pt;}
.ya0{bottom:904.480057pt;}
.y1d{bottom:905.120057pt;}
.y143{bottom:905.280060pt;}
.yc6{bottom:905.760056pt;}
.y1f2{bottom:913.920060pt;}
.y11b{bottom:916.320054pt;}
.y6b{bottom:920.800064pt;}
.y142{bottom:920.960053pt;}
.y1b4{bottom:922.880066pt;}
.y9f{bottom:923.200058pt;}
.yc5{bottom:924.480057pt;}
.y1c{bottom:929.280060pt;}
.y1e0{bottom:932.320054pt;}
.y1b3{bottom:935.520066pt;}
.y1de{bottom:939.040055pt;}
.y6a{bottom:939.520066pt;}
.y9e{bottom:941.920060pt;}
.yc4{bottom:943.200058pt;}
.y11a{bottom:950.400055pt;}
.y1b{bottom:952.800064pt;}
.y1b2{bottom:954.720063pt;}
.y1dd{bottom:957.120057pt;}
.y69{bottom:958.240052pt;}
.y9d{bottom:960.800064pt;}
.yc3{bottom:962.080063pt;}
.y1df{bottom:963.840058pt;}
.y1c6{bottom:965.280060pt;}
.y1b1{bottom:967.360062pt;}
.y119{bottom:972.640061pt;}
.y1a{bottom:976.800064pt;}
.y141{bottom:976.960053pt;}
.y68{bottom:977.120057pt;}
.y9c{bottom:979.520066pt;}
.y1b0{bottom:980.000061pt;}
.yc2{bottom:980.800064pt;}
.y118{bottom:993.760056pt;}
.y140{bottom:995.520058pt;}
.y67{bottom:995.840058pt;}
.y9b{bottom:998.400055pt;}
.y1af{bottom:999.360062pt;}
.yc1{bottom:999.680062pt;}
.y117{bottom:1005.120057pt;}
.yd{bottom:1006.080056pt;}
.y13f{bottom:1014.240059pt;}
.y9a{bottom:1017.120057pt;}
.yc0{bottom:1018.400055pt;}
.y1ae{bottom:1018.720063pt;}
.y1c5{bottom:1019.040062pt;}
.yc{bottom:1021.920060pt;}
.y66{bottom:1030.720063pt;}
.y13e{bottom:1032.960061pt;}
.y1c2{bottom:1035.680062pt;}
.y99{bottom:1035.840058pt;}
.y1dc{bottom:1037.760056pt;}
.y1ad{bottom:1037.920060pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.y98{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y65{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.y97{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y64{bottom:1080.960061pt;}
.y96{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y63{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h11{height:11.839996pt;}
.h27{height:15.679993pt;}
.h26{height:15.680023pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h18{height:22.344616pt;}
.h17{height:23.664294pt;}
.h14{height:24.260632pt;}
.h16{height:24.260636pt;}
.h15{height:24.260752pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.h22{height:30.239991pt;}
.h19{height:36.119161pt;}
.h23{height:36.139473pt;}
.h12{height:37.700696pt;}
.h13{height:39.232917pt;}
.h2{height:40.094296pt;}
.h34{height:40.736000pt;}
.h1e{height:40.737520pt;}
.h1a{height:40.823283pt;}
.h3{height:41.680915pt;}
.h2a{height:41.723797pt;}
.h29{height:42.374525pt;}
.h2b{height:43.054330pt;}
.h1b{height:43.144971pt;}
.h10{height:44.881870pt;}
.h24{height:47.137420pt;}
.h1d{height:48.033900pt;}
.hd{height:48.135024pt;}
.h28{height:50.465900pt;}
.h21{height:50.593960pt;}
.h1f{height:50.765667pt;}
.hf{height:51.687706pt;}
.he{height:55.055044pt;}
.h33{height:55.702458pt;}
.h20{height:59.553920pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1c{height:68.706660pt;}
.h2e{height:72.097504pt;}
.h31{height:72.097508pt;}
.h2c{height:72.097564pt;}
.h30{height:72.737520pt;}
.hc{height:81.037286pt;}
.h25{height:87.073908pt;}
.h2f{height:104.097504pt;}
.h32{height:104.097508pt;}
.h2d{height:104.097564pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wf{width:3.840011pt;}
.w4{width:4.959992pt;}
.wb{width:5.279968pt;}
.wa{width:5.279999pt;}
.wd{width:5.280030pt;}
.we{width:5.439988pt;}
.w11{width:5.440003pt;}
.w8{width:5.599991pt;}
.w6{width:6.080002pt;}
.w5{width:6.240006pt;}
.w2{width:7.200012pt;}
.w10{width:18.399994pt;}
.w9{width:18.559997pt;}
.wc{width:21.280014pt;}
.w7{width:21.440003pt;}
.w3{width:72.320007pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x37{left:55.520000pt;}
.x75{left:58.880001pt;}
.x6d{left:61.599998pt;}
.x7c{left:64.000000pt;}
.xa{left:70.720001pt;}
.x66{left:72.160004pt;}
.x10{left:73.279999pt;}
.x71{left:74.559998pt;}
.x64{left:76.800003pt;}
.x13{left:77.919998pt;}
.x1{left:79.680000pt;}
.x29{left:84.480003pt;}
.x42{left:87.040001pt;}
.x2e{left:88.000000pt;}
.x67{left:89.120003pt;}
.x7{left:91.519997pt;}
.x83{left:92.959999pt;}
.x15{left:95.040001pt;}
.x49{left:97.120003pt;}
.x2c{left:98.400002pt;}
.x45{left:107.040001pt;}
.x8a{left:108.000000pt;}
.x87{left:109.279999pt;}
.x47{left:110.559998pt;}
.x46{left:112.000000pt;}
.x86{left:113.279999pt;}
.x85{left:114.720001pt;}
.x48{left:116.800003pt;}
.x43{left:117.760002pt;}
.x88{left:119.519997pt;}
.x89{left:122.720001pt;}
.x20{left:124.480003pt;}
.x84{left:128.800003pt;}
.x8e{left:136.960007pt;}
.x41{left:138.399994pt;}
.x38{left:143.039993pt;}
.x14{left:144.160004pt;}
.x11{left:145.600006pt;}
.x12{left:162.880005pt;}
.x39{left:164.320007pt;}
.x17{left:170.080002pt;}
.x32{left:171.039993pt;}
.x24{left:176.160004pt;}
.x28{left:179.039993pt;}
.x18{left:189.600006pt;}
.x1a{left:194.080002pt;}
.x76{left:195.679993pt;}
.x25{left:196.800003pt;}
.x31{left:201.119995pt;}
.x27{left:202.399994pt;}
.x2f{left:206.880005pt;}
.x52{left:207.839996pt;}
.x69{left:208.960007pt;}
.x72{left:211.520004pt;}
.x2d{left:216.000000pt;}
.x8{left:217.122745pt;}
.x1b{left:218.080002pt;}
.x4b{left:219.679993pt;}
.x2a{left:227.839996pt;}
.x73{left:229.919998pt;}
.x2b{left:233.919998pt;}
.x1d{left:235.039993pt;}
.xe{left:236.800003pt;}
.x5c{left:241.440002pt;}
.x7d{left:251.360001pt;}
.x5e{left:260.640015pt;}
.x59{left:262.559998pt;}
.xc{left:267.519989pt;}
.x30{left:270.079987pt;}
.x1f{left:276.640015pt;}
.x68{left:296.799988pt;}
.x33{left:303.359985pt;}
.x77{left:307.040009pt;}
.x53{left:308.160004pt;}
.xf{left:311.200012pt;}
.x74{left:318.079987pt;}
.x6e{left:324.320007pt;}
.x6a{left:325.600006pt;}
.x26{left:332.640015pt;}
.x7e{left:336.000000pt;}
.x57{left:339.040009pt;}
.x34{left:345.279999pt;}
.x35{left:348.480011pt;}
.x4f{left:352.640015pt;}
.x5a{left:357.920013pt;}
.x4e{left:361.760010pt;}
.x3a{left:364.640015pt;}
.x62{left:366.399994pt;}
.x40{left:370.880005pt;}
.x3d{left:373.920013pt;}
.x3b{left:383.200012pt;}
.x5f{left:387.519989pt;}
.xb{left:394.880005pt;}
.x1c{left:396.799988pt;}
.x58{left:407.679993pt;}
.x16{left:418.559998pt;}
.x19{left:420.799988pt;}
.x78{left:425.279999pt;}
.x60{left:427.359985pt;}
.x7f{left:436.480011pt;}
.x6f{left:445.279999pt;}
.x54{left:447.359985pt;}
.x55{left:452.640015pt;}
.x79{left:453.760010pt;}
.x5d{left:470.720001pt;}
.x21{left:471.679993pt;}
.x22{left:472.640015pt;}
.x23{left:474.720001pt;}
.x5b{left:486.399994pt;}
.x36{left:490.239990pt;}
.xd{left:491.200012pt;}
.x2{left:499.200012pt;}
.x50{left:507.839996pt;}
.x56{left:515.359985pt;}
.x3{left:519.840027pt;}
.x4a{left:531.840027pt;}
.x80{left:539.200012pt;}
.x7a{left:543.520020pt;}
.x8b{left:544.479524pt;}
.x5{left:556.320007pt;}
.x1e{left:558.559998pt;}
.x51{left:564.320007pt;}
.x6b{left:566.239990pt;}
.x4c{left:574.080017pt;}
.x4d{left:579.039978pt;}
.x63{left:588.479980pt;}
.x61{left:589.599976pt;}
.x3e{left:607.679993pt;}
.x3c{left:616.960022pt;}
.x3f{left:626.239990pt;}
.x8c{left:634.881270pt;}
.x9{left:643.520020pt;}
.x65{left:648.799988pt;}
.x81{left:650.559998pt;}
.x7b{left:651.520020pt;}
.x82{left:675.359985pt;}
.x70{left:680.159973pt;}
.x6c{left:681.440002pt;}
.x44{left:707.520020pt;}
.x4{left:714.080017pt;}
.x8d{left:725.120913pt;}
}




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