
    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_fed9117a43c9f9ede43785dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_b26d30ad766c6b232049366b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_c0beaec5d0c9b4cdae7b64be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_c48565e7b9ea672543270ccc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_a645485f06b188454dc6f32d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_0c26aa50cfeff759ee9d6d0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_4c14d15d1a252879091bfad1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_8914a271514e1a59972c7d47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_a7e06bedabcb2e05c97e5aba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_651d14c7ae6d06067da53f46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_d595ba25149bbd1c16130184.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128418;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:fff;src:url('chunks/assets/font_dac6895c8249ab085cf5c81a.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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;}
.m2{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,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);}
.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);}
.v5{vertical-align:-12.240000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v2{vertical-align:22.320000px;}
.v8{vertical-align:25.920000px;}
.v7{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.v3{vertical-align:35.280000px;}
.lsb{letter-spacing:-2.268000px;}
.ls15{letter-spacing:-2.112000px;}
.ls13{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.269400px;}
.ls21{letter-spacing:-0.258000px;}
.ls2e{letter-spacing:-0.222000px;}
.ls2c{letter-spacing:-0.076200px;}
.ls14{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls2a{letter-spacing:0.069000px;}
.ls11{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.206400px;}
.ls32{letter-spacing:0.206640px;}
.ls2d{letter-spacing:0.279600px;}
.ls34{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.306720px;}
.ls5{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.513600px;}
.ls2b{letter-spacing:0.558720px;}
.ls19{letter-spacing:1.273680px;}
.lsa{letter-spacing:1.332000px;}
.ls8{letter-spacing:1.386000px;}
.ls4{letter-spacing:1.589760px;}
.ls2{letter-spacing:1.590000px;}
.ls1{letter-spacing:1.699920px;}
.ls1d{letter-spacing:1.760400px;}
.ls18{letter-spacing:1.993680px;}
.ls9{letter-spacing:2.052000px;}
.ls3{letter-spacing:2.100000px;}
.ls0{letter-spacing:2.106720px;}
.ls1c{letter-spacing:2.349360px;}
.ls22{letter-spacing:2.460960px;}
.ls17{letter-spacing:2.815920px;}
.ls23{letter-spacing:3.180960px;}
.ls27{letter-spacing:3.535200px;}
.ls20{letter-spacing:3.708000px;}
.ls25{letter-spacing:3.857760px;}
.ls29{letter-spacing:3.900960px;}
.ls28{letter-spacing:4.062240px;}
.ls1b{letter-spacing:4.428000px;}
.ls24{letter-spacing:10.069200px;}
.ls1e{letter-spacing:10.337760px;}
.ls26{letter-spacing:20.622240px;}
.ls35{letter-spacing:40.986720px;}
.ls33{letter-spacing:56.826720px;}
.ls16{letter-spacing:64.026720px;}
.ls1f{letter-spacing:87.950160px;}
.lse{letter-spacing:91.386720px;}
.ls1a{letter-spacing:201.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-69.829200px;}
.wsf{word-spacing:-59.760000px;}
.ws15{word-spacing:-48.240720px;}
.ws23{word-spacing:-46.800720px;}
.ws1a{word-spacing:-46.104720px;}
.ws14{word-spacing:-46.080720px;}
.ws2b{word-spacing:-46.067040px;}
.ws11{word-spacing:-43.200720px;}
.ws19{word-spacing:-42.878880px;}
.ws20{word-spacing:-42.480720px;}
.ws1c{word-spacing:-42.336720px;}
.ws27{word-spacing:-42.039600px;}
.ws25{word-spacing:-41.829000px;}
.ws12{word-spacing:-41.760000px;}
.ws24{word-spacing:-41.683800px;}
.ws28{word-spacing:-41.538000px;}
.ws17{word-spacing:-41.502000px;}
.ws29{word-spacing:-41.337600px;}
.ws26{word-spacing:-41.235360px;}
.ws2a{word-spacing:-40.466880px;}
.ws6{word-spacing:-37.440000px;}
.ws1b{word-spacing:-36.000000px;}
.ws13{word-spacing:-25.970400px;}
.ws22{word-spacing:-23.971200px;}
.ws21{word-spacing:-23.829480px;}
.ws10{word-spacing:-22.226400px;}
.ws1f{word-spacing:-20.988000px;}
.ws0{word-spacing:-18.665280px;}
.ws1{word-spacing:-17.945280px;}
.ws7{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.605760px;}
.wse{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws2e{word-spacing:-15.238800px;}
.ws2c{word-spacing:-15.146400px;}
.ws2d{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws2f{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.345280px;}
.wsc{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.505760px;}
.ws9{word-spacing:-12.060000px;}
.wsb{word-spacing:0.000000px;}
.ws16{word-spacing:27.968160px;}
.ws1e{word-spacing:120.516960px;}
.ws18{word-spacing:407.796960px;}
._17{margin-left:-201.738720px;}
._16{margin-left:-200.400720px;}
._19{margin-left:-124.684560px;}
._15{margin-left:-122.933760px;}
._18{margin-left:-25.038720px;}
._1e{margin-left:-18.266400px;}
._1d{margin-left:-10.542000px;}
._1c{margin-left:-9.158640px;}
._1b{margin-left:-7.869120px;}
._7{margin-left:-6.806880px;}
._29{margin-left:-5.787600px;}
._f{margin-left:-4.242960px;}
._4{margin-left:-3.231600px;}
._3{margin-left:-2.152800px;}
._8{margin-left:-1.123200px;}
._0{width:1.374480px;}
._1{width:3.016800px;}
._2{width:4.644480px;}
._9{width:5.832000px;}
._c{width:7.074000px;}
._a{width:8.694000px;}
._12{width:9.714240px;}
._b{width:10.828320px;}
._e{width:12.225600px;}
._d{width:13.550400px;}
._27{width:16.513920px;}
._10{width:17.688960px;}
._11{width:18.943920px;}
._2a{width:20.444160px;}
._28{width:22.827360px;}
._13{width:24.028320px;}
._2b{width:41.533200px;}
._6{width:43.465440px;}
._2e{width:45.118800px;}
._14{width:52.387200px;}
._23{width:60.058080px;}
._25{width:61.533840px;}
._24{width:75.672720px;}
._2c{width:82.349280px;}
._1a{width:91.792080px;}
._2d{width:93.105360px;}
._21{width:104.757840px;}
._1f{width:106.885920px;}
._20{width:109.525440px;}
._22{width:117.280800px;}
._26{width:158.336400px;}
._5{width:201.060000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fsf{font-size:41.738553px;}
.fsb{font-size:41.760000px;}
.fs11{font-size:41.882479px;}
.fse{font-size:48.215226px;}
.fs3{font-size:48.240000px;}
.fs10{font-size:48.359152px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fsd{font-size:59.729309px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:71.963023px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:0.655167px;}
.ya7{bottom:3.313301px;}
.y155{bottom:3.420000px;}
.ya0{bottom:4.437723px;}
.ybc{bottom:5.951944px;}
.ybf{bottom:14.587507px;}
.ya6{bottom:17.166183px;}
.ya4{bottom:17.391068px;}
.y9f{bottom:18.290606px;}
.yb6{bottom:22.906716px;}
.y7{bottom:25.560000px;}
.yaf{bottom:28.217005px;}
.yc6{bottom:28.396911px;}
.ybe{bottom:28.440388px;}
.y9b{bottom:28.470375px;}
.yb5{bottom:28.541588px;}
.yac{bottom:28.650282px;}
.yc3{bottom:28.680268px;}
.ya9{bottom:29.219989px;}
.yba{bottom:30.059556px;}
.y6{bottom:45.900000px;}
.yb8{bottom:75.576175px;}
.y165{bottom:89.136000px;}
.y90{bottom:91.476000px;}
.y3e{bottom:96.696000px;}
.y13e{bottom:97.416000px;}
.y7a{bottom:98.136000px;}
.yc7{bottom:101.166502px;}
.y103{bottom:102.816000px;}
.y1d2{bottom:102.996000px;}
.yb0{bottom:103.145491px;}
.y164{bottom:106.416000px;}
.y8f{bottom:108.756000px;}
.y18e{bottom:109.116000px;}
.y1b0{bottom:110.196000px;}
.y3d{bottom:113.796000px;}
.y13d{bottom:114.696000px;}
.y79{bottom:115.416000px;}
.y102{bottom:120.096000px;}
.y1d1{bottom:120.276000px;}
.y1f2{bottom:120.456000px;}
.y163{bottom:123.696000px;}
.y8e{bottom:126.036000px;}
.y1af{bottom:129.276000px;}
.y3c{bottom:131.076000px;}
.y13c{bottom:131.976000px;}
.y78{bottom:132.696000px;}
.y101{bottom:137.196000px;}
.y1d0{bottom:137.556000px;}
.y1f1{bottom:137.736000px;}
.y162{bottom:140.976000px;}
.y18d{bottom:142.776000px;}
.y8d{bottom:143.316000px;}
.y1ae{bottom:146.556000px;}
.y3b{bottom:148.356000px;}
.y13b{bottom:149.256000px;}
.y77{bottom:149.796000px;}
.y100{bottom:154.470000px;}
.y1cf{bottom:154.830000px;}
.y1f0{bottom:155.010000px;}
.y161{bottom:158.250000px;}
.y8c{bottom:160.410000px;}
.y18c{bottom:161.850000px;}
.y3a{bottom:165.630000px;}
.y13a{bottom:166.530000px;}
.y76{bottom:167.070000px;}
.ya2{bottom:171.212031px;}
.yff{bottom:171.750000px;}
.y1ce{bottom:172.110000px;}
.y8b{bottom:174.450000px;}
.y9c{bottom:174.645000px;}
.y91{bottom:174.667017px;}
.y160{bottom:175.350000px;}
.y1ad{bottom:178.410000px;}
.y18b{bottom:179.130000px;}
.yb4{bottom:182.863010px;}
.y39{bottom:182.910000px;}
.y139{bottom:183.630000px;}
.y75{bottom:184.350000px;}
.yfe{bottom:185.790000px;}
.y1cd{bottom:189.390000px;}
.y15f{bottom:192.630000px;}
.yfd{bottom:193.350000px;}
.y18a{bottom:196.410000px;}
.y38{bottom:200.190000px;}
.y138{bottom:200.550000px;}
.y74{bottom:201.630000px;}
.y1cc{bottom:206.490000px;}
.y1ef{bottom:206.670000px;}
.yc1{bottom:208.647774px;}
.y15e{bottom:209.910000px;}
.ybb{bottom:212.066025px;}
.y1ac{bottom:212.250000px;}
.y189{bottom:213.690000px;}
.yfc{bottom:215.130000px;}
.y137{bottom:216.390000px;}
.y37{bottom:217.290000px;}
.y73{bottom:218.910000px;}
.y1cb{bottom:223.770000px;}
.y1ee{bottom:223.950000px;}
.y15d{bottom:227.190000px;}
.y188{bottom:230.970000px;}
.yfb{bottom:232.410000px;}
.y136{bottom:233.490000px;}
.y36{bottom:234.570000px;}
.y72{bottom:236.190000px;}
.y1ca{bottom:241.050000px;}
.y1ed{bottom:241.230000px;}
.y15c{bottom:244.470000px;}
.y1ab{bottom:245.910000px;}
.y187{bottom:248.250000px;}
.yfa{bottom:249.690000px;}
.y135{bottom:250.770000px;}
.y35{bottom:251.850000px;}
.y71{bottom:253.290000px;}
.y1c9{bottom:258.330000px;}
.yc5{bottom:261.303453px;}
.y15b{bottom:261.750000px;}
.yae{bottom:263.282442px;}
.yf5{bottom:263.730000px;}
.yf7{bottom:264.810000px;}
.y186{bottom:265.350000px;}
.yf9{bottom:268.050000px;}
.y34{bottom:269.130000px;}
.y70{bottom:270.570000px;}
.yf4{bottom:271.290000px;}
.y1c8{bottom:275.610000px;}
.yf8{bottom:277.050000px;}
.y15a{bottom:278.850000px;}
.y1aa{bottom:279.570000px;}
.yf6{bottom:280.650000px;}
.y134{bottom:282.090000px;}
.y185{bottom:282.630000px;}
.y33{bottom:286.410000px;}
.y6f{bottom:287.850000px;}
.y133{bottom:289.650000px;}
.yf3{bottom:292.890000px;}
.y159{bottom:293.430000px;}
.y184{bottom:299.910000px;}
.y32{bottom:303.690000px;}
.y6e{bottom:305.130000px;}
.yf2{bottom:309.990000px;}
.y1ec{bottom:310.170000px;}
.y132{bottom:311.250000px;}
.y158{bottom:311.430000px;}
.y1a9{bottom:313.410000px;}
.y183{bottom:317.190000px;}
.y31{bottom:320.790000px;}
.y6d{bottom:322.410000px;}
.y9d{bottom:324.358321px;}
.y1c7{bottom:327.270000px;}
.yf1{bottom:327.450000px;}
.y131{bottom:328.350000px;}
.y157{bottom:329.430000px;}
.y182{bottom:334.470000px;}
.y30{bottom:338.115000px;}
.y6c{bottom:339.735000px;}
.y130{bottom:342.615000px;}
.y1c6{bottom:344.595000px;}
.y1eb{bottom:344.775000px;}
.yf0{bottom:345.855000px;}
.y1a8{bottom:347.115000px;}
.y156{bottom:347.475000px;}
.yb7{bottom:349.275250px;}
.y12f{bottom:350.175000px;}
.y181{bottom:351.795000px;}
.yad{bottom:352.603815px;}
.yb3{bottom:352.603820px;}
.y2f{bottom:355.395000px;}
.y6b{bottom:356.835000px;}
.y1c5{bottom:361.875000px;}
.yef{bottom:363.135000px;}
.y154{bottom:365.475000px;}
.yc0{bottom:368.705267px;}
.ybd{bottom:368.705271px;}
.yb9{bottom:368.705275px;}
.y180{bottom:368.895000px;}
.y12e{bottom:371.055000px;}
.y2e{bottom:372.675000px;}
.y6a{bottom:374.115000px;}
.y1c4{bottom:379.155000px;}
.y1a7{bottom:380.955000px;}
.yee{bottom:381.495000px;}
.y17f{bottom:386.175000px;}
.y153{bottom:386.895000px;}
.y12d{bottom:388.155000px;}
.y2d{bottom:389.955000px;}
.y69{bottom:391.395000px;}
.y1c3{bottom:396.255000px;}
.y1ea{bottom:396.435000px;}
.yed{bottom:399.855000px;}
.y12c{bottom:402.375000px;}
.y17e{bottom:403.455000px;}
.y152{bottom:404.175000px;}
.yaa{bottom:404.806985px;}
.y2c{bottom:407.235000px;}
.y68{bottom:408.675000px;}
.y12b{bottom:409.935000px;}
.y1c2{bottom:413.355000px;}
.y1e9{bottom:413.715000px;}
.y1a6{bottom:414.615000px;}
.yec{bottom:417.135000px;}
.y17d{bottom:420.735000px;}
.y151{bottom:421.455000px;}
.y2b{bottom:424.335000px;}
.y67{bottom:425.955000px;}
.yc4{bottom:429.634234px;}
.y1c1{bottom:430.635000px;}
.y12a{bottom:430.815000px;}
.y1e8{bottom:430.995000px;}
.yeb{bottom:434.415000px;}
.y17c{bottom:438.015000px;}
.y150{bottom:438.735000px;}
.y2a{bottom:441.615000px;}
.y66{bottom:443.235000px;}
.y129{bottom:447.915000px;}
.y1a5{bottom:448.275000px;}
.yea{bottom:451.695000px;}
.y1f7{bottom:455.115000px;}
.y17b{bottom:455.295000px;}
.y14f{bottom:456.015000px;}
.y29{bottom:458.895000px;}
.y65{bottom:460.335000px;}
.y128{bottom:462.135000px;}
.y1c0{bottom:465.195000px;}
.y1e7{bottom:465.375000px;}
.y99{bottom:467.752626px;}
.y127{bottom:469.695000px;}
.y17a{bottom:472.395000px;}
.y14e{bottom:473.295000px;}
.y28{bottom:476.175000px;}
.y64{bottom:477.615000px;}
.y1e6{bottom:481.935000px;}
.y1a4{bottom:482.115000px;}
.ye9{bottom:482.295000px;}
.y1bf{bottom:482.475000px;}
.y9a{bottom:484.385829px;}
.y98{bottom:485.068728px;}
.y179{bottom:489.675000px;}
.y14d{bottom:490.395000px;}
.y126{bottom:490.575000px;}
.y27{bottom:493.455000px;}
.y63{bottom:494.895000px;}
.y1e5{bottom:496.515000px;}
.y1be{bottom:499.755000px;}
.ye8{bottom:500.835000px;}
.y97{bottom:502.339854px;}
.y1f6{bottom:506.775000px;}
.y178{bottom:506.955000px;}
.y125{bottom:507.675000px;}
.y26{bottom:510.735000px;}
.y62{bottom:512.175000px;}
.yab{bottom:512.451415px;}
.yb2{bottom:512.451420px;}
.y1e4{bottom:513.795000px;}
.y1a3{bottom:515.775000px;}
.y1bd{bottom:516.855000px;}
.ye7{bottom:518.115000px;}
.y96{bottom:519.610979px;}
.y1f5{bottom:524.055000px;}
.y177{bottom:524.235000px;}
.y124{bottom:524.955000px;}
.y25{bottom:527.835000px;}
.y61{bottom:529.455000px;}
.y1e3{bottom:530.175000px;}
.y1bc{bottom:534.135000px;}
.ye6{bottom:535.395000px;}
.y95{bottom:536.882105px;}
.y1f4{bottom:541.335000px;}
.y176{bottom:541.515000px;}
.y123{bottom:542.235000px;}
.y1e2{bottom:544.755000px;}
.y24{bottom:545.115000px;}
.y60{bottom:546.735000px;}
.y1a2{bottom:549.615000px;}
.y1bb{bottom:551.415000px;}
.ye5{bottom:552.675000px;}
.ya1{bottom:553.110516px;}
.y94{bottom:553.973323px;}
.y1f3{bottom:558.615000px;}
.y175{bottom:558.795000px;}
.y122{bottom:559.515000px;}
.y1e1{bottom:562.035000px;}
.ya8{bottom:562.285802px;}
.y23{bottom:562.395000px;}
.y5f{bottom:563.835000px;}
.y1a1{bottom:568.695000px;}
.ye4{bottom:569.955000px;}
.y93{bottom:571.274433px;}
.y174{bottom:575.895000px;}
.y121{bottom:576.795000px;}
.y1e0{bottom:578.595000px;}
.y22{bottom:579.675000px;}
.y5e{bottom:581.115000px;}
.y1a0{bottom:585.975000px;}
.y1ba{bottom:586.155000px;}
.ye3{bottom:587.055000px;}
.y92{bottom:589.265189px;}
.yc2{bottom:589.451849px;}
.y1df{bottom:592.995000px;}
.y173{bottom:593.175000px;}
.y14c{bottom:593.895000px;}
.y120{bottom:594.075000px;}
.y21{bottom:596.955000px;}
.y5d{bottom:598.395000px;}
.y19f{bottom:603.075000px;}
.y1b9{bottom:603.435000px;}
.ye2{bottom:605.445000px;}
.y1de{bottom:610.305000px;}
.y172{bottom:610.485000px;}
.y11f{bottom:611.205000px;}
.y20{bottom:614.265000px;}
.y5c{bottom:615.705000px;}
.y1b8{bottom:620.205000px;}
.y19e{bottom:620.385000px;}
.ya5{bottom:622.914649px;}
.ye1{bottom:623.805000px;}
.y1dd{bottom:627.585000px;}
.y171{bottom:627.765000px;}
.y14b{bottom:628.485000px;}
.y11e{bottom:629.565000px;}
.y1f{bottom:631.365000px;}
.y5b{bottom:632.985000px;}
.y1b7{bottom:636.045000px;}
.y19d{bottom:637.665000px;}
.ye0{bottom:642.165000px;}
.y1dc{bottom:644.865000px;}
.y170{bottom:645.045000px;}
.y14a{bottom:645.765000px;}
.y11d{bottom:647.925000px;}
.y1e{bottom:648.465000px;}
.y5a{bottom:650.265000px;}
.y1b6{bottom:653.145000px;}
.y19c{bottom:654.945000px;}
.ydf{bottom:659.445000px;}
.y1db{bottom:662.145000px;}
.y16f{bottom:662.325000px;}
.y149{bottom:663.045000px;}
.y1d{bottom:665.745000px;}
.y59{bottom:667.365000px;}
.y11c{bottom:667.545000px;}
.y1b5{bottom:670.425000px;}
.y19b{bottom:672.225000px;}
.ya3{bottom:676.527101px;}
.yde{bottom:676.545000px;}
.y16e{bottom:679.425000px;}
.y148{bottom:680.325000px;}
.y1c{bottom:683.025000px;}
.y58{bottom:684.645000px;}
.y11b{bottom:686.265000px;}
.y1b4{bottom:687.705000px;}
.ydd{bottom:693.825000px;}
.y1da{bottom:696.525000px;}
.y16d{bottom:696.705000px;}
.y147{bottom:697.425000px;}
.y1b{bottom:699.945000px;}
.y57{bottom:701.925000px;}
.y11a{bottom:703.545000px;}
.y19a{bottom:704.085000px;}
.y1b3{bottom:705.165000px;}
.y9e{bottom:706.211855px;}
.ydc{bottom:711.105000px;}
.y1d9{bottom:713.805000px;}
.y16c{bottom:713.985000px;}
.y1a{bottom:714.165000px;}
.y146{bottom:714.705000px;}
.y56{bottom:719.205000px;}
.y119{bottom:720.645000px;}
.y1b2{bottom:722.445000px;}
.y19{bottom:724.065000px;}
.ydb{bottom:728.385000px;}
.y1d8{bottom:731.085000px;}
.y16b{bottom:731.265000px;}
.y145{bottom:731.985000px;}
.y55{bottom:736.485000px;}
.y199{bottom:737.745000px;}
.y118{bottom:737.925000px;}
.y18{bottom:739.545000px;}
.y1b1{bottom:739.725000px;}
.yda{bottom:745.665000px;}
.y1d7{bottom:748.365000px;}
.y16a{bottom:748.545000px;}
.y144{bottom:749.265000px;}
.y54{bottom:753.765000px;}
.y17{bottom:755.205000px;}
.y117{bottom:755.385000px;}
.yd9{bottom:762.945000px;}
.y8a{bottom:765.285000px;}
.y1d6{bottom:765.645000px;}
.y169{bottom:765.825000px;}
.y143{bottom:766.545000px;}
.y16{bottom:770.685000px;}
.y53{bottom:770.865000px;}
.y198{bottom:771.585000px;}
.y116{bottom:772.845000px;}
.yd8{bottom:780.045000px;}
.y168{bottom:782.925000px;}
.y142{bottom:783.825000px;}
.y15{bottom:786.165000px;}
.y52{bottom:788.145000px;}
.y115{bottom:791.925000px;}
.y89{bottom:795.885000px;}
.yd7{bottom:797.325000px;}
.y1d5{bottom:800.025000px;}
.y167{bottom:800.205000px;}
.y14{bottom:801.645000px;}
.y197{bottom:805.245000px;}
.y51{bottom:805.425000px;}
.y114{bottom:809.385000px;}
.y88{bottom:814.605000px;}
.y141{bottom:815.685000px;}
.y13{bottom:817.305000px;}
.y166{bottom:817.485000px;}
.y50{bottom:822.705000px;}
.y113{bottom:826.665000px;}
.yd6{bottom:831.885000px;}
.y12{bottom:832.785000px;}
.y87{bottom:833.145000px;}
.y1d4{bottom:834.585000px;}
.y140{bottom:834.765000px;}
.y196{bottom:839.085000px;}
.y4f{bottom:839.985000px;}
.y112{bottom:843.945000px;}
.y11{bottom:848.265000px;}
.yd5{bottom:849.165000px;}
.y86{bottom:851.865000px;}
.y13f{bottom:852.045000px;}
.y4e{bottom:857.265000px;}
.y111{bottom:861.225000px;}
.y10{bottom:864.465000px;}
.yd4{bottom:866.445000px;}
.y1d3{bottom:869.145000px;}
.y85{bottom:869.325000px;}
.y195{bottom:872.790000px;}
.y4d{bottom:873.330000px;}
.y110{bottom:878.370000px;}
.yf{bottom:882.150000px;}
.yd3{bottom:883.590000px;}
.y4c{bottom:886.290000px;}
.y84{bottom:886.470000px;}
.ye{bottom:894.570000px;}
.y10f{bottom:895.650000px;}
.yd2{bottom:900.870000px;}
.y83{bottom:903.570000px;}
.y4b{bottom:903.750000px;}
.y194{bottom:906.630000px;}
.y10e{bottom:912.930000px;}
.yd{bottom:917.430000px;}
.yd1{bottom:918.150000px;}
.y82{bottom:920.850000px;}
.y4a{bottom:921.030000px;}
.y10d{bottom:927.150000px;}
.y10b{bottom:933.630000px;}
.yd0{bottom:935.430000px;}
.y81{bottom:938.130000px;}
.y49{bottom:938.310000px;}
.y193{bottom:940.290000px;}
.y10c{bottom:942.990000px;}
.yc{bottom:945.690000px;}
.ycf{bottom:952.710000px;}
.y10a{bottom:955.050000px;}
.y80{bottom:955.410000px;}
.y48{bottom:955.590000px;}
.yce{bottom:969.810000px;}
.y109{bottom:972.330000px;}
.y7f{bottom:972.690000px;}
.y47{bottom:972.870000px;}
.yb{bottom:973.950000px;}
.ycd{bottom:987.090000px;}
.y108{bottom:989.610000px;}
.y7e{bottom:989.790000px;}
.y46{bottom:989.970000px;}
.ycc{bottom:1005.810000px;}
.y107{bottom:1006.710000px;}
.ya{bottom:1006.890000px;}
.y7d{bottom:1007.070000px;}
.y45{bottom:1007.250000px;}
.y192{bottom:1007.790000px;}
.y106{bottom:1023.990000px;}
.y7c{bottom:1024.350000px;}
.y44{bottom:1024.530000px;}
.y105{bottom:1041.270000px;}
.y191{bottom:1041.450000px;}
.y7b{bottom:1041.630000px;}
.y43{bottom:1041.810000px;}
.y9{bottom:1049.010000px;}
.y104{bottom:1058.730000px;}
.ycb{bottom:1058.910000px;}
.y42{bottom:1059.090000px;}
.y190{bottom:1075.290000px;}
.yca{bottom:1076.190000px;}
.y41{bottom:1076.370000px;}
.y8{bottom:1090.950000px;}
.yc9{bottom:1093.290000px;}
.y40{bottom:1093.470000px;}
.y18f{bottom:1108.950000px;}
.yc8{bottom:1110.570000px;}
.y3f{bottom:1110.750000px;}
.y5{bottom:1140.120000px;}
.y4{bottom:1160.280000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.360000px;}
.h29{height:17.280000px;}
.h2a{height:17.316000px;}
.hd{height:27.109688px;}
.h18{height:28.605307px;}
.h19{height:28.785214px;}
.h1b{height:29.449321px;}
.h16{height:29.504844px;}
.h20{height:29.550871px;}
.ha{height:32.273438px;}
.h14{height:34.019043px;}
.h1d{height:34.120593px;}
.hc{height:34.855313px;}
.h24{height:35.479687px;}
.h1a{height:39.039945px;}
.h1c{height:39.939482px;}
.h13{height:39.939483px;}
.h1f{height:40.119388px;}
.he{height:42.164648px;}
.h2b{height:43.246406px;}
.h3{height:43.681992px;}
.h8{height:48.410156px;}
.h5{height:48.774375px;}
.h27{height:50.772656px;}
.h12{height:53.546392px;}
.hf{height:53.573906px;}
.hb{height:56.801250px;}
.h21{height:57.799688px;}
.h2{height:59.383125px;}
.h4{height:63.070312px;}
.h11{height:64.513726px;}
.h6{height:65.884219px;}
.h25{height:66.533906px;}
.h22{height:70.759687px;}
.h28{height:79.493906px;}
.h23{height:83.172656px;}
.h26{height:83.813906px;}
.h1e{height:87.255178px;}
.h9{height:96.820312px;}
.h7{height:105.665625px;}
.h17{height:182.606177px;}
.h10{height:574.132983px;}
.h15{height:574.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:56.340000px;}
.wd{width:65.468413px;}
.wb{width:65.648271px;}
.wc{width:72.662744px;}
.w14{width:73.476000px;}
.w12{width:75.060000px;}
.w11{width:77.076000px;}
.w7{width:86.871548px;}
.w9{width:93.346445px;}
.wf{width:95.324887px;}
.w5{width:96.943611px;}
.w4{width:108.634399px;}
.w8{width:113.490572px;}
.we{width:119.425895px;}
.w6{width:130.397255px;}
.w10{width:167.070000px;}
.wa{width:256.657760px;}
.w3{width:437.535000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.633176px;}
.x24{left:12.086476px;}
.x1a{left:13.885059px;}
.x1d{left:15.362895px;}
.x1e{left:17.341336px;}
.x17{left:19.139918px;}
.x35{left:23.777264px;}
.x20{left:26.873825px;}
.x1b{left:29.173013px;}
.x27{left:31.729998px;}
.x30{left:32.809147px;}
.x29{left:35.507022px;}
.x21{left:36.766029px;}
.x1f{left:38.204895px;}
.x2b{left:42.191754px;}
.x38{left:47.767360px;}
.x6{left:63.899987px;}
.x2e{left:77.054283px;}
.x50{left:78.479987px;}
.x4f{left:82.079987px;}
.x11{left:85.139987px;}
.xd{left:87.839987px;}
.x42{left:90.935987px;}
.x8{left:94.175987px;}
.x7{left:99.035987px;}
.x10{left:100.475987px;}
.xf{left:104.615987px;}
.xe{left:108.755987px;}
.x3e{left:113.075987px;}
.x3a{left:117.935987px;}
.x3c{left:125.495987px;}
.x36{left:142.303851px;}
.x25{left:144.821870px;}
.x40{left:146.915987px;}
.x41{left:147.995987px;}
.x4b{left:153.209987px;}
.x3b{left:164.369987px;}
.xb{left:167.069987px;}
.x3f{left:168.869987px;}
.x3d{left:170.669987px;}
.xc{left:180.029987px;}
.x1{left:183.449987px;}
.x31{left:189.825412px;}
.x45{left:209.009987px;}
.x28{left:216.444441px;}
.x2{left:223.409987px;}
.x46{left:227.370000px;}
.x14{left:233.025000px;}
.x43{left:242.849987px;}
.x44{left:248.609987px;}
.x4e{left:266.789987px;}
.x22{left:271.481062px;}
.x4d{left:286.454987px;}
.x18{left:287.668309px;}
.x2c{left:289.107186px;}
.x4c{left:298.334987px;}
.x13{left:312.194987px;}
.x4a{left:317.054987px;}
.x19{left:334.644905px;}
.x39{left:336.979461px;}
.x23{left:350.292581px;}
.x3{left:352.874987px;}
.x34{left:360.900607px;}
.x4{left:364.754987px;}
.x9{left:380.954987px;}
.x47{left:394.455000px;}
.x2d{left:400.832760px;}
.x2f{left:409.286100px;}
.x26{left:417.020010px;}
.xa{left:452.054987px;}
.x1c{left:472.416343px;}
.x16{left:482.488413px;}
.x32{left:487.164733px;}
.x5{left:494.744987px;}
.x2a{left:501.553401px;}
.x48{left:546.585000px;}
.x37{left:550.294990px;}
.x33{left:574.395995px;}
.x49{left:602.925000px;}
.x12{left:670.649987px;}
@media print{
.v5{vertical-align:-10.880000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v2{vertical-align:19.840000pt;}
.v8{vertical-align:23.040000pt;}
.v7{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.v3{vertical-align:31.360000pt;}
.lsb{letter-spacing:-2.016000pt;}
.ls15{letter-spacing:-1.877333pt;}
.ls13{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.239467pt;}
.ls21{letter-spacing:-0.229333pt;}
.ls2e{letter-spacing:-0.197333pt;}
.ls2c{letter-spacing:-0.067733pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls2a{letter-spacing:0.061333pt;}
.ls11{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.183467pt;}
.ls32{letter-spacing:0.183680pt;}
.ls2d{letter-spacing:0.248533pt;}
.ls34{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.272640pt;}
.ls5{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.456533pt;}
.ls2b{letter-spacing:0.496640pt;}
.ls19{letter-spacing:1.132160pt;}
.lsa{letter-spacing:1.184000pt;}
.ls8{letter-spacing:1.232000pt;}
.ls4{letter-spacing:1.413120pt;}
.ls2{letter-spacing:1.413333pt;}
.ls1{letter-spacing:1.511040pt;}
.ls1d{letter-spacing:1.564800pt;}
.ls18{letter-spacing:1.772160pt;}
.ls9{letter-spacing:1.824000pt;}
.ls3{letter-spacing:1.866667pt;}
.ls0{letter-spacing:1.872640pt;}
.ls1c{letter-spacing:2.088320pt;}
.ls22{letter-spacing:2.187520pt;}
.ls17{letter-spacing:2.503040pt;}
.ls23{letter-spacing:2.827520pt;}
.ls27{letter-spacing:3.142400pt;}
.ls20{letter-spacing:3.296000pt;}
.ls25{letter-spacing:3.429120pt;}
.ls29{letter-spacing:3.467520pt;}
.ls28{letter-spacing:3.610880pt;}
.ls1b{letter-spacing:3.936000pt;}
.ls24{letter-spacing:8.950400pt;}
.ls1e{letter-spacing:9.189120pt;}
.ls26{letter-spacing:18.330880pt;}
.ls35{letter-spacing:36.432640pt;}
.ls33{letter-spacing:50.512640pt;}
.ls16{letter-spacing:56.912640pt;}
.ls1f{letter-spacing:78.177920pt;}
.lse{letter-spacing:81.232640pt;}
.ls1a{letter-spacing:178.720000pt;}
.ws1d{word-spacing:-62.070400pt;}
.wsf{word-spacing:-53.120000pt;}
.ws15{word-spacing:-42.880640pt;}
.ws23{word-spacing:-41.600640pt;}
.ws1a{word-spacing:-40.981973pt;}
.ws14{word-spacing:-40.960640pt;}
.ws2b{word-spacing:-40.948480pt;}
.ws11{word-spacing:-38.400640pt;}
.ws19{word-spacing:-38.114560pt;}
.ws20{word-spacing:-37.760640pt;}
.ws1c{word-spacing:-37.632640pt;}
.ws27{word-spacing:-37.368533pt;}
.ws25{word-spacing:-37.181333pt;}
.ws12{word-spacing:-37.120000pt;}
.ws24{word-spacing:-37.052267pt;}
.ws28{word-spacing:-36.922667pt;}
.ws17{word-spacing:-36.890667pt;}
.ws29{word-spacing:-36.744533pt;}
.ws26{word-spacing:-36.653653pt;}
.ws2a{word-spacing:-35.970560pt;}
.ws6{word-spacing:-33.280000pt;}
.ws1b{word-spacing:-32.000000pt;}
.ws13{word-spacing:-23.084800pt;}
.ws22{word-spacing:-21.307733pt;}
.ws21{word-spacing:-21.181760pt;}
.ws10{word-spacing:-19.756800pt;}
.ws1f{word-spacing:-18.656000pt;}
.ws0{word-spacing:-16.591360pt;}
.ws1{word-spacing:-15.951360pt;}
.ws7{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.871787pt;}
.wse{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws2e{word-spacing:-13.545600pt;}
.ws2c{word-spacing:-13.463467pt;}
.ws2d{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws2f{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.751360pt;}
.wsc{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.005120pt;}
.ws9{word-spacing:-10.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws16{word-spacing:24.860587pt;}
.ws1e{word-spacing:107.126187pt;}
.ws18{word-spacing:362.486187pt;}
._17{margin-left:-179.323307pt;}
._16{margin-left:-178.133973pt;}
._19{margin-left:-110.830720pt;}
._15{margin-left:-109.274453pt;}
._18{margin-left:-22.256640pt;}
._1e{margin-left:-16.236800pt;}
._1d{margin-left:-9.370667pt;}
._1c{margin-left:-8.141013pt;}
._1b{margin-left:-6.994773pt;}
._7{margin-left:-6.050560pt;}
._29{margin-left:-5.144533pt;}
._f{margin-left:-3.771520pt;}
._4{margin-left:-2.872533pt;}
._3{margin-left:-1.913600pt;}
._8{margin-left:-0.998400pt;}
._0{width:1.221760pt;}
._1{width:2.681600pt;}
._2{width:4.128427pt;}
._9{width:5.184000pt;}
._c{width:6.288000pt;}
._a{width:7.728000pt;}
._12{width:8.634880pt;}
._b{width:9.625173pt;}
._e{width:10.867200pt;}
._d{width:12.044800pt;}
._27{width:14.679040pt;}
._10{width:15.723520pt;}
._11{width:16.839040pt;}
._2a{width:18.172587pt;}
._28{width:20.290987pt;}
._13{width:21.358507pt;}
._2b{width:36.918400pt;}
._6{width:38.635947pt;}
._2e{width:40.105600pt;}
._14{width:46.566400pt;}
._23{width:53.384960pt;}
._25{width:54.696747pt;}
._24{width:67.264640pt;}
._2c{width:73.199360pt;}
._1a{width:81.592960pt;}
._2d{width:82.760320pt;}
._21{width:93.118080pt;}
._1f{width:95.009707pt;}
._20{width:97.355947pt;}
._22{width:104.249600pt;}
._26{width:140.743467pt;}
._5{width:178.720000pt;}
.fsa{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fsf{font-size:37.100936pt;}
.fsb{font-size:37.120000pt;}
.fs11{font-size:37.228871pt;}
.fse{font-size:42.857978pt;}
.fs3{font-size:42.880000pt;}
.fs10{font-size:42.985913pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fsd{font-size:53.092719pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:63.967132pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:0.582371pt;}
.ya7{bottom:2.945157pt;}
.y155{bottom:3.040000pt;}
.ya0{bottom:3.944643pt;}
.ybc{bottom:5.290617pt;}
.ybf{bottom:12.966673pt;}
.ya6{bottom:15.258829pt;}
.ya4{bottom:15.458727pt;}
.y9f{bottom:16.258316pt;}
.yb6{bottom:20.361526pt;}
.y7{bottom:22.720000pt;}
.yaf{bottom:25.081782pt;}
.yc6{bottom:25.241699pt;}
.ybe{bottom:25.280345pt;}
.y9b{bottom:25.307000pt;}
.yb5{bottom:25.370300pt;}
.yac{bottom:25.466917pt;}
.yc3{bottom:25.493571pt;}
.ya9{bottom:25.973324pt;}
.yba{bottom:26.719605pt;}
.y6{bottom:40.800000pt;}
.yb8{bottom:67.178822pt;}
.y165{bottom:79.232000pt;}
.y90{bottom:81.312000pt;}
.y3e{bottom:85.952000pt;}
.y13e{bottom:86.592000pt;}
.y7a{bottom:87.232000pt;}
.yc7{bottom:89.925779pt;}
.y103{bottom:91.392000pt;}
.y1d2{bottom:91.552000pt;}
.yb0{bottom:91.684881pt;}
.y164{bottom:94.592000pt;}
.y8f{bottom:96.672000pt;}
.y18e{bottom:96.992000pt;}
.y1b0{bottom:97.952000pt;}
.y3d{bottom:101.152000pt;}
.y13d{bottom:101.952000pt;}
.y79{bottom:102.592000pt;}
.y102{bottom:106.752000pt;}
.y1d1{bottom:106.912000pt;}
.y1f2{bottom:107.072000pt;}
.y163{bottom:109.952000pt;}
.y8e{bottom:112.032000pt;}
.y1af{bottom:114.912000pt;}
.y3c{bottom:116.512000pt;}
.y13c{bottom:117.312000pt;}
.y78{bottom:117.952000pt;}
.y101{bottom:121.952000pt;}
.y1d0{bottom:122.272000pt;}
.y1f1{bottom:122.432000pt;}
.y162{bottom:125.312000pt;}
.y18d{bottom:126.912000pt;}
.y8d{bottom:127.392000pt;}
.y1ae{bottom:130.272000pt;}
.y3b{bottom:131.872000pt;}
.y13b{bottom:132.672000pt;}
.y77{bottom:133.152000pt;}
.y100{bottom:137.306667pt;}
.y1cf{bottom:137.626667pt;}
.y1f0{bottom:137.786667pt;}
.y161{bottom:140.666667pt;}
.y8c{bottom:142.586667pt;}
.y18c{bottom:143.866667pt;}
.y3a{bottom:147.226667pt;}
.y13a{bottom:148.026667pt;}
.y76{bottom:148.506667pt;}
.ya2{bottom:152.188472pt;}
.yff{bottom:152.666667pt;}
.y1ce{bottom:152.986667pt;}
.y8b{bottom:155.066667pt;}
.y9c{bottom:155.240000pt;}
.y91{bottom:155.259570pt;}
.y160{bottom:155.866667pt;}
.y1ad{bottom:158.586667pt;}
.y18b{bottom:159.226667pt;}
.yb4{bottom:162.544898pt;}
.y39{bottom:162.586667pt;}
.y139{bottom:163.226667pt;}
.y75{bottom:163.866667pt;}
.yfe{bottom:165.146667pt;}
.y1cd{bottom:168.346667pt;}
.y15f{bottom:171.226667pt;}
.yfd{bottom:171.866667pt;}
.y18a{bottom:174.586667pt;}
.y38{bottom:177.946667pt;}
.y138{bottom:178.266667pt;}
.y74{bottom:179.226667pt;}
.y1cc{bottom:183.546667pt;}
.y1ef{bottom:183.706667pt;}
.yc1{bottom:185.464688pt;}
.y15e{bottom:186.586667pt;}
.ybb{bottom:188.503133pt;}
.y1ac{bottom:188.666667pt;}
.y189{bottom:189.946667pt;}
.yfc{bottom:191.226667pt;}
.y137{bottom:192.346667pt;}
.y37{bottom:193.146667pt;}
.y73{bottom:194.586667pt;}
.y1cb{bottom:198.906667pt;}
.y1ee{bottom:199.066667pt;}
.y15d{bottom:201.946667pt;}
.y188{bottom:205.306667pt;}
.yfb{bottom:206.586667pt;}
.y136{bottom:207.546667pt;}
.y36{bottom:208.506667pt;}
.y72{bottom:209.946667pt;}
.y1ca{bottom:214.266667pt;}
.y1ed{bottom:214.426667pt;}
.y15c{bottom:217.306667pt;}
.y1ab{bottom:218.586667pt;}
.y187{bottom:220.666667pt;}
.yfa{bottom:221.946667pt;}
.y135{bottom:222.906667pt;}
.y35{bottom:223.866667pt;}
.y71{bottom:225.146667pt;}
.y1c9{bottom:229.626667pt;}
.yc5{bottom:232.269736pt;}
.y15b{bottom:232.666667pt;}
.yae{bottom:234.028837pt;}
.yf5{bottom:234.426667pt;}
.yf7{bottom:235.386667pt;}
.y186{bottom:235.866667pt;}
.yf9{bottom:238.266667pt;}
.y34{bottom:239.226667pt;}
.y70{bottom:240.506667pt;}
.yf4{bottom:241.146667pt;}
.y1c8{bottom:244.986667pt;}
.yf8{bottom:246.266667pt;}
.y15a{bottom:247.866667pt;}
.y1aa{bottom:248.506667pt;}
.yf6{bottom:249.466667pt;}
.y134{bottom:250.746667pt;}
.y185{bottom:251.226667pt;}
.y33{bottom:254.586667pt;}
.y6f{bottom:255.866667pt;}
.y133{bottom:257.466667pt;}
.yf3{bottom:260.346667pt;}
.y159{bottom:260.826667pt;}
.y184{bottom:266.586667pt;}
.y32{bottom:269.946667pt;}
.y6e{bottom:271.226667pt;}
.yf2{bottom:275.546667pt;}
.y1ec{bottom:275.706667pt;}
.y132{bottom:276.666667pt;}
.y158{bottom:276.826667pt;}
.y1a9{bottom:278.586667pt;}
.y183{bottom:281.946667pt;}
.y31{bottom:285.146667pt;}
.y6d{bottom:286.586667pt;}
.y9d{bottom:288.318508pt;}
.y1c7{bottom:290.906667pt;}
.yf1{bottom:291.066667pt;}
.y131{bottom:291.866667pt;}
.y157{bottom:292.826667pt;}
.y182{bottom:297.306667pt;}
.y30{bottom:300.546667pt;}
.y6c{bottom:301.986667pt;}
.y130{bottom:304.546667pt;}
.y1c6{bottom:306.306667pt;}
.y1eb{bottom:306.466667pt;}
.yf0{bottom:307.426667pt;}
.y1a8{bottom:308.546667pt;}
.y156{bottom:308.866667pt;}
.yb7{bottom:310.466889pt;}
.y12f{bottom:311.266667pt;}
.y181{bottom:312.706667pt;}
.yad{bottom:313.425613pt;}
.yb3{bottom:313.425618pt;}
.y2f{bottom:315.906667pt;}
.y6b{bottom:317.186667pt;}
.y1c5{bottom:321.666667pt;}
.yef{bottom:322.786667pt;}
.y154{bottom:324.866667pt;}
.yc0{bottom:327.738015pt;}
.ybd{bottom:327.738018pt;}
.yb9{bottom:327.738022pt;}
.y180{bottom:327.906667pt;}
.y12e{bottom:329.826667pt;}
.y2e{bottom:331.266667pt;}
.y6a{bottom:332.546667pt;}
.y1c4{bottom:337.026667pt;}
.y1a7{bottom:338.626667pt;}
.yee{bottom:339.106667pt;}
.y17f{bottom:343.266667pt;}
.y153{bottom:343.906667pt;}
.y12d{bottom:345.026667pt;}
.y2d{bottom:346.626667pt;}
.y69{bottom:347.906667pt;}
.y1c3{bottom:352.226667pt;}
.y1ea{bottom:352.386667pt;}
.yed{bottom:355.426667pt;}
.y12c{bottom:357.666667pt;}
.y17e{bottom:358.626667pt;}
.y152{bottom:359.266667pt;}
.yaa{bottom:359.828431pt;}
.y2c{bottom:361.986667pt;}
.y68{bottom:363.266667pt;}
.y12b{bottom:364.386667pt;}
.y1c2{bottom:367.426667pt;}
.y1e9{bottom:367.746667pt;}
.y1a6{bottom:368.546667pt;}
.yec{bottom:370.786667pt;}
.y17d{bottom:373.986667pt;}
.y151{bottom:374.626667pt;}
.y2b{bottom:377.186667pt;}
.y67{bottom:378.626667pt;}
.yc4{bottom:381.897097pt;}
.y1c1{bottom:382.786667pt;}
.y12a{bottom:382.946667pt;}
.y1e8{bottom:383.106667pt;}
.yeb{bottom:386.146667pt;}
.y17c{bottom:389.346667pt;}
.y150{bottom:389.986667pt;}
.y2a{bottom:392.546667pt;}
.y66{bottom:393.986667pt;}
.y129{bottom:398.146667pt;}
.y1a5{bottom:398.466667pt;}
.yea{bottom:401.506667pt;}
.y1f7{bottom:404.546667pt;}
.y17b{bottom:404.706667pt;}
.y14f{bottom:405.346667pt;}
.y29{bottom:407.906667pt;}
.y65{bottom:409.186667pt;}
.y128{bottom:410.786667pt;}
.y1c0{bottom:413.506667pt;}
.y1e7{bottom:413.666667pt;}
.y99{bottom:415.780112pt;}
.y127{bottom:417.506667pt;}
.y17a{bottom:419.906667pt;}
.y14e{bottom:420.706667pt;}
.y28{bottom:423.266667pt;}
.y64{bottom:424.546667pt;}
.y1e6{bottom:428.386667pt;}
.y1a4{bottom:428.546667pt;}
.ye9{bottom:428.706667pt;}
.y1bf{bottom:428.866667pt;}
.y9a{bottom:430.565181pt;}
.y98{bottom:431.172203pt;}
.y179{bottom:435.266667pt;}
.y14d{bottom:435.906667pt;}
.y126{bottom:436.066667pt;}
.y27{bottom:438.626667pt;}
.y63{bottom:439.906667pt;}
.y1e5{bottom:441.346667pt;}
.y1be{bottom:444.226667pt;}
.ye8{bottom:445.186667pt;}
.y97{bottom:446.524315pt;}
.y1f6{bottom:450.466667pt;}
.y178{bottom:450.626667pt;}
.y125{bottom:451.266667pt;}
.y26{bottom:453.986667pt;}
.y62{bottom:455.266667pt;}
.yab{bottom:455.512369pt;}
.yb2{bottom:455.512374pt;}
.y1e4{bottom:456.706667pt;}
.y1a3{bottom:458.466667pt;}
.y1bd{bottom:459.426667pt;}
.ye7{bottom:460.546667pt;}
.y96{bottom:461.876426pt;}
.y1f5{bottom:465.826667pt;}
.y177{bottom:465.986667pt;}
.y124{bottom:466.626667pt;}
.y25{bottom:469.186667pt;}
.y61{bottom:470.626667pt;}
.y1e3{bottom:471.266667pt;}
.y1bc{bottom:474.786667pt;}
.ye6{bottom:475.906667pt;}
.y95{bottom:477.228538pt;}
.y1f4{bottom:481.186667pt;}
.y176{bottom:481.346667pt;}
.y123{bottom:481.986667pt;}
.y1e2{bottom:484.226667pt;}
.y24{bottom:484.546667pt;}
.y60{bottom:485.986667pt;}
.y1a2{bottom:488.546667pt;}
.y1bb{bottom:490.146667pt;}
.ye5{bottom:491.266667pt;}
.ya1{bottom:491.653792pt;}
.y94{bottom:492.420732pt;}
.y1f3{bottom:496.546667pt;}
.y175{bottom:496.706667pt;}
.y122{bottom:497.346667pt;}
.y1e1{bottom:499.586667pt;}
.ya8{bottom:499.809601pt;}
.y23{bottom:499.906667pt;}
.y5f{bottom:501.186667pt;}
.y1a1{bottom:505.506667pt;}
.ye4{bottom:506.626667pt;}
.y93{bottom:507.799496pt;}
.y174{bottom:511.906667pt;}
.y121{bottom:512.706667pt;}
.y1e0{bottom:514.306667pt;}
.y22{bottom:515.266667pt;}
.y5e{bottom:516.546667pt;}
.y1a0{bottom:520.866667pt;}
.y1ba{bottom:521.026667pt;}
.ye3{bottom:521.826667pt;}
.y92{bottom:523.791279pt;}
.yc2{bottom:523.957199pt;}
.y1df{bottom:527.106667pt;}
.y173{bottom:527.266667pt;}
.y14c{bottom:527.906667pt;}
.y120{bottom:528.066667pt;}
.y21{bottom:530.626667pt;}
.y5d{bottom:531.906667pt;}
.y19f{bottom:536.066667pt;}
.y1b9{bottom:536.386667pt;}
.ye2{bottom:538.173333pt;}
.y1de{bottom:542.493333pt;}
.y172{bottom:542.653333pt;}
.y11f{bottom:543.293333pt;}
.y20{bottom:546.013333pt;}
.y5c{bottom:547.293333pt;}
.y1b8{bottom:551.293333pt;}
.y19e{bottom:551.453333pt;}
.ya5{bottom:553.701910pt;}
.ye1{bottom:554.493333pt;}
.y1dd{bottom:557.853333pt;}
.y171{bottom:558.013333pt;}
.y14b{bottom:558.653333pt;}
.y11e{bottom:559.613333pt;}
.y1f{bottom:561.213333pt;}
.y5b{bottom:562.653333pt;}
.y1b7{bottom:565.373333pt;}
.y19d{bottom:566.813333pt;}
.ye0{bottom:570.813333pt;}
.y1dc{bottom:573.213333pt;}
.y170{bottom:573.373333pt;}
.y14a{bottom:574.013333pt;}
.y11d{bottom:575.933333pt;}
.y1e{bottom:576.413333pt;}
.y5a{bottom:578.013333pt;}
.y1b6{bottom:580.573333pt;}
.y19c{bottom:582.173333pt;}
.ydf{bottom:586.173333pt;}
.y1db{bottom:588.573333pt;}
.y16f{bottom:588.733333pt;}
.y149{bottom:589.373333pt;}
.y1d{bottom:591.773333pt;}
.y59{bottom:593.213333pt;}
.y11c{bottom:593.373333pt;}
.y1b5{bottom:595.933333pt;}
.y19b{bottom:597.533333pt;}
.ya3{bottom:601.357423pt;}
.yde{bottom:601.373333pt;}
.y16e{bottom:603.933333pt;}
.y148{bottom:604.733333pt;}
.y1c{bottom:607.133333pt;}
.y58{bottom:608.573333pt;}
.y11b{bottom:610.013333pt;}
.y1b4{bottom:611.293333pt;}
.ydd{bottom:616.733333pt;}
.y1da{bottom:619.133333pt;}
.y16d{bottom:619.293333pt;}
.y147{bottom:619.933333pt;}
.y1b{bottom:622.173333pt;}
.y57{bottom:623.933333pt;}
.y11a{bottom:625.373333pt;}
.y19a{bottom:625.853333pt;}
.y1b3{bottom:626.813333pt;}
.y9e{bottom:627.743871pt;}
.ydc{bottom:632.093333pt;}
.y1d9{bottom:634.493333pt;}
.y16c{bottom:634.653333pt;}
.y1a{bottom:634.813333pt;}
.y146{bottom:635.293333pt;}
.y56{bottom:639.293333pt;}
.y119{bottom:640.573333pt;}
.y1b2{bottom:642.173333pt;}
.y19{bottom:643.613333pt;}
.ydb{bottom:647.453333pt;}
.y1d8{bottom:649.853333pt;}
.y16b{bottom:650.013333pt;}
.y145{bottom:650.653333pt;}
.y55{bottom:654.653333pt;}
.y199{bottom:655.773333pt;}
.y118{bottom:655.933333pt;}
.y18{bottom:657.373333pt;}
.y1b1{bottom:657.533333pt;}
.yda{bottom:662.813333pt;}
.y1d7{bottom:665.213333pt;}
.y16a{bottom:665.373333pt;}
.y144{bottom:666.013333pt;}
.y54{bottom:670.013333pt;}
.y17{bottom:671.293333pt;}
.y117{bottom:671.453333pt;}
.yd9{bottom:678.173333pt;}
.y8a{bottom:680.253333pt;}
.y1d6{bottom:680.573333pt;}
.y169{bottom:680.733333pt;}
.y143{bottom:681.373333pt;}
.y16{bottom:685.053333pt;}
.y53{bottom:685.213333pt;}
.y198{bottom:685.853333pt;}
.y116{bottom:686.973333pt;}
.yd8{bottom:693.373333pt;}
.y168{bottom:695.933333pt;}
.y142{bottom:696.733333pt;}
.y15{bottom:698.813333pt;}
.y52{bottom:700.573333pt;}
.y115{bottom:703.933333pt;}
.y89{bottom:707.453333pt;}
.yd7{bottom:708.733333pt;}
.y1d5{bottom:711.133333pt;}
.y167{bottom:711.293333pt;}
.y14{bottom:712.573333pt;}
.y197{bottom:715.773333pt;}
.y51{bottom:715.933333pt;}
.y114{bottom:719.453333pt;}
.y88{bottom:724.093333pt;}
.y141{bottom:725.053333pt;}
.y13{bottom:726.493333pt;}
.y166{bottom:726.653333pt;}
.y50{bottom:731.293333pt;}
.y113{bottom:734.813333pt;}
.yd6{bottom:739.453333pt;}
.y12{bottom:740.253333pt;}
.y87{bottom:740.573333pt;}
.y1d4{bottom:741.853333pt;}
.y140{bottom:742.013333pt;}
.y196{bottom:745.853333pt;}
.y4f{bottom:746.653333pt;}
.y112{bottom:750.173333pt;}
.y11{bottom:754.013333pt;}
.yd5{bottom:754.813333pt;}
.y86{bottom:757.213333pt;}
.y13f{bottom:757.373333pt;}
.y4e{bottom:762.013333pt;}
.y111{bottom:765.533333pt;}
.y10{bottom:768.413333pt;}
.yd4{bottom:770.173333pt;}
.y1d3{bottom:772.573333pt;}
.y85{bottom:772.733333pt;}
.y195{bottom:775.813333pt;}
.y4d{bottom:776.293333pt;}
.y110{bottom:780.773333pt;}
.yf{bottom:784.133333pt;}
.yd3{bottom:785.413333pt;}
.y4c{bottom:787.813333pt;}
.y84{bottom:787.973333pt;}
.ye{bottom:795.173333pt;}
.y10f{bottom:796.133333pt;}
.yd2{bottom:800.773333pt;}
.y83{bottom:803.173333pt;}
.y4b{bottom:803.333333pt;}
.y194{bottom:805.893333pt;}
.y10e{bottom:811.493333pt;}
.yd{bottom:815.493333pt;}
.yd1{bottom:816.133333pt;}
.y82{bottom:818.533333pt;}
.y4a{bottom:818.693333pt;}
.y10d{bottom:824.133333pt;}
.y10b{bottom:829.893333pt;}
.yd0{bottom:831.493333pt;}
.y81{bottom:833.893333pt;}
.y49{bottom:834.053333pt;}
.y193{bottom:835.813333pt;}
.y10c{bottom:838.213333pt;}
.yc{bottom:840.613333pt;}
.ycf{bottom:846.853333pt;}
.y10a{bottom:848.933333pt;}
.y80{bottom:849.253333pt;}
.y48{bottom:849.413333pt;}
.yce{bottom:862.053333pt;}
.y109{bottom:864.293333pt;}
.y7f{bottom:864.613333pt;}
.y47{bottom:864.773333pt;}
.yb{bottom:865.733333pt;}
.ycd{bottom:877.413333pt;}
.y108{bottom:879.653333pt;}
.y7e{bottom:879.813333pt;}
.y46{bottom:879.973333pt;}
.ycc{bottom:894.053333pt;}
.y107{bottom:894.853333pt;}
.ya{bottom:895.013333pt;}
.y7d{bottom:895.173333pt;}
.y45{bottom:895.333333pt;}
.y192{bottom:895.813333pt;}
.y106{bottom:910.213333pt;}
.y7c{bottom:910.533333pt;}
.y44{bottom:910.693333pt;}
.y105{bottom:925.573333pt;}
.y191{bottom:925.733333pt;}
.y7b{bottom:925.893333pt;}
.y43{bottom:926.053333pt;}
.y9{bottom:932.453333pt;}
.y104{bottom:941.093333pt;}
.ycb{bottom:941.253333pt;}
.y42{bottom:941.413333pt;}
.y190{bottom:955.813333pt;}
.yca{bottom:956.613333pt;}
.y41{bottom:956.773333pt;}
.y8{bottom:969.733333pt;}
.yc9{bottom:971.813333pt;}
.y40{bottom:971.973333pt;}
.y18f{bottom:985.733333pt;}
.yc8{bottom:987.173333pt;}
.y3f{bottom:987.333333pt;}
.y5{bottom:1013.440000pt;}
.y4{bottom:1031.360000pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.320000pt;}
.h29{height:15.360000pt;}
.h2a{height:15.392000pt;}
.hd{height:24.097500pt;}
.h18{height:25.426939pt;}
.h19{height:25.586857pt;}
.h1b{height:26.177174pt;}
.h16{height:26.226528pt;}
.h20{height:26.267440pt;}
.ha{height:28.687500pt;}
.h14{height:30.239150pt;}
.h1d{height:30.329416pt;}
.hc{height:30.982500pt;}
.h24{height:31.537500pt;}
.h1a{height:34.702173pt;}
.h1c{height:35.501762pt;}
.h13{height:35.501763pt;}
.h1f{height:35.661679pt;}
.he{height:37.479688pt;}
.h2b{height:38.441250pt;}
.h3{height:38.828437pt;}
.h8{height:43.031250pt;}
.h5{height:43.355000pt;}
.h27{height:45.131250pt;}
.h12{height:47.596793pt;}
.hf{height:47.621250pt;}
.hb{height:50.490000pt;}
.h21{height:51.377500pt;}
.h2{height:52.785000pt;}
.h4{height:56.062500pt;}
.h11{height:57.345534pt;}
.h6{height:58.563750pt;}
.h25{height:59.141250pt;}
.h22{height:62.897500pt;}
.h28{height:70.661250pt;}
.h23{height:73.931250pt;}
.h26{height:74.501250pt;}
.h1e{height:77.560158pt;}
.h9{height:86.062500pt;}
.h7{height:93.925000pt;}
.h17{height:162.316602pt;}
.h10{height:510.340430pt;}
.h15{height:510.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:50.080000pt;}
.wd{width:58.194145pt;}
.wb{width:58.354019pt;}
.wc{width:64.589106pt;}
.w14{width:65.312000pt;}
.w12{width:66.720000pt;}
.w11{width:68.512000pt;}
.w7{width:77.219153pt;}
.w9{width:82.974618pt;}
.wf{width:84.733232pt;}
.w5{width:86.172098pt;}
.w4{width:96.563910pt;}
.w8{width:100.880509pt;}
.we{width:106.156351pt;}
.w6{width:115.908671pt;}
.w10{width:148.506667pt;}
.wa{width:228.140231pt;}
.w3{width:388.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.673934pt;}
.x24{left:10.743535pt;}
.x1a{left:12.342275pt;}
.x1d{left:13.655906pt;}
.x1e{left:15.414521pt;}
.x17{left:17.013261pt;}
.x35{left:21.135346pt;}
.x20{left:23.887844pt;}
.x1b{left:25.931567pt;}
.x27{left:28.204442pt;}
.x30{left:29.163686pt;}
.x29{left:31.561798pt;}
.x21{left:32.680915pt;}
.x1f{left:33.959907pt;}
.x2b{left:37.503781pt;}
.x38{left:42.459876pt;}
.x6{left:56.799988pt;}
.x2e{left:68.492696pt;}
.x50{left:69.759988pt;}
.x4f{left:72.959988pt;}
.x11{left:75.679988pt;}
.xd{left:78.079988pt;}
.x42{left:80.831988pt;}
.x8{left:83.711988pt;}
.x7{left:88.031988pt;}
.x10{left:89.311988pt;}
.xf{left:92.991988pt;}
.xe{left:96.671988pt;}
.x3e{left:100.511988pt;}
.x3a{left:104.831988pt;}
.x3c{left:111.551988pt;}
.x36{left:126.492312pt;}
.x25{left:128.730551pt;}
.x40{left:130.591988pt;}
.x41{left:131.551988pt;}
.x4b{left:136.186655pt;}
.x3b{left:146.106655pt;}
.xb{left:148.506655pt;}
.x3f{left:150.106655pt;}
.x3d{left:151.706655pt;}
.xc{left:160.026655pt;}
.x1{left:163.066655pt;}
.x31{left:168.733700pt;}
.x45{left:185.786655pt;}
.x28{left:192.395058pt;}
.x2{left:198.586655pt;}
.x46{left:202.106667pt;}
.x14{left:207.133333pt;}
.x43{left:215.866655pt;}
.x44{left:220.986655pt;}
.x4e{left:237.146655pt;}
.x22{left:241.316499pt;}
.x4d{left:254.626655pt;}
.x18{left:255.705164pt;}
.x2c{left:256.984165pt;}
.x4c{left:265.186655pt;}
.x13{left:277.506655pt;}
.x4a{left:281.826655pt;}
.x19{left:297.462138pt;}
.x39{left:299.537298pt;}
.x23{left:311.371183pt;}
.x3{left:313.666655pt;}
.x34{left:320.800540pt;}
.x4{left:324.226655pt;}
.x9{left:338.626655pt;}
.x47{left:350.626667pt;}
.x2d{left:356.295787pt;}
.x2f{left:363.809867pt;}
.x26{left:370.684453pt;}
.xa{left:401.826655pt;}
.x1c{left:419.925638pt;}
.x16{left:428.878590pt;}
.x32{left:433.035318pt;}
.x5{left:439.773322pt;}
.x2a{left:445.825245pt;}
.x48{left:485.853333pt;}
.x37{left:489.151103pt;}
.x33{left:510.574218pt;}
.x49{left:535.933333pt;}
.x12{left:596.133322pt;}
}




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