
    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_8569c3d9b49ad2c3dd997436.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.198000;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_5b4659766b204652c4069bc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.198000;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_577009af78e00e0e89b87359.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956000;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_c10afca5676465df936a90f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066000;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_2f66b109d1f149b814607dcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112000;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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a0c5b2dd9cce00296d6e9db9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_1b4e6985e7fe066dbd4118f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_66efa59449f699732992301d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.119629;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_672803afe720229a57637120.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_36b1d65fa0aeea1ddd783540.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-3.672000px;}
.ls26{letter-spacing:-2.952000px;}
.ls4{letter-spacing:-2.760420px;}
.ls29{letter-spacing:-2.232000px;}
.ls25{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.642000px;}
.ls33{letter-spacing:-0.409200px;}
.ls36{letter-spacing:-0.302400px;}
.ls32{letter-spacing:-0.270600px;}
.lse{letter-spacing:-0.265200px;}
.ls20{letter-spacing:-0.253200px;}
.ls1d{letter-spacing:-0.204600px;}
.ls24{letter-spacing:-0.201600px;}
.lsa{letter-spacing:-0.184200px;}
.ls10{letter-spacing:-0.169800px;}
.ls6{letter-spacing:-0.152400px;}
.ls15{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.135600px;}
.ls35{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.083400px;}
.ls1{letter-spacing:-0.075000px;}
.lsf{letter-spacing:-0.051840px;}
.ls3{letter-spacing:-0.040320px;}
.ls11{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005754px;}
.ls22{letter-spacing:0.008640px;}
.ls2f{letter-spacing:0.025920px;}
.ls30{letter-spacing:0.069000px;}
.ls2a{letter-spacing:0.078000px;}
.ls7{letter-spacing:0.080400px;}
.ls19{letter-spacing:0.080640px;}
.ls2d{letter-spacing:0.097800px;}
.lsd{letter-spacing:0.135600px;}
.ls2b{letter-spacing:0.138000px;}
.ls8{letter-spacing:0.147000px;}
.ls14{letter-spacing:0.155400px;}
.ls34{letter-spacing:0.181200px;}
.ls1f{letter-spacing:0.190080px;}
.ls31{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.219000px;}
.ls2c{letter-spacing:0.227400px;}
.ls21{letter-spacing:0.279600px;}
.ls9{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.348600px;}
.ls17{letter-spacing:0.357000px;}
.ls1b{letter-spacing:0.381600px;}
.ls2e{letter-spacing:1.368000px;}
.ls27{letter-spacing:5.688000px;}
.ls1e{letter-spacing:8.580000px;}
.ls1c{letter-spacing:46.074720px;}
.ls23{letter-spacing:64.385280px;}
.ls1a{letter-spacing:65.514720px;}
.ls18{letter-spacing:79.723200px;}
.ls16{letter-spacing:93.403200px;}
.ls0{letter-spacing:847.596000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(111,177,77),0 0.015em rgb(111,177,77),0.015em 0 rgb(111,177,77),0 -0.015em  rgb(111,177,77);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(111,177,77);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-27.100080px;}
.ws14{word-spacing:-18.745920px;}
.wsd{word-spacing:-18.720000px;}
.wse{word-spacing:-17.711880px;}
.ws6{word-spacing:-17.680080px;}
.ws12{word-spacing:-17.634480px;}
.ws18{word-spacing:-17.582280px;}
.ws20{word-spacing:-17.536080px;}
.wsc{word-spacing:-17.510280px;}
.ws4{word-spacing:-17.501880px;}
.ws17{word-spacing:-17.492880px;}
.ws19{word-spacing:-17.452680px;}
.ws3{word-spacing:-17.435280px;}
.ws15{word-spacing:-17.432880px;}
.ws1b{word-spacing:-17.423880px;}
.ws1a{word-spacing:-17.380800px;}
.ws13{word-spacing:-17.363520px;}
.wsb{word-spacing:-17.360634px;}
.ws5{word-spacing:-17.354880px;}
.ws0{word-spacing:-17.314560px;}
.ws7{word-spacing:-17.271480px;}
.ws22{word-spacing:-17.248080px;}
.ws8{word-spacing:-17.219280px;}
.ws2{word-spacing:-17.202480px;}
.wsa{word-spacing:-17.185080px;}
.ws24{word-spacing:-17.170680px;}
.ws21{word-spacing:-17.153280px;}
.ws10{word-spacing:-17.150280px;}
.ws11{word-spacing:-17.101680px;}
.ws9{word-spacing:-17.089680px;}
.ws1c{word-spacing:-17.084280px;}
.ws23{word-spacing:-17.052480px;}
.ws1f{word-spacing:-16.945680px;}
.ws25{word-spacing:-16.712880px;}
.ws1d{word-spacing:-16.488000px;}
.ws1e{word-spacing:-16.272000px;}
.ws16{word-spacing:-12.638880px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-16.751040px;}
._11{margin-left:-14.731320px;}
._f{margin-left:-13.200480px;}
._c{margin-left:-9.891360px;}
._d{margin-left:-8.403720px;}
._10{margin-left:-6.777960px;}
._13{margin-left:-5.738880px;}
._e{margin-left:-4.543200px;}
._7{margin-left:-3.012480px;}
._0{margin-left:-1.640160px;}
._1{width:1.065840px;}
._8{width:2.215680px;}
._1c{width:3.676560px;}
._1b{width:5.150880px;}
._1d{width:6.324480px;}
._20{width:7.418880px;}
._18{width:8.544960px;}
._16{width:9.869760px;}
._36{width:10.976160px;}
._17{width:11.993280px;}
._37{width:13.248000px;}
._6{width:14.725440px;}
._5{width:15.795360px;}
._1f{width:19.342080px;}
._14{width:20.799360px;}
._15{width:21.843360px;}
._9{width:23.117760px;}
._1a{width:24.386160px;}
._35{width:25.966080px;}
._38{width:27.158400px;}
._39{width:28.385280px;}
._42{width:29.574720px;}
._2b{width:30.602880px;}
._3e{width:31.993920px;}
._3b{width:33.318720px;}
._19{width:34.511040px;}
._a{width:35.570880px;}
._3c{width:36.961920px;}
._41{width:38.535840px;}
._1e{width:40.622400px;}
._4{width:42.134400px;}
._3{width:43.464960px;}
._24{width:46.566720px;}
._2d{width:47.941920px;}
._3a{width:50.077440px;}
._44{width:51.468480px;}
._43{width:52.512480px;}
._21{width:53.572320px;}
._40{width:54.730080px;}
._45{width:57.496320px;}
._2{width:59.044320px;}
._25{width:65.842560px;}
._2e{width:73.857600px;}
._28{width:75.248640px;}
._3d{width:77.153760px;}
._31{width:86.029920px;}
._30{width:87.436800px;}
._34{width:96.302400px;}
._23{width:98.565120px;}
._22{width:99.741600px;}
._29{width:101.861280px;}
._2c{width:111.068640px;}
._3f{width:132.082560px;}
._26{width:147.715200px;}
._27{width:148.907520px;}
._2a{width:177.192000px;}
._2f{width:183.617280px;}
._33{width:187.668960px;}
._32{width:188.785920px;}
._47{width:190.903680px;}
._46{width:203.886720px;}
._48{width:212.829120px;}
._4b{width:284.519520px;}
._49{width:312.305760px;}
._b{width:315.699840px;}
._4a{width:321.860160px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(54,95,145);}
.fc3{color:transparent;}
.fc2{color:rgb(50,146,68);}
.fc1{color:rgb(111,177,77);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.960000px;}
.y2f{bottom:4.140000px;}
.y49{bottom:4.170000px;}
.yad{bottom:4.185000px;}
.y60{bottom:4.320000px;}
.y5e{bottom:4.500000px;}
.y56{bottom:4.680000px;}
.y53{bottom:4.860000px;}
.y24{bottom:5.040000px;}
.y51{bottom:5.580000px;}
.y23{bottom:5.760000px;}
.y20{bottom:6.120000px;}
.y1a{bottom:6.300000px;}
.y1f{bottom:6.840000px;}
.y19{bottom:7.020000px;}
.y5c{bottom:8.100000px;}
.y65{bottom:8.460000px;}
.y138{bottom:8.640000px;}
.y3e{bottom:8.820000px;}
.y3b{bottom:9.000000px;}
.y5a{bottom:14.220000px;}
.yb{bottom:14.760000px;}
.y160{bottom:17.640000px;}
.y29{bottom:23.040000px;}
.ya1{bottom:24.114000px;}
.y39{bottom:24.120000px;}
.y1e6{bottom:24.294000px;}
.y2e{bottom:24.300000px;}
.y14c{bottom:24.330000px;}
.yac{bottom:24.345000px;}
.y2d{bottom:25.020000px;}
.y165{bottom:27.354000px;}
.y1d{bottom:28.440000px;}
.y163{bottom:28.974000px;}
.y3d{bottom:28.980000px;}
.y1c{bottom:29.160000px;}
.y15f{bottom:39.420000px;}
.y2b{bottom:41.625000px;}
.y28{bottom:42.345000px;}
.ya0{bottom:44.274000px;}
.y13b{bottom:44.280000px;}
.y1e5{bottom:44.454000px;}
.ya3{bottom:44.460000px;}
.yab{bottom:44.505000px;}
.ya{bottom:46.800000px;}
.y164{bottom:48.954000px;}
.y162{bottom:49.134000px;}
.y6{bottom:56.160000px;}
.y15e{bottom:61.020000px;}
.y15b{bottom:64.260000px;}
.y9f{bottom:64.434000px;}
.ya2{bottom:64.440000px;}
.yaa{bottom:64.665000px;}
.y5{bottom:70.776000px;}
.y9{bottom:82.440000px;}
.y15d{bottom:82.800000px;}
.y15a{bottom:84.420000px;}
.y9e{bottom:84.594000px;}
.y149{bottom:84.600000px;}
.ya9{bottom:84.645000px;}
.y4{bottom:85.356000px;}
.y3{bottom:101.016000px;}
.y15c{bottom:104.400000px;}
.y9d{bottom:104.574000px;}
.y159{bottom:104.580000px;}
.y148{bottom:104.760000px;}
.ya8{bottom:104.805000px;}
.y22b{bottom:120.276000px;}
.y139{bottom:120.456000px;}
.y161{bottom:123.156000px;}
.y147{bottom:124.740000px;}
.ya7{bottom:124.965000px;}
.y18b{bottom:128.916000px;}
.y1a6{bottom:130.356000px;}
.y1e4{bottom:132.336000px;}
.yee{bottom:132.876000px;}
.y9c{bottom:133.236000px;}
.y114{bottom:135.036000px;}
.y22a{bottom:141.156000px;}
.y1c1{bottom:143.316000px;}
.y146{bottom:144.900000px;}
.y1e3{bottom:144.945000px;}
.ya6{bottom:145.125000px;}
.y18a{bottom:150.690000px;}
.yed{bottom:154.470000px;}
.y113{bottom:156.810000px;}
.y137{bottom:161.490000px;}
.y229{bottom:162.030000px;}
.y1c0{bottom:164.910000px;}
.y1e2{bottom:165.105000px;}
.y20b{bottom:168.690000px;}
.y1a5{bottom:168.870000px;}
.y1cf{bottom:171.030000px;}
.y189{bottom:172.470000px;}
.y112{bottom:178.590000px;}
.y136{bottom:182.370000px;}
.yc6{bottom:182.550000px;}
.y228{bottom:182.910000px;}
.y32{bottom:183.990000px;}
.y1e1{bottom:185.265000px;}
.y1bf{bottom:186.690000px;}
.y246{bottom:187.770000px;}
.yec{bottom:188.130000px;}
.y158{bottom:189.030000px;}
.y1a4{bottom:190.650000px;}
.y1ce{bottom:192.810000px;}
.y188{bottom:194.070000px;}
.y111{bottom:200.190000px;}
.y20a{bottom:202.350000px;}
.yc5{bottom:204.150000px;}
.y1be{bottom:208.290000px;}
.y1e0{bottom:213.510000px;}
.y1cd{bottom:214.590000px;}
.y187{bottom:216.750000px;}
.y31{bottom:217.650000px;}
.yeb{bottom:221.970000px;}
.y135{bottom:223.230000px;}
.y227{bottom:223.770000px;}
.y1a3{bottom:224.310000px;}
.yc4{bottom:225.930000px;}
.y1a7{bottom:228.240000px;}
.y245{bottom:228.810000px;}
.y1bd{bottom:230.070000px;}
.y30{bottom:234.390000px;}
.y1cc{bottom:236.190000px;}
.y110{bottom:243.570000px;}
.y1a2{bottom:246.090000px;}
.yc3{bottom:247.530000px;}
.y244{bottom:249.690000px;}
.y186{bottom:253.470000px;}
.y9b{bottom:254.550000px;}
.yea{bottom:255.630000px;}
.y2c{bottom:257.250000px;}
.y134{bottom:261.930000px;}
.y226{bottom:262.470000px;}
.y1bc{bottom:263.730000px;}
.y10f{bottom:265.350000px;}
.yc2{bottom:269.310000px;}
.y1cb{bottom:269.850000px;}
.y243{bottom:270.570000px;}
.y185{bottom:275.070000px;}
.ye9{bottom:277.410000px;}
.y1a1{bottom:279.750000px;}
.y225{bottom:284.070000px;}
.y1bb{bottom:285.510000px;}
.y10e{bottom:286.950000px;}
.yc1{bottom:291.090000px;}
.y1ca{bottom:291.630000px;}
.y133{bottom:295.590000px;}
.y1a0{bottom:296.490000px;}
.y27{bottom:298.290000px;}
.ye8{bottom:299.010000px;}
.y209{bottom:303.510000px;}
.y224{bottom:305.850000px;}
.y1ba{bottom:308.010000px;}
.y10d{bottom:308.730000px;}
.y184{bottom:308.910000px;}
.y157{bottom:310.170000px;}
.yc0{bottom:312.690000px;}
.y9a{bottom:313.230000px;}
.y1c9{bottom:313.410000px;}
.y132{bottom:317.190000px;}
.y223{bottom:327.450000px;}
.y10c{bottom:330.510000px;}
.y242{bottom:331.590000px;}
.ye7{bottom:332.670000px;}
.y99{bottom:335.010000px;}
.ybf{bottom:337.035000px;}
.y208{bottom:337.215000px;}
.y19f{bottom:337.575000px;}
.y131{bottom:339.015000px;}
.y1b9{bottom:344.775000px;}
.y156{bottom:348.915000px;}
.y222{bottom:349.275000px;}
.y10b{bottom:352.155000px;}
.y183{bottom:352.335000px;}
.y241{bottom:352.515000px;}
.ye6{bottom:354.495000px;}
.y26{bottom:356.655000px;}
.y1c8{bottom:356.835000px;}
.y130{bottom:360.795000px;}
.y207{bottom:371.055000px;}
.y240{bottom:373.395000px;}
.y10a{bottom:373.935000px;}
.ye5{bottom:376.275000px;}
.y98{bottom:378.435000px;}
.y1b8{bottom:378.615000px;}
.y25{bottom:379.515000px;}
.y12f{bottom:382.395000px;}
.y155{bottom:382.575000px;}
.y221{bottom:382.935000px;}
.ybe{bottom:384.015000px;}
.y1b7{bottom:395.355000px;}
.y109{bottom:395.535000px;}
.y182{bottom:395.715000px;}
.y97{bottom:400.035000px;}
.y1c7{bottom:400.215000px;}
.y22{bottom:402.375000px;}
.y154{bottom:404.175000px;}
.y206{bottom:404.715000px;}
.ybd{bottom:405.795000px;}
.ye4{bottom:409.935000px;}
.y23f{bottom:414.255000px;}
.y1df{bottom:415.515000px;}
.y12e{bottom:416.055000px;}
.y220{bottom:416.775000px;}
.y108{bottom:417.315000px;}
.y19e{bottom:419.475000px;}
.y1c6{bottom:421.815000px;}
.y21{bottom:424.155000px;}
.y153{bottom:425.955000px;}
.y181{bottom:429.375000px;}
.y96{bottom:433.875000px;}
.y1b2{bottom:436.395000px;}
.y12d{bottom:437.835000px;}
.y205{bottom:438.375000px;}
.y107{bottom:439.095000px;}
.ybc{bottom:439.455000px;}
.ye3{bottom:443.595000px;}
.y1e{bottom:447.015000px;}
.y152{bottom:447.735000px;}
.y21f{bottom:450.435000px;}
.y180{bottom:451.155000px;}
.y95{bottom:455.475000px;}
.y106{bottom:460.695000px;}
.ybb{bottom:461.235000px;}
.ye2{bottom:465.375000px;}
.y151{bottom:469.335000px;}
.y1b{bottom:469.875000px;}
.y12c{bottom:471.495000px;}
.y204{bottom:472.035000px;}
.y17f{bottom:472.935000px;}
.y1b6{bottom:477.255000px;}
.y19d{bottom:480.495000px;}
.y105{bottom:482.475000px;}
.yba{bottom:482.835000px;}
.y21e{bottom:484.095000px;}
.ye1{bottom:486.975000px;}
.y94{bottom:489.315000px;}
.y150{bottom:491.115000px;}
.y12b{bottom:493.275000px;}
.y17e{bottom:494.535000px;}
.y23e{bottom:494.715000px;}
.y21d{bottom:500.835000px;}
.y104{bottom:504.075000px;}
.y203{bottom:505.875000px;}
.ye0{bottom:508.755000px;}
.y93{bottom:510.915000px;}
.y14f{bottom:512.715000px;}
.y18{bottom:514.875000px;}
.y17d{bottom:516.315000px;}
.yb9{bottom:516.495000px;}
.y1de{bottom:516.855000px;}
.y1b5{bottom:518.295000px;}
.y19c{bottom:521.535000px;}
.y103{bottom:525.855000px;}
.ydf{bottom:530.355000px;}
.y92{bottom:532.695000px;}
.y14e{bottom:534.495000px;}
.y12a{bottom:536.655000px;}
.y17c{bottom:537.915000px;}
.y23d{bottom:538.095000px;}
.y202{bottom:539.535000px;}
.y4c{bottom:543.135000px;}
.y102{bottom:547.455000px;}
.yb8{bottom:550.335000px;}
.y91{bottom:554.295000px;}
.y17{bottom:555.555000px;}
.y129{bottom:558.435000px;}
.y1b4{bottom:559.335000px;}
.y4b{bottom:559.875000px;}
.yde{bottom:564.195000px;}
.y14d{bottom:568.155000px;}
.y101{bottom:569.235000px;}
.y17b{bottom:571.755000px;}
.yb7{bottom:571.935000px;}
.y201{bottom:573.195000px;}
.y79{bottom:574.995000px;}
.y128{bottom:580.035000px;}
.y4a{bottom:580.755000px;}
.y23c{bottom:581.475000px;}
.y21c{bottom:582.015000px;}
.y19b{bottom:582.735000px;}
.y14b{bottom:584.895000px;}
.ydd{bottom:585.795000px;}
.y90{bottom:588.135000px;}
.y16{bottom:589.215000px;}
.y17a{bottom:593.355000px;}
.yb6{bottom:593.715000px;}
.y1b3{bottom:600.195000px;}
.y48{bottom:601.635000px;}
.y100{bottom:602.895000px;}
.y23b{bottom:603.255000px;}
.y200{bottom:606.885000px;}
.ydc{bottom:607.605000px;}
.y78{bottom:608.685000px;}
.y8f{bottom:609.765000px;}
.y127{bottom:613.905000px;}
.y179{bottom:615.165000px;}
.yb5{bottom:615.345000px;}
.y1dd{bottom:618.225000px;}
.y19a{bottom:621.285000px;}
.y47{bottom:622.545000px;}
.y15{bottom:622.905000px;}
.y1ff{bottom:623.625000px;}
.y21b{bottom:623.805000px;}
.yff{bottom:624.705000px;}
.y14a{bottom:625.965000px;}
.ydb{bottom:629.205000px;}
.y8e{bottom:631.545000px;}
.y67{bottom:632.265000px;}
.y126{bottom:635.505000px;}
.y178{bottom:636.765000px;}
.y23a{bottom:636.945000px;}
.yb4{bottom:637.125000px;}
.y1b1{bottom:641.265000px;}
.y77{bottom:642.525000px;}
.y199{bottom:642.885000px;}
.y1fe{bottom:644.505000px;}
.y145{bottom:646.845000px;}
.y66{bottom:649.005000px;}
.yda{bottom:650.985000px;}
.y8d{bottom:653.145000px;}
.y14{bottom:656.745000px;}
.y125{bottom:657.285000px;}
.yfe{bottom:658.365000px;}
.y177{bottom:658.545000px;}
.yb3{bottom:658.905000px;}
.y46{bottom:661.065000px;}
.y1c5{bottom:663.045000px;}
.y1fd{bottom:665.385000px;}
.y239{bottom:670.605000px;}
.y64{bottom:671.145000px;}
.yd9{bottom:672.765000px;}
.y8c{bottom:674.925000px;}
.y76{bottom:676.185000px;}
.y198{bottom:676.725000px;}
.y124{bottom:678.885000px;}
.y1dc{bottom:679.245000px;}
.yfd{bottom:680.145000px;}
.y1b0{bottom:682.125000px;}
.y45{bottom:682.845000px;}
.y1c4{bottom:684.645000px;}
.y21a{bottom:685.005000px;}
.y1fc{bottom:686.265000px;}
.y13{bottom:690.405000px;}
.y176{bottom:692.205000px;}
.yb2{bottom:692.565000px;}
.y8b{bottom:696.525000px;}
.y197{bottom:698.325000px;}
.y63{bottom:700.845000px;}
.yfc{bottom:701.745000px;}
.y44{bottom:704.445000px;}
.y75{bottom:705.345000px;}
.y219{bottom:705.705000px;}
.yd8{bottom:706.425000px;}
.y1fb{bottom:707.145000px;}
.y123{bottom:712.725000px;}
.y175{bottom:713.985000px;}
.yb1{bottom:714.165000px;}
.y8a{bottom:718.305000px;}
.y196{bottom:720.105000px;}
.y62{bottom:722.805000px;}
.y1af{bottom:723.165000px;}
.yfb{bottom:723.525000px;}
.y12{bottom:724.065000px;}
.y43{bottom:726.225000px;}
.y218{bottom:726.585000px;}
.yd7{bottom:728.025000px;}
.y122{bottom:734.325000px;}
.y74{bottom:734.685000px;}
.y174{bottom:735.585000px;}
.yb0{bottom:735.945000px;}
.y1db{bottom:737.925000px;}
.y238{bottom:738.105000px;}
.y89{bottom:740.085000px;}
.y195{bottom:741.705000px;}
.y61{bottom:743.865000px;}
.y42{bottom:747.825000px;}
.y1fa{bottom:748.905000px;}
.yd6{bottom:749.805000px;}
.y121{bottom:756.105000px;}
.yfa{bottom:757.185000px;}
.y173{bottom:757.365000px;}
.y11{bottom:757.725000px;}
.y1da{bottom:759.525000px;}
.y88{bottom:761.685000px;}
.y194{bottom:763.485000px;}
.y73{bottom:763.845000px;}
.y1ae{bottom:764.205000px;}
.y5f{bottom:764.925000px;}
.y217{bottom:767.625000px;}
.y1ec{bottom:771.405000px;}
.yd5{bottom:771.585000px;}
.y237{bottom:771.765000px;}
.y120{bottom:777.705000px;}
.yf9{bottom:778.965000px;}
.y172{bottom:779.865000px;}
.y1d9{bottom:781.305000px;}
.y41{bottom:781.665000px;}
.y87{bottom:783.465000px;}
.y5d{bottom:787.065000px;}
.y236{bottom:788.505000px;}
.y1f9{bottom:789.945000px;}
.yaf{bottom:791.385000px;}
.y10{bottom:791.565000px;}
.y72{bottom:793.005000px;}
.yd4{bottom:793.185000px;}
.y193{bottom:797.145000px;}
.y11f{bottom:799.485000px;}
.y1d8{bottom:803.085000px;}
.y86{bottom:805.065000px;}
.y1c3{bottom:805.245000px;}
.yae{bottom:808.125000px;}
.y144{bottom:808.485000px;}
.y5b{bottom:809.745000px;}
.yf8{bottom:812.625000px;}
.y40{bottom:815.325000px;}
.y171{bottom:816.765000px;}
.y192{bottom:818.925000px;}
.y11e{bottom:821.085000px;}
.y71{bottom:822.165000px;}
.y1d7{bottom:824.685000px;}
.yf{bottom:825.225000px;}
.y216{bottom:826.305000px;}
.yd3{bottom:826.845000px;}
.y1f8{bottom:828.465000px;}
.y85{bottom:829.365000px;}
.y3f{bottom:832.065000px;}
.yf7{bottom:834.405000px;}
.y59{bottom:838.365000px;}
.y1eb{bottom:838.905000px;}
.y191{bottom:840.525000px;}
.y11d{bottom:842.865000px;}
.y1ad{bottom:846.105000px;}
.y215{bottom:847.905000px;}
.yd2{bottom:848.625000px;}
.y235{bottom:849.705000px;}
.y1f7{bottom:850.065000px;}
.y70{bottom:851.505000px;}
.yf6{bottom:856.005000px;}
.y1d6{bottom:858.345000px;}
.ye{bottom:858.885000px;}
.y170{bottom:860.145000px;}
.y11c{bottom:864.645000px;}
.ya5{bottom:869.145000px;}
.y214{bottom:869.685000px;}
.y1ef{bottom:870.225000px;}
.yd1{bottom:870.405000px;}
.y234{bottom:870.630000px;}
.y1f6{bottom:871.890000px;}
.y1ea{bottom:872.610000px;}
.y190{bottom:874.410000px;}
.y84{bottom:876.390000px;}
.yf5{bottom:877.830000px;}
.y3c{bottom:878.010000px;}
.y58{bottom:879.450000px;}
.y6f{bottom:880.710000px;}
.yd{bottom:885.390000px;}
.y11b{bottom:886.290000px;}
.y1ac{bottom:887.190000px;}
.y143{bottom:887.370000px;}
.y1e9{bottom:889.350000px;}
.y233{bottom:891.330000px;}
.y213{bottom:891.510000px;}
.yd0{bottom:892.050000px;}
.y1d5{bottom:892.230000px;}
.y1f5{bottom:893.490000px;}
.y16f{bottom:893.850000px;}
.y18f{bottom:896.010000px;}
.yf4{bottom:899.430000px;}
.y57{bottom:901.590000px;}
.y1ee{bottom:903.930000px;}
.y11a{bottom:908.070000px;}
.y6e{bottom:909.870000px;}
.y83{bottom:910.230000px;}
.y232{bottom:912.210000px;}
.y212{bottom:913.110000px;}
.ycf{bottom:913.830000px;}
.y1f4{bottom:915.270000px;}
.y16e{bottom:915.630000px;}
.y18e{bottom:917.790000px;}
.y142{bottom:921.030000px;}
.yf3{bottom:922.110000px;}
.y3a{bottom:923.730000px;}
.y119{bottom:929.670000px;}
.y82{bottom:931.830000px;}
.y231{bottom:933.090000px;}
.y1ed{bottom:933.450000px;}
.yce{bottom:935.430000px;}
.y1d4{bottom:935.610000px;}
.y1c2{bottom:936.330000px;}
.yc{bottom:936.690000px;}
.y1f3{bottom:937.050000px;}
.y16d{bottom:937.230000px;}
.y6d{bottom:939.030000px;}
.y18d{bottom:939.390000px;}
.y141{bottom:942.810000px;}
.y55{bottom:945.870000px;}
.y211{bottom:946.770000px;}
.y1ab{bottom:948.930000px;}
.y118{bottom:951.450000px;}
.y81{bottom:953.610000px;}
.y230{bottom:953.970000px;}
.ycd{bottom:957.210000px;}
.yf2{bottom:958.830000px;}
.y16c{bottom:959.010000px;}
.y1d3{bottom:959.910000px;}
.y18c{bottom:961.170000px;}
.y140{bottom:964.410000px;}
.y54{bottom:966.750000px;}
.y6c{bottom:968.370000px;}
.y210{bottom:968.550000px;}
.y38{bottom:969.630000px;}
.y1f2{bottom:970.710000px;}
.y117{bottom:973.230000px;}
.y80{bottom:975.210000px;}
.y8{bottom:978.090000px;}
.ycc{bottom:979.710000px;}
.y16b{bottom:980.610000px;}
.y13f{bottom:986.190000px;}
.y52{bottom:988.890000px;}
.yf1{bottom:992.490000px;}
.y116{bottom:994.830000px;}
.y22f{bottom:995.010000px;}
.y7f{bottom:996.990000px;}
.y6b{bottom:997.530000px;}
.y20f{bottom:1002.210000px;}
.y16a{bottom:1003.290000px;}
.y1f1{bottom:1004.370000px;}
.y1d2{bottom:1006.890000px;}
.y13e{bottom:1007.790000px;}
.y1aa{bottom:1010.130000px;}
.y1e8{bottom:1010.850000px;}
.y50{bottom:1011.030000px;}
.ycb{bottom:1016.610000px;}
.y7e{bottom:1018.770000px;}
.yf0{bottom:1026.330000px;}
.y6a{bottom:1026.690000px;}
.y1d1{bottom:1028.490000px;}
.y37{bottom:1030.830000px;}
.ya4{bottom:1031.010000px;}
.y1e7{bottom:1031.730000px;}
.y22e{bottom:1033.530000px;}
.y4f{bottom:1034.790000px;}
.y20e{bottom:1036.050000px;}
.y1f0{bottom:1038.030000px;}
.yca{bottom:1038.210000px;}
.y169{bottom:1040.010000px;}
.y7d{bottom:1040.370000px;}
.y13d{bottom:1041.630000px;}
.y1d0{bottom:1050.270000px;}
.y69{bottom:1055.850000px;}
.y168{bottom:1056.750000px;}
.yc9{bottom:1059.990000px;}
.y7c{bottom:1062.150000px;}
.y20d{bottom:1069.710000px;}
.y1a9{bottom:1071.150000px;}
.y36{bottom:1071.870000px;}
.y115{bottom:1072.050000px;}
.y13c{bottom:1075.290000px;}
.y167{bottom:1077.630000px;}
.y68{bottom:1080.690000px;}
.yef{bottom:1081.770000px;}
.y7b{bottom:1083.750000px;}
.y13a{bottom:1092.030000px;}
.y35{bottom:1093.470000px;}
.yc8{bottom:1093.650000px;}
.y4e{bottom:1096.170000px;}
.y20c{bottom:1103.370000px;}
.y7a{bottom:1105.530000px;}
.y22d{bottom:1111.470000px;}
.y1a8{bottom:1112.190000px;}
.y7{bottom:1112.370000px;}
.yc7{bottom:1115.430000px;}
.y166{bottom:1118.670000px;}
.y34{bottom:1129.830000px;}
.y22c{bottom:1132.170000px;}
.y4d{bottom:1137.030000px;}
.y2{bottom:1157.220000px;}
.y1{bottom:1173.420000px;}
.y33{bottom:1202.880000px;}
.h2c{height:19.980000px;}
.h12{height:20.160000px;}
.h13{height:20.196000px;}
.h1b{height:20.340000px;}
.h9{height:21.060000px;}
.h1c{height:21.240000px;}
.h16{height:21.420000px;}
.h19{height:21.960000px;}
.h6{height:22.140000px;}
.h14{height:23.040000px;}
.h18{height:27.900000px;}
.h1d{height:28.800000px;}
.h2b{height:33.696000px;}
.he{height:40.140000px;}
.h2f{height:40.176000px;}
.hb{height:40.320000px;}
.h17{height:40.356000px;}
.h8{height:44.280000px;}
.h10{height:45.000000px;}
.h11{height:45.036000px;}
.hf{height:45.180000px;}
.h3{height:48.143520px;}
.hc{height:50.062500px;}
.ha{height:57.636000px;}
.h7{height:57.720960px;}
.h23{height:60.300000px;}
.h27{height:60.336000px;}
.h25{height:61.669440px;}
.h2a{height:64.980000px;}
.h2{height:66.107520px;}
.h26{height:68.084282px;}
.h15{height:70.664062px;}
.h2d{height:71.613281px;}
.h1a{height:71.856000px;}
.h24{height:72.394560px;}
.h34{height:80.460000px;}
.h21{height:80.496000px;}
.hd{height:89.152560px;}
.h1e{height:95.245664px;}
.h1f{height:99.687656px;}
.h32{height:100.440000px;}
.h31{height:100.476000px;}
.h29{height:120.420000px;}
.h20{height:120.600000px;}
.h35{height:120.636000px;}
.h36{height:120.780000px;}
.h5{height:123.120000px;}
.h4{height:126.155520px;}
.h28{height:160.920000px;}
.h22{height:160.950000px;}
.h33{height:201.270000px;}
.h30{height:204.150000px;}
.h2e{height:244.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:23.040000px;}
.w24{width:30.060000px;}
.w26{width:31.140000px;}
.w23{width:35.460000px;}
.wd{width:45.180000px;}
.w6{width:52.200000px;}
.w2a{width:57.780000px;}
.w2b{width:62.640000px;}
.w29{width:62.856000px;}
.w27{width:63.540000px;}
.wf{width:82.260000px;}
.w7{width:86.076000px;}
.w16{width:86.760000px;}
.w17{width:91.656000px;}
.w25{width:104.796000px;}
.w18{width:110.880000px;}
.w1b{width:117.576000px;}
.w8{width:136.800000px;}
.w20{width:137.016000px;}
.w9{width:137.556000px;}
.w1f{width:141.660000px;}
.w1a{width:147.060000px;}
.w1e{width:152.310000px;}
.w2c{width:152.850000px;}
.w15{width:155.010000px;}
.w12{width:155.730000px;}
.w14{width:156.270000px;}
.w1d{width:166.170000px;}
.w13{width:167.040000px;}
.w4{width:188.130000px;}
.w1c{width:202.890000px;}
.w21{width:203.070000px;}
.w10{width:211.530000px;}
.w11{width:211.710000px;}
.w2e{width:216.210000px;}
.wa{width:221.610000px;}
.w28{width:221.790000px;}
.wb{width:317.730000px;}
.wc{width:317.775000px;}
.w19{width:344.775000px;}
.w2d{width:419.475000px;}
.w5{width:479.955000px;}
.we{width:566.925000px;}
.w3{width:636.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.280000px;}
.x17{left:12.240000px;}
.x1a{left:29.160000px;}
.x19{left:30.420000px;}
.x1b{left:33.840000px;}
.x18{left:36.540000px;}
.x27{left:61.590000px;}
.x14{left:98.676000px;}
.x8{left:102.594000px;}
.x2{left:127.655987px;}
.x15{left:144.576000px;}
.x4{left:145.835987px;}
.xe{left:149.796000px;}
.x2f{left:152.130000px;}
.x1e{left:154.649987px;}
.x5{left:175.529987px;}
.xa{left:179.129987px;}
.x1f{left:181.649987px;}
.x30{left:188.310000px;}
.x37{left:191.730000px;}
.x9{left:193.539000px;}
.x7{left:198.039000px;}
.xf{left:202.710000px;}
.x24{left:215.850000px;}
.x31{left:219.090000px;}
.x1{left:221.249987px;}
.x29{left:276.330000px;}
.x2c{left:281.415000px;}
.x21{left:284.835000px;}
.x10{left:289.515000px;}
.x25{left:308.415000px;}
.xc{left:317.235000px;}
.x32{left:324.615000px;}
.x1c{left:340.815000px;}
.x38{left:345.315000px;}
.x33{left:356.475000px;}
.x2a{left:394.815000px;}
.x26{left:420.015000px;}
.x2d{left:423.975000px;}
.x11{left:427.035000px;}
.x6{left:446.474987px;}
.x22{left:452.595000px;}
.x1d{left:553.065000px;}
.x2e{left:561.705000px;}
.x12{left:565.305000px;}
.x2b{left:598.605000px;}
.x23{left:609.585000px;}
.x34{left:643.245000px;}
.xd{left:678.000000px;}
.x35{left:707.010000px;}
.x16{left:712.230000px;}
.x39{left:745.169987px;}
.x20{left:748.589987px;}
.x28{left:750.209987px;}
.x13{left:754.529987px;}
.x3{left:756.149987px;}
.x36{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-3.264000pt;}
.ls26{letter-spacing:-2.624000pt;}
.ls4{letter-spacing:-2.453707pt;}
.ls29{letter-spacing:-1.984000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.570667pt;}
.ls33{letter-spacing:-0.363733pt;}
.ls36{letter-spacing:-0.268800pt;}
.ls32{letter-spacing:-0.240533pt;}
.lse{letter-spacing:-0.235733pt;}
.ls20{letter-spacing:-0.225067pt;}
.ls1d{letter-spacing:-0.181867pt;}
.ls24{letter-spacing:-0.179200pt;}
.lsa{letter-spacing:-0.163733pt;}
.ls10{letter-spacing:-0.150933pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.120533pt;}
.ls35{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.074133pt;}
.ls1{letter-spacing:-0.066667pt;}
.lsf{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:-0.035840pt;}
.ls11{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005115pt;}
.ls22{letter-spacing:0.007680pt;}
.ls2f{letter-spacing:0.023040pt;}
.ls30{letter-spacing:0.061333pt;}
.ls2a{letter-spacing:0.069333pt;}
.ls7{letter-spacing:0.071467pt;}
.ls19{letter-spacing:0.071680pt;}
.ls2d{letter-spacing:0.086933pt;}
.lsd{letter-spacing:0.120533pt;}
.ls2b{letter-spacing:0.122667pt;}
.ls8{letter-spacing:0.130667pt;}
.ls14{letter-spacing:0.138133pt;}
.ls34{letter-spacing:0.161067pt;}
.ls1f{letter-spacing:0.168960pt;}
.ls31{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.194667pt;}
.ls2c{letter-spacing:0.202133pt;}
.ls21{letter-spacing:0.248533pt;}
.ls9{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.309867pt;}
.ls17{letter-spacing:0.317333pt;}
.ls1b{letter-spacing:0.339200pt;}
.ls2e{letter-spacing:1.216000pt;}
.ls27{letter-spacing:5.056000pt;}
.ls1e{letter-spacing:7.626667pt;}
.ls1c{letter-spacing:40.955307pt;}
.ls23{letter-spacing:57.231360pt;}
.ls1a{letter-spacing:58.235307pt;}
.ls18{letter-spacing:70.865067pt;}
.ls16{letter-spacing:83.025067pt;}
.ls0{letter-spacing:753.418667pt;}
.wsf{word-spacing:-24.088960pt;}
.ws14{word-spacing:-16.663040pt;}
.wsd{word-spacing:-16.640000pt;}
.wse{word-spacing:-15.743893pt;}
.ws6{word-spacing:-15.715627pt;}
.ws12{word-spacing:-15.675093pt;}
.ws18{word-spacing:-15.628693pt;}
.ws20{word-spacing:-15.587627pt;}
.wsc{word-spacing:-15.564693pt;}
.ws4{word-spacing:-15.557227pt;}
.ws17{word-spacing:-15.549227pt;}
.ws19{word-spacing:-15.513493pt;}
.ws3{word-spacing:-15.498027pt;}
.ws15{word-spacing:-15.495893pt;}
.ws1b{word-spacing:-15.487893pt;}
.ws1a{word-spacing:-15.449600pt;}
.ws13{word-spacing:-15.434240pt;}
.wsb{word-spacing:-15.431675pt;}
.ws5{word-spacing:-15.426560pt;}
.ws0{word-spacing:-15.390720pt;}
.ws7{word-spacing:-15.352427pt;}
.ws22{word-spacing:-15.331627pt;}
.ws8{word-spacing:-15.306027pt;}
.ws2{word-spacing:-15.291093pt;}
.wsa{word-spacing:-15.275627pt;}
.ws24{word-spacing:-15.262827pt;}
.ws21{word-spacing:-15.247360pt;}
.ws10{word-spacing:-15.244693pt;}
.ws11{word-spacing:-15.201493pt;}
.ws9{word-spacing:-15.190827pt;}
.ws1c{word-spacing:-15.186027pt;}
.ws23{word-spacing:-15.157760pt;}
.ws1f{word-spacing:-15.062827pt;}
.ws25{word-spacing:-14.855893pt;}
.ws1d{word-spacing:-14.656000pt;}
.ws1e{word-spacing:-14.464000pt;}
.ws16{word-spacing:-11.234560pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-14.889813pt;}
._11{margin-left:-13.094507pt;}
._f{margin-left:-11.733760pt;}
._c{margin-left:-8.792320pt;}
._d{margin-left:-7.469973pt;}
._10{margin-left:-6.024853pt;}
._13{margin-left:-5.101227pt;}
._e{margin-left:-4.038400pt;}
._7{margin-left:-2.677760pt;}
._0{margin-left:-1.457920pt;}
._1{width:0.947413pt;}
._8{width:1.969493pt;}
._1c{width:3.268053pt;}
._1b{width:4.578560pt;}
._1d{width:5.621760pt;}
._20{width:6.594560pt;}
._18{width:7.595520pt;}
._16{width:8.773120pt;}
._36{width:9.756587pt;}
._17{width:10.660693pt;}
._37{width:11.776000pt;}
._6{width:13.089280pt;}
._5{width:14.040320pt;}
._1f{width:17.192960pt;}
._14{width:18.488320pt;}
._15{width:19.416320pt;}
._9{width:20.549120pt;}
._1a{width:21.676587pt;}
._35{width:23.080960pt;}
._38{width:24.140800pt;}
._39{width:25.231360pt;}
._42{width:26.288640pt;}
._2b{width:27.202560pt;}
._3e{width:28.439040pt;}
._3b{width:29.616640pt;}
._19{width:30.676480pt;}
._a{width:31.618560pt;}
._3c{width:32.855040pt;}
._41{width:34.254080pt;}
._1e{width:36.108800pt;}
._4{width:37.452800pt;}
._3{width:38.635520pt;}
._24{width:41.392640pt;}
._2d{width:42.615040pt;}
._3a{width:44.513280pt;}
._44{width:45.749760pt;}
._43{width:46.677760pt;}
._21{width:47.619840pt;}
._40{width:48.648960pt;}
._45{width:51.107840pt;}
._2{width:52.483840pt;}
._25{width:58.526720pt;}
._2e{width:65.651200pt;}
._28{width:66.887680pt;}
._3d{width:68.581120pt;}
._31{width:76.471040pt;}
._30{width:77.721600pt;}
._34{width:85.602133pt;}
._23{width:87.613440pt;}
._22{width:88.659200pt;}
._29{width:90.543360pt;}
._2c{width:98.727680pt;}
._3f{width:117.406720pt;}
._26{width:131.302400pt;}
._27{width:132.362240pt;}
._2a{width:157.504000pt;}
._2f{width:163.215360pt;}
._33{width:166.816853pt;}
._32{width:167.809707pt;}
._47{width:169.692160pt;}
._46{width:181.232640pt;}
._48{width:189.181440pt;}
._4b{width:252.906240pt;}
._49{width:277.605120pt;}
._b{width:280.622080pt;}
._4a{width:286.097920pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:3.520000pt;}
.y2f{bottom:3.680000pt;}
.y49{bottom:3.706667pt;}
.yad{bottom:3.720000pt;}
.y60{bottom:3.840000pt;}
.y5e{bottom:4.000000pt;}
.y56{bottom:4.160000pt;}
.y53{bottom:4.320000pt;}
.y24{bottom:4.480000pt;}
.y51{bottom:4.960000pt;}
.y23{bottom:5.120000pt;}
.y20{bottom:5.440000pt;}
.y1a{bottom:5.600000pt;}
.y1f{bottom:6.080000pt;}
.y19{bottom:6.240000pt;}
.y5c{bottom:7.200000pt;}
.y65{bottom:7.520000pt;}
.y138{bottom:7.680000pt;}
.y3e{bottom:7.840000pt;}
.y3b{bottom:8.000000pt;}
.y5a{bottom:12.640000pt;}
.yb{bottom:13.120000pt;}
.y160{bottom:15.680000pt;}
.y29{bottom:20.480000pt;}
.ya1{bottom:21.434667pt;}
.y39{bottom:21.440000pt;}
.y1e6{bottom:21.594667pt;}
.y2e{bottom:21.600000pt;}
.y14c{bottom:21.626667pt;}
.yac{bottom:21.640000pt;}
.y2d{bottom:22.240000pt;}
.y165{bottom:24.314667pt;}
.y1d{bottom:25.280000pt;}
.y163{bottom:25.754667pt;}
.y3d{bottom:25.760000pt;}
.y1c{bottom:25.920000pt;}
.y15f{bottom:35.040000pt;}
.y2b{bottom:37.000000pt;}
.y28{bottom:37.640000pt;}
.ya0{bottom:39.354667pt;}
.y13b{bottom:39.360000pt;}
.y1e5{bottom:39.514667pt;}
.ya3{bottom:39.520000pt;}
.yab{bottom:39.560000pt;}
.ya{bottom:41.600000pt;}
.y164{bottom:43.514667pt;}
.y162{bottom:43.674667pt;}
.y6{bottom:49.920000pt;}
.y15e{bottom:54.240000pt;}
.y15b{bottom:57.120000pt;}
.y9f{bottom:57.274667pt;}
.ya2{bottom:57.280000pt;}
.yaa{bottom:57.480000pt;}
.y5{bottom:62.912000pt;}
.y9{bottom:73.280000pt;}
.y15d{bottom:73.600000pt;}
.y15a{bottom:75.040000pt;}
.y9e{bottom:75.194667pt;}
.y149{bottom:75.200000pt;}
.ya9{bottom:75.240000pt;}
.y4{bottom:75.872000pt;}
.y3{bottom:89.792000pt;}
.y15c{bottom:92.800000pt;}
.y9d{bottom:92.954667pt;}
.y159{bottom:92.960000pt;}
.y148{bottom:93.120000pt;}
.ya8{bottom:93.160000pt;}
.y22b{bottom:106.912000pt;}
.y139{bottom:107.072000pt;}
.y161{bottom:109.472000pt;}
.y147{bottom:110.880000pt;}
.ya7{bottom:111.080000pt;}
.y18b{bottom:114.592000pt;}
.y1a6{bottom:115.872000pt;}
.y1e4{bottom:117.632000pt;}
.yee{bottom:118.112000pt;}
.y9c{bottom:118.432000pt;}
.y114{bottom:120.032000pt;}
.y22a{bottom:125.472000pt;}
.y1c1{bottom:127.392000pt;}
.y146{bottom:128.800000pt;}
.y1e3{bottom:128.840000pt;}
.ya6{bottom:129.000000pt;}
.y18a{bottom:133.946667pt;}
.yed{bottom:137.306667pt;}
.y113{bottom:139.386667pt;}
.y137{bottom:143.546667pt;}
.y229{bottom:144.026667pt;}
.y1c0{bottom:146.586667pt;}
.y1e2{bottom:146.760000pt;}
.y20b{bottom:149.946667pt;}
.y1a5{bottom:150.106667pt;}
.y1cf{bottom:152.026667pt;}
.y189{bottom:153.306667pt;}
.y112{bottom:158.746667pt;}
.y136{bottom:162.106667pt;}
.yc6{bottom:162.266667pt;}
.y228{bottom:162.586667pt;}
.y32{bottom:163.546667pt;}
.y1e1{bottom:164.680000pt;}
.y1bf{bottom:165.946667pt;}
.y246{bottom:166.906667pt;}
.yec{bottom:167.226667pt;}
.y158{bottom:168.026667pt;}
.y1a4{bottom:169.466667pt;}
.y1ce{bottom:171.386667pt;}
.y188{bottom:172.506667pt;}
.y111{bottom:177.946667pt;}
.y20a{bottom:179.866667pt;}
.yc5{bottom:181.466667pt;}
.y1be{bottom:185.146667pt;}
.y1e0{bottom:189.786667pt;}
.y1cd{bottom:190.746667pt;}
.y187{bottom:192.666667pt;}
.y31{bottom:193.466667pt;}
.yeb{bottom:197.306667pt;}
.y135{bottom:198.426667pt;}
.y227{bottom:198.906667pt;}
.y1a3{bottom:199.386667pt;}
.yc4{bottom:200.826667pt;}
.y1a7{bottom:202.880000pt;}
.y245{bottom:203.386667pt;}
.y1bd{bottom:204.506667pt;}
.y30{bottom:208.346667pt;}
.y1cc{bottom:209.946667pt;}
.y110{bottom:216.506667pt;}
.y1a2{bottom:218.746667pt;}
.yc3{bottom:220.026667pt;}
.y244{bottom:221.946667pt;}
.y186{bottom:225.306667pt;}
.y9b{bottom:226.266667pt;}
.yea{bottom:227.226667pt;}
.y2c{bottom:228.666667pt;}
.y134{bottom:232.826667pt;}
.y226{bottom:233.306667pt;}
.y1bc{bottom:234.426667pt;}
.y10f{bottom:235.866667pt;}
.yc2{bottom:239.386667pt;}
.y1cb{bottom:239.866667pt;}
.y243{bottom:240.506667pt;}
.y185{bottom:244.506667pt;}
.ye9{bottom:246.586667pt;}
.y1a1{bottom:248.666667pt;}
.y225{bottom:252.506667pt;}
.y1bb{bottom:253.786667pt;}
.y10e{bottom:255.066667pt;}
.yc1{bottom:258.746667pt;}
.y1ca{bottom:259.226667pt;}
.y133{bottom:262.746667pt;}
.y1a0{bottom:263.546667pt;}
.y27{bottom:265.146667pt;}
.ye8{bottom:265.786667pt;}
.y209{bottom:269.786667pt;}
.y224{bottom:271.866667pt;}
.y1ba{bottom:273.786667pt;}
.y10d{bottom:274.426667pt;}
.y184{bottom:274.586667pt;}
.y157{bottom:275.706667pt;}
.yc0{bottom:277.946667pt;}
.y9a{bottom:278.426667pt;}
.y1c9{bottom:278.586667pt;}
.y132{bottom:281.946667pt;}
.y223{bottom:291.066667pt;}
.y10c{bottom:293.786667pt;}
.y242{bottom:294.746667pt;}
.ye7{bottom:295.706667pt;}
.y99{bottom:297.786667pt;}
.ybf{bottom:299.586667pt;}
.y208{bottom:299.746667pt;}
.y19f{bottom:300.066667pt;}
.y131{bottom:301.346667pt;}
.y1b9{bottom:306.466667pt;}
.y156{bottom:310.146667pt;}
.y222{bottom:310.466667pt;}
.y10b{bottom:313.026667pt;}
.y183{bottom:313.186667pt;}
.y241{bottom:313.346667pt;}
.ye6{bottom:315.106667pt;}
.y26{bottom:317.026667pt;}
.y1c8{bottom:317.186667pt;}
.y130{bottom:320.706667pt;}
.y207{bottom:329.826667pt;}
.y240{bottom:331.906667pt;}
.y10a{bottom:332.386667pt;}
.ye5{bottom:334.466667pt;}
.y98{bottom:336.386667pt;}
.y1b8{bottom:336.546667pt;}
.y25{bottom:337.346667pt;}
.y12f{bottom:339.906667pt;}
.y155{bottom:340.066667pt;}
.y221{bottom:340.386667pt;}
.ybe{bottom:341.346667pt;}
.y1b7{bottom:351.426667pt;}
.y109{bottom:351.586667pt;}
.y182{bottom:351.746667pt;}
.y97{bottom:355.586667pt;}
.y1c7{bottom:355.746667pt;}
.y22{bottom:357.666667pt;}
.y154{bottom:359.266667pt;}
.y206{bottom:359.746667pt;}
.ybd{bottom:360.706667pt;}
.ye4{bottom:364.386667pt;}
.y23f{bottom:368.226667pt;}
.y1df{bottom:369.346667pt;}
.y12e{bottom:369.826667pt;}
.y220{bottom:370.466667pt;}
.y108{bottom:370.946667pt;}
.y19e{bottom:372.866667pt;}
.y1c6{bottom:374.946667pt;}
.y21{bottom:377.026667pt;}
.y153{bottom:378.626667pt;}
.y181{bottom:381.666667pt;}
.y96{bottom:385.666667pt;}
.y1b2{bottom:387.906667pt;}
.y12d{bottom:389.186667pt;}
.y205{bottom:389.666667pt;}
.y107{bottom:390.306667pt;}
.ybc{bottom:390.626667pt;}
.ye3{bottom:394.306667pt;}
.y1e{bottom:397.346667pt;}
.y152{bottom:397.986667pt;}
.y21f{bottom:400.386667pt;}
.y180{bottom:401.026667pt;}
.y95{bottom:404.866667pt;}
.y106{bottom:409.506667pt;}
.ybb{bottom:409.986667pt;}
.ye2{bottom:413.666667pt;}
.y151{bottom:417.186667pt;}
.y1b{bottom:417.666667pt;}
.y12c{bottom:419.106667pt;}
.y204{bottom:419.586667pt;}
.y17f{bottom:420.386667pt;}
.y1b6{bottom:424.226667pt;}
.y19d{bottom:427.106667pt;}
.y105{bottom:428.866667pt;}
.yba{bottom:429.186667pt;}
.y21e{bottom:430.306667pt;}
.ye1{bottom:432.866667pt;}
.y94{bottom:434.946667pt;}
.y150{bottom:436.546667pt;}
.y12b{bottom:438.466667pt;}
.y17e{bottom:439.586667pt;}
.y23e{bottom:439.746667pt;}
.y21d{bottom:445.186667pt;}
.y104{bottom:448.066667pt;}
.y203{bottom:449.666667pt;}
.ye0{bottom:452.226667pt;}
.y93{bottom:454.146667pt;}
.y14f{bottom:455.746667pt;}
.y18{bottom:457.666667pt;}
.y17d{bottom:458.946667pt;}
.yb9{bottom:459.106667pt;}
.y1de{bottom:459.426667pt;}
.y1b5{bottom:460.706667pt;}
.y19c{bottom:463.586667pt;}
.y103{bottom:467.426667pt;}
.ydf{bottom:471.426667pt;}
.y92{bottom:473.506667pt;}
.y14e{bottom:475.106667pt;}
.y12a{bottom:477.026667pt;}
.y17c{bottom:478.146667pt;}
.y23d{bottom:478.306667pt;}
.y202{bottom:479.586667pt;}
.y4c{bottom:482.786667pt;}
.y102{bottom:486.626667pt;}
.yb8{bottom:489.186667pt;}
.y91{bottom:492.706667pt;}
.y17{bottom:493.826667pt;}
.y129{bottom:496.386667pt;}
.y1b4{bottom:497.186667pt;}
.y4b{bottom:497.666667pt;}
.yde{bottom:501.506667pt;}
.y14d{bottom:505.026667pt;}
.y101{bottom:505.986667pt;}
.y17b{bottom:508.226667pt;}
.yb7{bottom:508.386667pt;}
.y201{bottom:509.506667pt;}
.y79{bottom:511.106667pt;}
.y128{bottom:515.586667pt;}
.y4a{bottom:516.226667pt;}
.y23c{bottom:516.866667pt;}
.y21c{bottom:517.346667pt;}
.y19b{bottom:517.986667pt;}
.y14b{bottom:519.906667pt;}
.ydd{bottom:520.706667pt;}
.y90{bottom:522.786667pt;}
.y16{bottom:523.746667pt;}
.y17a{bottom:527.426667pt;}
.yb6{bottom:527.746667pt;}
.y1b3{bottom:533.506667pt;}
.y48{bottom:534.786667pt;}
.y100{bottom:535.906667pt;}
.y23b{bottom:536.226667pt;}
.y200{bottom:539.453333pt;}
.ydc{bottom:540.093333pt;}
.y78{bottom:541.053333pt;}
.y8f{bottom:542.013333pt;}
.y127{bottom:545.693333pt;}
.y179{bottom:546.813333pt;}
.yb5{bottom:546.973333pt;}
.y1dd{bottom:549.533333pt;}
.y19a{bottom:552.253333pt;}
.y47{bottom:553.373333pt;}
.y15{bottom:553.693333pt;}
.y1ff{bottom:554.333333pt;}
.y21b{bottom:554.493333pt;}
.yff{bottom:555.293333pt;}
.y14a{bottom:556.413333pt;}
.ydb{bottom:559.293333pt;}
.y8e{bottom:561.373333pt;}
.y67{bottom:562.013333pt;}
.y126{bottom:564.893333pt;}
.y178{bottom:566.013333pt;}
.y23a{bottom:566.173333pt;}
.yb4{bottom:566.333333pt;}
.y1b1{bottom:570.013333pt;}
.y77{bottom:571.133333pt;}
.y199{bottom:571.453333pt;}
.y1fe{bottom:572.893333pt;}
.y145{bottom:574.973333pt;}
.y66{bottom:576.893333pt;}
.yda{bottom:578.653333pt;}
.y8d{bottom:580.573333pt;}
.y14{bottom:583.773333pt;}
.y125{bottom:584.253333pt;}
.yfe{bottom:585.213333pt;}
.y177{bottom:585.373333pt;}
.yb3{bottom:585.693333pt;}
.y46{bottom:587.613333pt;}
.y1c5{bottom:589.373333pt;}
.y1fd{bottom:591.453333pt;}
.y239{bottom:596.093333pt;}
.y64{bottom:596.573333pt;}
.yd9{bottom:598.013333pt;}
.y8c{bottom:599.933333pt;}
.y76{bottom:601.053333pt;}
.y198{bottom:601.533333pt;}
.y124{bottom:603.453333pt;}
.y1dc{bottom:603.773333pt;}
.yfd{bottom:604.573333pt;}
.y1b0{bottom:606.333333pt;}
.y45{bottom:606.973333pt;}
.y1c4{bottom:608.573333pt;}
.y21a{bottom:608.893333pt;}
.y1fc{bottom:610.013333pt;}
.y13{bottom:613.693333pt;}
.y176{bottom:615.293333pt;}
.yb2{bottom:615.613333pt;}
.y8b{bottom:619.133333pt;}
.y197{bottom:620.733333pt;}
.y63{bottom:622.973333pt;}
.yfc{bottom:623.773333pt;}
.y44{bottom:626.173333pt;}
.y75{bottom:626.973333pt;}
.y219{bottom:627.293333pt;}
.yd8{bottom:627.933333pt;}
.y1fb{bottom:628.573333pt;}
.y123{bottom:633.533333pt;}
.y175{bottom:634.653333pt;}
.yb1{bottom:634.813333pt;}
.y8a{bottom:638.493333pt;}
.y196{bottom:640.093333pt;}
.y62{bottom:642.493333pt;}
.y1af{bottom:642.813333pt;}
.yfb{bottom:643.133333pt;}
.y12{bottom:643.613333pt;}
.y43{bottom:645.533333pt;}
.y218{bottom:645.853333pt;}
.yd7{bottom:647.133333pt;}
.y122{bottom:652.733333pt;}
.y74{bottom:653.053333pt;}
.y174{bottom:653.853333pt;}
.yb0{bottom:654.173333pt;}
.y1db{bottom:655.933333pt;}
.y238{bottom:656.093333pt;}
.y89{bottom:657.853333pt;}
.y195{bottom:659.293333pt;}
.y61{bottom:661.213333pt;}
.y42{bottom:664.733333pt;}
.y1fa{bottom:665.693333pt;}
.yd6{bottom:666.493333pt;}
.y121{bottom:672.093333pt;}
.yfa{bottom:673.053333pt;}
.y173{bottom:673.213333pt;}
.y11{bottom:673.533333pt;}
.y1da{bottom:675.133333pt;}
.y88{bottom:677.053333pt;}
.y194{bottom:678.653333pt;}
.y73{bottom:678.973333pt;}
.y1ae{bottom:679.293333pt;}
.y5f{bottom:679.933333pt;}
.y217{bottom:682.333333pt;}
.y1ec{bottom:685.693333pt;}
.yd5{bottom:685.853333pt;}
.y237{bottom:686.013333pt;}
.y120{bottom:691.293333pt;}
.yf9{bottom:692.413333pt;}
.y172{bottom:693.213333pt;}
.y1d9{bottom:694.493333pt;}
.y41{bottom:694.813333pt;}
.y87{bottom:696.413333pt;}
.y5d{bottom:699.613333pt;}
.y236{bottom:700.893333pt;}
.y1f9{bottom:702.173333pt;}
.yaf{bottom:703.453333pt;}
.y10{bottom:703.613333pt;}
.y72{bottom:704.893333pt;}
.yd4{bottom:705.053333pt;}
.y193{bottom:708.573333pt;}
.y11f{bottom:710.653333pt;}
.y1d8{bottom:713.853333pt;}
.y86{bottom:715.613333pt;}
.y1c3{bottom:715.773333pt;}
.yae{bottom:718.333333pt;}
.y144{bottom:718.653333pt;}
.y5b{bottom:719.773333pt;}
.yf8{bottom:722.333333pt;}
.y40{bottom:724.733333pt;}
.y171{bottom:726.013333pt;}
.y192{bottom:727.933333pt;}
.y11e{bottom:729.853333pt;}
.y71{bottom:730.813333pt;}
.y1d7{bottom:733.053333pt;}
.yf{bottom:733.533333pt;}
.y216{bottom:734.493333pt;}
.yd3{bottom:734.973333pt;}
.y1f8{bottom:736.413333pt;}
.y85{bottom:737.213333pt;}
.y3f{bottom:739.613333pt;}
.yf7{bottom:741.693333pt;}
.y59{bottom:745.213333pt;}
.y1eb{bottom:745.693333pt;}
.y191{bottom:747.133333pt;}
.y11d{bottom:749.213333pt;}
.y1ad{bottom:752.093333pt;}
.y215{bottom:753.693333pt;}
.yd2{bottom:754.333333pt;}
.y235{bottom:755.293333pt;}
.y1f7{bottom:755.613333pt;}
.y70{bottom:756.893333pt;}
.yf6{bottom:760.893333pt;}
.y1d6{bottom:762.973333pt;}
.ye{bottom:763.453333pt;}
.y170{bottom:764.573333pt;}
.y11c{bottom:768.573333pt;}
.ya5{bottom:772.573333pt;}
.y214{bottom:773.053333pt;}
.y1ef{bottom:773.533333pt;}
.yd1{bottom:773.693333pt;}
.y234{bottom:773.893333pt;}
.y1f6{bottom:775.013333pt;}
.y1ea{bottom:775.653333pt;}
.y190{bottom:777.253333pt;}
.y84{bottom:779.013333pt;}
.yf5{bottom:780.293333pt;}
.y3c{bottom:780.453333pt;}
.y58{bottom:781.733333pt;}
.y6f{bottom:782.853333pt;}
.yd{bottom:787.013333pt;}
.y11b{bottom:787.813333pt;}
.y1ac{bottom:788.613333pt;}
.y143{bottom:788.773333pt;}
.y1e9{bottom:790.533333pt;}
.y233{bottom:792.293333pt;}
.y213{bottom:792.453333pt;}
.yd0{bottom:792.933333pt;}
.y1d5{bottom:793.093333pt;}
.y1f5{bottom:794.213333pt;}
.y16f{bottom:794.533333pt;}
.y18f{bottom:796.453333pt;}
.yf4{bottom:799.493333pt;}
.y57{bottom:801.413333pt;}
.y1ee{bottom:803.493333pt;}
.y11a{bottom:807.173333pt;}
.y6e{bottom:808.773333pt;}
.y83{bottom:809.093333pt;}
.y232{bottom:810.853333pt;}
.y212{bottom:811.653333pt;}
.ycf{bottom:812.293333pt;}
.y1f4{bottom:813.573333pt;}
.y16e{bottom:813.893333pt;}
.y18e{bottom:815.813333pt;}
.y142{bottom:818.693333pt;}
.yf3{bottom:819.653333pt;}
.y3a{bottom:821.093333pt;}
.y119{bottom:826.373333pt;}
.y82{bottom:828.293333pt;}
.y231{bottom:829.413333pt;}
.y1ed{bottom:829.733333pt;}
.yce{bottom:831.493333pt;}
.y1d4{bottom:831.653333pt;}
.y1c2{bottom:832.293333pt;}
.yc{bottom:832.613333pt;}
.y1f3{bottom:832.933333pt;}
.y16d{bottom:833.093333pt;}
.y6d{bottom:834.693333pt;}
.y18d{bottom:835.013333pt;}
.y141{bottom:838.053333pt;}
.y55{bottom:840.773333pt;}
.y211{bottom:841.573333pt;}
.y1ab{bottom:843.493333pt;}
.y118{bottom:845.733333pt;}
.y81{bottom:847.653333pt;}
.y230{bottom:847.973333pt;}
.ycd{bottom:850.853333pt;}
.yf2{bottom:852.293333pt;}
.y16c{bottom:852.453333pt;}
.y1d3{bottom:853.253333pt;}
.y18c{bottom:854.373333pt;}
.y140{bottom:857.253333pt;}
.y54{bottom:859.333333pt;}
.y6c{bottom:860.773333pt;}
.y210{bottom:860.933333pt;}
.y38{bottom:861.893333pt;}
.y1f2{bottom:862.853333pt;}
.y117{bottom:865.093333pt;}
.y80{bottom:866.853333pt;}
.y8{bottom:869.413333pt;}
.ycc{bottom:870.853333pt;}
.y16b{bottom:871.653333pt;}
.y13f{bottom:876.613333pt;}
.y52{bottom:879.013333pt;}
.yf1{bottom:882.213333pt;}
.y116{bottom:884.293333pt;}
.y22f{bottom:884.453333pt;}
.y7f{bottom:886.213333pt;}
.y6b{bottom:886.693333pt;}
.y20f{bottom:890.853333pt;}
.y16a{bottom:891.813333pt;}
.y1f1{bottom:892.773333pt;}
.y1d2{bottom:895.013333pt;}
.y13e{bottom:895.813333pt;}
.y1aa{bottom:897.893333pt;}
.y1e8{bottom:898.533333pt;}
.y50{bottom:898.693333pt;}
.ycb{bottom:903.653333pt;}
.y7e{bottom:905.573333pt;}
.yf0{bottom:912.293333pt;}
.y6a{bottom:912.613333pt;}
.y1d1{bottom:914.213333pt;}
.y37{bottom:916.293333pt;}
.ya4{bottom:916.453333pt;}
.y1e7{bottom:917.093333pt;}
.y22e{bottom:918.693333pt;}
.y4f{bottom:919.813333pt;}
.y20e{bottom:920.933333pt;}
.y1f0{bottom:922.693333pt;}
.yca{bottom:922.853333pt;}
.y169{bottom:924.453333pt;}
.y7d{bottom:924.773333pt;}
.y13d{bottom:925.893333pt;}
.y1d0{bottom:933.573333pt;}
.y69{bottom:938.533333pt;}
.y168{bottom:939.333333pt;}
.yc9{bottom:942.213333pt;}
.y7c{bottom:944.133333pt;}
.y20d{bottom:950.853333pt;}
.y1a9{bottom:952.133333pt;}
.y36{bottom:952.773333pt;}
.y115{bottom:952.933333pt;}
.y13c{bottom:955.813333pt;}
.y167{bottom:957.893333pt;}
.y68{bottom:960.613333pt;}
.yef{bottom:961.573333pt;}
.y7b{bottom:963.333333pt;}
.y13a{bottom:970.693333pt;}
.y35{bottom:971.973333pt;}
.yc8{bottom:972.133333pt;}
.y4e{bottom:974.373333pt;}
.y20c{bottom:980.773333pt;}
.y7a{bottom:982.693333pt;}
.y22d{bottom:987.973333pt;}
.y1a8{bottom:988.613333pt;}
.y7{bottom:988.773333pt;}
.yc7{bottom:991.493333pt;}
.y166{bottom:994.373333pt;}
.y34{bottom:1004.293333pt;}
.y22c{bottom:1006.373333pt;}
.y4d{bottom:1010.693333pt;}
.y2{bottom:1028.640000pt;}
.y1{bottom:1043.040000pt;}
.y33{bottom:1069.226667pt;}
.h2c{height:17.760000pt;}
.h12{height:17.920000pt;}
.h13{height:17.952000pt;}
.h1b{height:18.080000pt;}
.h9{height:18.720000pt;}
.h1c{height:18.880000pt;}
.h16{height:19.040000pt;}
.h19{height:19.520000pt;}
.h6{height:19.680000pt;}
.h14{height:20.480000pt;}
.h18{height:24.800000pt;}
.h1d{height:25.600000pt;}
.h2b{height:29.952000pt;}
.he{height:35.680000pt;}
.h2f{height:35.712000pt;}
.hb{height:35.840000pt;}
.h17{height:35.872000pt;}
.h8{height:39.360000pt;}
.h10{height:40.000000pt;}
.h11{height:40.032000pt;}
.hf{height:40.160000pt;}
.h3{height:42.794240pt;}
.hc{height:44.500000pt;}
.ha{height:51.232000pt;}
.h7{height:51.307520pt;}
.h23{height:53.600000pt;}
.h27{height:53.632000pt;}
.h25{height:54.817280pt;}
.h2a{height:57.760000pt;}
.h2{height:58.762240pt;}
.h26{height:60.519362pt;}
.h15{height:62.812500pt;}
.h2d{height:63.656250pt;}
.h1a{height:63.872000pt;}
.h24{height:64.350720pt;}
.h34{height:71.520000pt;}
.h21{height:71.552000pt;}
.hd{height:79.246720pt;}
.h1e{height:84.662813pt;}
.h1f{height:88.611250pt;}
.h32{height:89.280000pt;}
.h31{height:89.312000pt;}
.h29{height:107.040000pt;}
.h20{height:107.200000pt;}
.h35{height:107.232000pt;}
.h36{height:107.360000pt;}
.h5{height:109.440000pt;}
.h4{height:112.138240pt;}
.h28{height:143.040000pt;}
.h22{height:143.066667pt;}
.h33{height:178.906667pt;}
.h30{height:181.466667pt;}
.h2e{height:217.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:20.480000pt;}
.w24{width:26.720000pt;}
.w26{width:27.680000pt;}
.w23{width:31.520000pt;}
.wd{width:40.160000pt;}
.w6{width:46.400000pt;}
.w2a{width:51.360000pt;}
.w2b{width:55.680000pt;}
.w29{width:55.872000pt;}
.w27{width:56.480000pt;}
.wf{width:73.120000pt;}
.w7{width:76.512000pt;}
.w16{width:77.120000pt;}
.w17{width:81.472000pt;}
.w25{width:93.152000pt;}
.w18{width:98.560000pt;}
.w1b{width:104.512000pt;}
.w8{width:121.600000pt;}
.w20{width:121.792000pt;}
.w9{width:122.272000pt;}
.w1f{width:125.920000pt;}
.w1a{width:130.720000pt;}
.w1e{width:135.386667pt;}
.w2c{width:135.866667pt;}
.w15{width:137.786667pt;}
.w12{width:138.426667pt;}
.w14{width:138.906667pt;}
.w1d{width:147.706667pt;}
.w13{width:148.480000pt;}
.w4{width:167.226667pt;}
.w1c{width:180.346667pt;}
.w21{width:180.506667pt;}
.w10{width:188.026667pt;}
.w11{width:188.186667pt;}
.w2e{width:192.186667pt;}
.wa{width:196.986667pt;}
.w28{width:197.146667pt;}
.wb{width:282.426667pt;}
.wc{width:282.466667pt;}
.w19{width:306.466667pt;}
.w2d{width:372.866667pt;}
.w5{width:426.626667pt;}
.we{width:503.933333pt;}
.w3{width:565.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.360000pt;}
.x17{left:10.880000pt;}
.x1a{left:25.920000pt;}
.x19{left:27.040000pt;}
.x1b{left:30.080000pt;}
.x18{left:32.480000pt;}
.x27{left:54.746667pt;}
.x14{left:87.712000pt;}
.x8{left:91.194667pt;}
.x2{left:113.471988pt;}
.x15{left:128.512000pt;}
.x4{left:129.631988pt;}
.xe{left:133.152000pt;}
.x2f{left:135.226667pt;}
.x1e{left:137.466655pt;}
.x5{left:156.026655pt;}
.xa{left:159.226655pt;}
.x1f{left:161.466655pt;}
.x30{left:167.386667pt;}
.x37{left:170.426667pt;}
.x9{left:172.034667pt;}
.x7{left:176.034667pt;}
.xf{left:180.186667pt;}
.x24{left:191.866667pt;}
.x31{left:194.746667pt;}
.x1{left:196.666655pt;}
.x29{left:245.626667pt;}
.x2c{left:250.146667pt;}
.x21{left:253.186667pt;}
.x10{left:257.346667pt;}
.x25{left:274.146667pt;}
.xc{left:281.986667pt;}
.x32{left:288.546667pt;}
.x1c{left:302.946667pt;}
.x38{left:306.946667pt;}
.x33{left:316.866667pt;}
.x2a{left:350.946667pt;}
.x26{left:373.346667pt;}
.x2d{left:376.866667pt;}
.x11{left:379.586667pt;}
.x6{left:396.866655pt;}
.x22{left:402.306667pt;}
.x1d{left:491.613333pt;}
.x2e{left:499.293333pt;}
.x12{left:502.493333pt;}
.x2b{left:532.093333pt;}
.x23{left:541.853333pt;}
.x34{left:571.773333pt;}
.xd{left:602.666667pt;}
.x35{left:628.453333pt;}
.x16{left:633.093333pt;}
.x39{left:662.373322pt;}
.x20{left:665.413322pt;}
.x28{left:666.853322pt;}
.x13{left:670.693322pt;}
.x3{left:672.133322pt;}
.x36{left:680.453322pt;}
}




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