
    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_bf87ba4f6a176d333ad0ce18.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d3e7259eef2a61d35815d687.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6664d06116157d54365f5cb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_55076bba1986649472d188ab.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5947d5ab9afa27ecfce2fe5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_abe81832e9881cc3e559d40a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3fa17ef6d95de973daf899f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_4593ab98dc8b1492eac4e2d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4adc253f221f8b6529fcb749.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_31ddc0c61ddec9a3ade1b756.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6025e7d3ade8fcfa4f11a689.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_011b54c9b2e94c3290ae2839.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:27.480000px;}
.ls26{letter-spacing:-2.160000px;}
.ls20{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.828000px;}
.ls1f{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.371400px;}
.lsc{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.188640px;}
.ls1d{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.256200px;}
.ls18{letter-spacing:0.262200px;}
.ls25{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.371400px;}
.ls1a{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.869760px;}
.ls29{letter-spacing:1.440000px;}
.ls24{letter-spacing:2.880000px;}
.ls11{letter-spacing:5.189760px;}
.ls2c{letter-spacing:5.880000px;}
.ls2b{letter-spacing:7.200000px;}
.ls17{letter-spacing:7.920000px;}
.ls27{letter-spacing:10.800000px;}
.ls1e{letter-spacing:15.120000px;}
.ls23{letter-spacing:17.280000px;}
.ls7{letter-spacing:17.429760px;}
.ls22{letter-spacing:22.320000px;}
.ls21{letter-spacing:24.629760px;}
.ls10{letter-spacing:25.200000px;}
.ls2a{letter-spacing:36.000000px;}
.ls6{letter-spacing:46.080000px;}
.ls1c{letter-spacing:54.864000px;}
.ls16{letter-spacing:59.345280px;}
.ls15{letter-spacing:59.465280px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.wsd{word-spacing:-66.240000px;}
.wsf{word-spacing:-36.629280px;}
.ws5{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.576000px;}
.ws17{word-spacing:-18.288000px;}
.ws15{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.144000px;}
.ws1a{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wse{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws6{word-spacing:-16.254600px;}
.ws19{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.732000px;}
.wsb{word-spacing:-15.534000px;}
.wsa{word-spacing:-15.226440px;}
.ws16{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.598840px;}
.ws1{word-spacing:-13.566360px;}
.ws2{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.410720px;}
.ws18{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-16.020000px;}
._5{margin-left:-12.060000px;}
._a{margin-left:-9.205800px;}
._6{margin-left:-8.100000px;}
._8{margin-left:-6.156000px;}
._c{margin-left:-4.212000px;}
._9{margin-left:-2.133840px;}
._0{margin-left:-1.082160px;}
._3{width:1.008000px;}
._b{width:2.014560px;}
._11{width:3.767280px;}
._12{width:4.946880px;}
._2{width:6.624000px;}
._4{width:7.982160px;}
._15{width:9.288000px;}
._13{width:10.440000px;}
._14{width:11.532000px;}
._1b{width:12.844320px;}
._1a{width:14.155680px;}
._16{width:15.264000px;}
._10{width:16.562160px;}
._e{width:19.008000px;}
._f{width:20.388000px;}
._1c{width:22.092000px;}
._2b{width:23.112000px;}
._1d{width:24.120000px;}
._1e{width:25.392000px;}
._1f{width:26.856000px;}
._20{width:28.008000px;}
._17{width:29.376000px;}
._18{width:30.528000px;}
._38{width:31.538160px;}
._19{width:32.568000px;}
._26{width:34.200000px;}
._25{width:35.282160px;}
._24{width:36.432000px;}
._2a{width:37.929840px;}
._29{width:38.952000px;}
._21{width:40.824000px;}
._27{width:41.904000px;}
._28{width:43.140000px;}
._2d{width:44.405760px;}
._22{width:45.504000px;}
._23{width:46.680000px;}
._35{width:48.456000px;}
._32{width:50.013840px;}
._31{width:51.408000px;}
._3e{width:52.472640px;}
._30{width:56.592000px;}
._2e{width:63.987840px;}
._2f{width:65.357280px;}
._33{width:69.624000px;}
._34{width:70.704000px;}
._39{width:74.952000px;}
._2c{width:75.960000px;}
._36{width:82.440000px;}
._37{width:83.448000px;}
._3a{width:112.440000px;}
._3b{width:113.940000px;}
._3d{width:137.323680px;}
._3c{width:138.542160px;}
._1{width:846.156000px;}
._d{width:1517.489760px;}
.fc8{color:rgb(89,51,31);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(91,155,213);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(153,153,153);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y142{bottom:2.880000px;}
.y137{bottom:3.060000px;}
.y135{bottom:7.380000px;}
.yfd{bottom:9.690000px;}
.y104{bottom:13.140000px;}
.y134{bottom:13.320000px;}
.y106{bottom:13.500000px;}
.y11a{bottom:13.680000px;}
.y115{bottom:14.220000px;}
.y11c{bottom:14.400000px;}
.y116{bottom:14.580000px;}
.y11d{bottom:14.760000px;}
.y10f{bottom:15.840000px;}
.y162{bottom:16.734000px;}
.y141{bottom:16.740000px;}
.y13e{bottom:16.920000px;}
.yd8{bottom:18.360000px;}
.y133{bottom:27.180000px;}
.y152{bottom:30.420000px;}
.y161{bottom:30.594000px;}
.y13d{bottom:30.600000px;}
.yd7{bottom:37.440000px;}
.y1f6{bottom:38.700000px;}
.y103{bottom:41.580000px;}
.y10b{bottom:42.120000px;}
.y112{bottom:43.245000px;}
.y119{bottom:43.380000px;}
.y111{bottom:43.965000px;}
.y118{bottom:44.100000px;}
.y140{bottom:44.280000px;}
.y113{bottom:44.325000px;}
.y10e{bottom:44.460000px;}
.y158{bottom:45.900000px;}
.yd6{bottom:56.340000px;}
.y3{bottom:57.636000px;}
.y13f{bottom:58.140000px;}
.y13c{bottom:58.320000px;}
.y1f5{bottom:58.860000px;}
.y157{bottom:59.760000px;}
.y102{bottom:70.200000px;}
.y10a{bottom:71.640000px;}
.y10d{bottom:72.900000px;}
.y156{bottom:73.440000px;}
.yd5{bottom:75.420000px;}
.y2{bottom:77.796000px;}
.y1f4{bottom:79.020000px;}
.y145{bottom:87.345000px;}
.yd4{bottom:94.320000px;}
.y1f3{bottom:99.180000px;}
.y109{bottom:100.260000px;}
.y144{bottom:100.845000px;}
.y108{bottom:100.980000px;}
.y10c{bottom:101.340000px;}
.y15e{bottom:102.594000px;}
.yfb{bottom:111.096000px;}
.y238{bottom:111.996000px;}
.yd3{bottom:113.445000px;}
.y13a{bottom:114.840000px;}
.y84{bottom:115.236000px;}
.ya4{bottom:115.596000px;}
.y14e{bottom:116.310000px;}
.y15d{bottom:116.454000px;}
.y1b5{bottom:116.856000px;}
.y1a3{bottom:118.656000px;}
.y1f2{bottom:119.340000px;}
.y185{bottom:120.996000px;}
.y131{bottom:123.876000px;}
.y223{bottom:124.956000px;}
.y1e2{bottom:125.676000px;}
.y139{bottom:128.520000px;}
.y163{bottom:128.916000px;}
.y14d{bottom:129.990000px;}
.y15c{bottom:130.134000px;}
.y20e{bottom:131.976000px;}
.yd2{bottom:132.345000px;}
.y73{bottom:133.956000px;}
.y234{bottom:135.396000px;}
.yac{bottom:135.756000px;}
.y1cf{bottom:137.196000px;}
.y1f1{bottom:139.320000px;}
.y257{bottom:139.896000px;}
.yfa{bottom:142.056000px;}
.y29{bottom:142.956000px;}
.y15b{bottom:143.814000px;}
.y83{bottom:146.196000px;}
.y237{bottom:146.376000px;}
.ya3{bottom:146.556000px;}
.y15a{bottom:146.736000px;}
.y1b4{bottom:147.996000px;}
.y1a2{bottom:149.796000px;}
.yd1{bottom:151.245000px;}
.y184{bottom:152.130000px;}
.ybc{bottom:153.930000px;}
.y130{bottom:155.010000px;}
.y222{bottom:156.090000px;}
.y1e1{bottom:156.810000px;}
.y149{bottom:157.860000px;}
.y1f0{bottom:159.525000px;}
.ycf{bottom:161.130000px;}
.y20d{bottom:163.110000px;}
.y72{bottom:165.090000px;}
.y233{bottom:166.530000px;}
.yab{bottom:166.890000px;}
.y1ce{bottom:168.330000px;}
.y256{bottom:171.030000px;}
.y148{bottom:171.360000px;}
.yf9{bottom:173.190000px;}
.y82{bottom:177.330000px;}
.ya2{bottom:177.690000px;}
.y1b3{bottom:178.950000px;}
.y1ef{bottom:179.685000px;}
.y1a1{bottom:180.750000px;}
.y183{bottom:183.090000px;}
.ybb{bottom:184.890000px;}
.y28{bottom:185.970000px;}
.y221{bottom:187.050000px;}
.y1e0{bottom:187.770000px;}
.y160{bottom:189.570000px;}
.yce{bottom:192.090000px;}
.y20c{bottom:194.070000px;}
.y71{bottom:196.050000px;}
.y232{bottom:197.490000px;}
.yaa{bottom:197.850000px;}
.y1cd{bottom:199.290000px;}
.y1ee{bottom:199.845000px;}
.y255{bottom:201.990000px;}
.yf8{bottom:204.150000px;}
.yba{bottom:205.410000px;}
.y53{bottom:205.950000px;}
.y81{bottom:208.290000px;}
.ya1{bottom:208.650000px;}
.y1b2{bottom:210.090000px;}
.y1a0{bottom:211.890000px;}
.y182{bottom:214.230000px;}
.y12f{bottom:217.110000px;}
.y220{bottom:218.190000px;}
.y1df{bottom:218.910000px;}
.y1ed{bottom:220.005000px;}
.ycd{bottom:223.230000px;}
.yb9{bottom:224.310000px;}
.y20b{bottom:225.210000px;}
.y70{bottom:227.190000px;}
.y231{bottom:228.630000px;}
.y27{bottom:228.990000px;}
.y1cc{bottom:230.430000px;}
.y15f{bottom:232.590000px;}
.y254{bottom:233.130000px;}
.yf7{bottom:235.290000px;}
.y80{bottom:239.430000px;}
.ya0{bottom:239.790000px;}
.y1ec{bottom:240.165000px;}
.y1b1{bottom:241.050000px;}
.y19f{bottom:242.850000px;}
.yb8{bottom:243.390000px;}
.y181{bottom:245.190000px;}
.y12e{bottom:248.070000px;}
.y52{bottom:248.970000px;}
.y21f{bottom:249.150000px;}
.y1de{bottom:249.870000px;}
.ycc{bottom:254.190000px;}
.y20a{bottom:256.170000px;}
.y6f{bottom:258.150000px;}
.y230{bottom:259.590000px;}
.ya9{bottom:259.950000px;}
.y1eb{bottom:260.325000px;}
.y1cb{bottom:261.390000px;}
.y253{bottom:264.090000px;}
.yf6{bottom:266.250000px;}
.yb7{bottom:268.950000px;}
.y7f{bottom:270.390000px;}
.y9f{bottom:270.750000px;}
.y26{bottom:272.010000px;}
.y1b0{bottom:272.190000px;}
.y19e{bottom:273.990000px;}
.y180{bottom:276.330000px;}
.y12d{bottom:279.210000px;}
.y21e{bottom:280.290000px;}
.y1ea{bottom:280.485000px;}
.y1dd{bottom:281.010000px;}
.ycb{bottom:285.330000px;}
.y209{bottom:287.310000px;}
.y6e{bottom:289.290000px;}
.y22f{bottom:290.730000px;}
.ya8{bottom:291.090000px;}
.y51{bottom:291.990000px;}
.y1ca{bottom:292.530000px;}
.y252{bottom:295.275000px;}
.yf5{bottom:297.435000px;}
.y1e9{bottom:300.645000px;}
.y7e{bottom:301.575000px;}
.y9e{bottom:301.755000px;}
.y155{bottom:303.015000px;}
.y1af{bottom:303.195000px;}
.y19d{bottom:304.995000px;}
.y17f{bottom:307.335000px;}
.y12c{bottom:310.215000px;}
.y21d{bottom:311.295000px;}
.y1dc{bottom:312.015000px;}
.y25{bottom:315.255000px;}
.yca{bottom:316.335000px;}
.y208{bottom:318.315000px;}
.y6d{bottom:320.295000px;}
.y1e8{bottom:320.805000px;}
.y22e{bottom:321.735000px;}
.ya7{bottom:322.095000px;}
.y1c9{bottom:323.535000px;}
.y251{bottom:326.235000px;}
.yf4{bottom:328.395000px;}
.y7d{bottom:332.535000px;}
.y9d{bottom:332.895000px;}
.y1ae{bottom:334.335000px;}
.y50{bottom:335.055000px;}
.y1e7{bottom:340.785000px;}
.y12b{bottom:341.355000px;}
.y21c{bottom:342.435000px;}
.y1db{bottom:343.155000px;}
.y19c{bottom:345.315000px;}
.yc9{bottom:347.475000px;}
.y17e{bottom:347.655000px;}
.y207{bottom:349.455000px;}
.y6c{bottom:351.435000px;}
.y22d{bottom:352.875000px;}
.ya6{bottom:353.235000px;}
.y1c8{bottom:354.675000px;}
.y4f{bottom:357.015000px;}
.y24{bottom:358.275000px;}
.yf3{bottom:359.535000px;}
.y159{bottom:359.715000px;}
.y1e6{bottom:360.945000px;}
.y7c{bottom:363.675000px;}
.y9c{bottom:363.855000px;}
.y1ad{bottom:365.295000px;}
.y12a{bottom:372.315000px;}
.y21b{bottom:373.395000px;}
.y1da{bottom:374.115000px;}
.y19b{bottom:376.455000px;}
.yc8{bottom:378.435000px;}
.y17d{bottom:378.795000px;}
.y4e{bottom:379.515000px;}
.y206{bottom:380.415000px;}
.y1e5{bottom:381.105000px;}
.y6b{bottom:382.395000px;}
.y22c{bottom:383.835000px;}
.ya5{bottom:384.195000px;}
.y1c7{bottom:385.635000px;}
.y250{bottom:388.335000px;}
.y154{bottom:388.875000px;}
.yf2{bottom:390.495000px;}
.y236{bottom:394.275000px;}
.y7b{bottom:394.635000px;}
.y9b{bottom:394.995000px;}
.y1e4{bottom:401.265000px;}
.y23{bottom:401.295000px;}
.y4d{bottom:401.835000px;}
.y129{bottom:403.455000px;}
.y21a{bottom:404.535000px;}
.y1d9{bottom:405.075000px;}
.y1ac{bottom:405.615000px;}
.y19a{bottom:407.415000px;}
.yc7{bottom:409.575000px;}
.y17c{bottom:409.755000px;}
.y205{bottom:411.555000px;}
.y6a{bottom:413.535000px;}
.y22b{bottom:414.975000px;}
.y24f{bottom:419.475000px;}
.yf1{bottom:421.635000px;}
.y4c{bottom:424.155000px;}
.y7a{bottom:425.775000px;}
.y9a{bottom:425.955000px;}
.y153{bottom:431.715000px;}
.y128{bottom:434.415000px;}
.y219{bottom:435.495000px;}
.y1d8{bottom:436.215000px;}
.y1ab{bottom:436.755000px;}
.y199{bottom:438.555000px;}
.yc6{bottom:440.535000px;}
.y17b{bottom:440.895000px;}
.y204{bottom:442.515000px;}
.y22{bottom:444.315000px;}
.y69{bottom:444.495000px;}
.y22a{bottom:445.935000px;}
.y4b{bottom:446.475000px;}
.y151{bottom:447.015000px;}
.y24e{bottom:450.075000px;}
.yf0{bottom:452.595000px;}
.y79{bottom:456.735000px;}
.y99{bottom:457.095000px;}
.y1c6{bottom:465.375000px;}
.y127{bottom:465.555000px;}
.y4a{bottom:466.095000px;}
.y218{bottom:466.635000px;}
.y1d7{bottom:467.175000px;}
.y1aa{bottom:467.715000px;}
.y198{bottom:469.515000px;}
.yc5{bottom:471.675000px;}
.y17a{bottom:471.855000px;}
.y203{bottom:473.655000px;}
.y68{bottom:475.635000px;}
.y229{bottom:477.075000px;}
.y24d{bottom:481.575000px;}
.yef{bottom:483.735000px;}
.y49{bottom:485.895000px;}
.y21{bottom:487.335000px;}
.y78{bottom:487.875000px;}
.y98{bottom:488.055000px;}
.y14c{bottom:490.035000px;}
.y126{bottom:496.515000px;}
.y217{bottom:497.595000px;}
.y1d6{bottom:498.315000px;}
.y1a9{bottom:498.855000px;}
.y197{bottom:500.655000px;}
.yc4{bottom:502.635000px;}
.y179{bottom:502.995000px;}
.y202{bottom:504.615000px;}
.y67{bottom:506.595000px;}
.y228{bottom:508.035000px;}
.y48{bottom:508.215000px;}
.y24c{bottom:512.535000px;}
.yee{bottom:514.695000px;}
.y77{bottom:518.835000px;}
.y97{bottom:519.195000px;}
.y1c5{bottom:527.475000px;}
.y125{bottom:527.655000px;}
.y47{bottom:528.015000px;}
.y216{bottom:528.555000px;}
.y1d5{bottom:529.275000px;}
.y1a8{bottom:529.815000px;}
.y20{bottom:530.355000px;}
.y196{bottom:531.615000px;}
.y150{bottom:532.875000px;}
.yc3{bottom:533.955000px;}
.y201{bottom:535.755000px;}
.y66{bottom:537.555000px;}
.y227{bottom:539.175000px;}
.y24b{bottom:543.675000px;}
.yed{bottom:545.835000px;}
.y76{bottom:549.975000px;}
.y96{bottom:550.155000px;}
.y46{bottom:550.335000px;}
.y124{bottom:558.615000px;}
.y215{bottom:559.695000px;}
.y1d4{bottom:560.415000px;}
.yb6{bottom:560.955000px;}
.y195{bottom:562.755000px;}
.y178{bottom:565.095000px;}
.yc2{bottom:565.275000px;}
.y200{bottom:566.715000px;}
.y65{bottom:568.695000px;}
.y226{bottom:570.135000px;}
.y45{bottom:572.655000px;}
.y1f{bottom:573.405000px;}
.y24a{bottom:574.665000px;}
.y14f{bottom:575.745000px;}
.yec{bottom:576.825000px;}
.y75{bottom:580.965000px;}
.y95{bottom:581.325000px;}
.y1c4{bottom:589.605000px;}
.y123{bottom:589.785000px;}
.y214{bottom:590.685000px;}
.y1d3{bottom:591.405000px;}
.yb5{bottom:591.945000px;}
.y194{bottom:593.745000px;}
.y44{bottom:595.185000px;}
.y177{bottom:596.085000px;}
.yc1{bottom:596.625000px;}
.yf{bottom:596.805000px;}
.y1ff{bottom:597.885000px;}
.y64{bottom:599.685000px;}
.y225{bottom:601.305000px;}
.y249{bottom:605.805000px;}
.yeb{bottom:607.965000px;}
.y122{bottom:609.765000px;}
.y74{bottom:612.105000px;}
.y94{bottom:612.285000px;}
.y1e{bottom:616.605000px;}
.y43{bottom:617.325000px;}
.ye{bottom:618.045000px;}
.y1c3{bottom:620.745000px;}
.y213{bottom:621.825000px;}
.y1d2{bottom:622.545000px;}
.yb4{bottom:623.085000px;}
.y193{bottom:624.885000px;}
.y176{bottom:627.225000px;}
.yc0{bottom:627.945000px;}
.y121{bottom:628.845000px;}
.y1a7{bottom:632.265000px;}
.y147{bottom:632.445000px;}
.y248{bottom:636.765000px;}
.y42{bottom:637.125000px;}
.yea{bottom:638.925000px;}
.y63{bottom:643.065000px;}
.y93{bottom:643.425000px;}
.y120{bottom:647.745000px;}
.y1c2{bottom:651.705000px;}
.y212{bottom:652.785000px;}
.y1d1{bottom:653.685000px;}
.yb3{bottom:654.045000px;}
.y192{bottom:655.845000px;}
.y41{bottom:656.925000px;}
.y175{bottom:658.185000px;}
.ybf{bottom:659.265000px;}
.y1d{bottom:659.625000px;}
.y1fe{bottom:659.985000px;}
.y1a6{bottom:663.405000px;}
.y11f{bottom:666.645000px;}
.y247{bottom:667.905000px;}
.ye9{bottom:670.065000px;}
.y62{bottom:674.205000px;}
.y92{bottom:674.385000px;}
.y14b{bottom:675.285000px;}
.yd{bottom:678.885000px;}
.y40{bottom:679.245000px;}
.y1c1{bottom:682.665000px;}
.y11e{bottom:682.845000px;}
.y1d0{bottom:683.925000px;}
.y191{bottom:686.805000px;}
.y174{bottom:689.145000px;}
.ybe{bottom:690.585000px;}
.y1fd{bottom:690.945000px;}
.yb2{bottom:694.365000px;}
.y211{bottom:694.725000px;}
.y246{bottom:698.865000px;}
.y3f{bottom:699.045000px;}
.ye8{bottom:701.025000px;}
.y1c{bottom:702.645000px;}
.yc{bottom:704.445000px;}
.y61{bottom:705.165000px;}
.y91{bottom:705.525000px;}
.y1e3{bottom:711.825000px;}
.y11b{bottom:713.085000px;}
.y3e{bottom:718.845000px;}
.y173{bottom:720.285000px;}
.y1fc{bottom:722.085000px;}
.y1c0{bottom:723.165000px;}
.yb1{bottom:725.505000px;}
.y210{bottom:725.685000px;}
.y190{bottom:727.305000px;}
.yb{bottom:729.105000px;}
.y245{bottom:730.005000px;}
.ybd{bottom:731.085000px;}
.ye7{bottom:732.345000px;}
.y60{bottom:736.305000px;}
.y90{bottom:736.485000px;}
.y3d{bottom:738.645000px;}
.y117{bottom:743.505000px;}
.y1b{bottom:745.665000px;}
.y14a{bottom:745.845000px;}
.y172{bottom:751.245000px;}
.y1fb{bottom:753.045000px;}
.y1bf{bottom:755.565000px;}
.yb0{bottom:756.465000px;}
.y20f{bottom:756.825000px;}
.yd0{bottom:757.905000px;}
.y18f{bottom:758.265000px;}
.ye6{bottom:759.885000px;}
.y3c{bottom:760.785000px;}
.y244{bottom:760.965000px;}
.y5f{bottom:767.265000px;}
.y8f{bottom:767.625000px;}
.ye5{bottom:778.785000px;}
.y3b{bottom:780.585000px;}
.y171{bottom:782.385000px;}
.y1fa{bottom:784.185000px;}
.yaf{bottom:787.605000px;}
.y1be{bottom:787.785000px;}
.y1a{bottom:788.685000px;}
.y18e{bottom:789.405000px;}
.ya{bottom:790.305000px;}
.y243{bottom:792.105000px;}
.ye4{bottom:797.865000px;}
.y5e{bottom:798.405000px;}
.y8e{bottom:798.585000px;}
.y3a{bottom:800.385000px;}
.y114{bottom:803.625000px;}
.y170{bottom:813.345000px;}
.y1f9{bottom:815.145000px;}
.y143{bottom:816.405000px;}
.ye3{bottom:816.765000px;}
.yae{bottom:818.565000px;}
.y1bd{bottom:818.925000px;}
.y9{bottom:819.285000px;}
.y39{bottom:820.185000px;}
.y18d{bottom:820.365000px;}
.y242{bottom:823.065000px;}
.y5d{bottom:829.365000px;}
.y8d{bottom:829.725000px;}
.y19{bottom:831.705000px;}
.y110{bottom:834.045000px;}
.ye2{bottom:835.845000px;}
.y38{bottom:839.985000px;}
.y16f{bottom:844.665000px;}
.y1f8{bottom:846.285000px;}
.y224{bottom:849.525000px;}
.yad{bottom:849.705000px;}
.y1bc{bottom:849.885000px;}
.y18c{bottom:851.505000px;}
.y241{bottom:854.250000px;}
.ye1{bottom:855.690000px;}
.y8{bottom:857.130000px;}
.y37{bottom:859.830000px;}
.y5c{bottom:860.550000px;}
.y8c{bottom:860.730000px;}
.y146{bottom:873.150000px;}
.y18{bottom:874.950000px;}
.ye0{bottom:875.850000px;}
.y1f7{bottom:878.370000px;}
.y1a5{bottom:880.710000px;}
.y1bb{bottom:881.070000px;}
.y36{bottom:881.970000px;}
.y18b{bottom:882.510000px;}
.y240{bottom:884.850000px;}
.y16e{bottom:886.650000px;}
.y235{bottom:891.150000px;}
.y5b{bottom:891.510000px;}
.y7{bottom:891.690000px;}
.y8b{bottom:891.870000px;}
.y107{bottom:894.030000px;}
.ydf{bottom:896.010000px;}
.y35{bottom:901.770000px;}
.y1a4{bottom:912.030000px;}
.y18a{bottom:913.650000px;}
.yde{bottom:916.170000px;}
.y23f{bottom:916.350000px;}
.y16d{bottom:917.610000px;}
.y17{bottom:917.970000px;}
.y34{bottom:921.570000px;}
.y5a{bottom:922.650000px;}
.y8a{bottom:922.830000px;}
.y138{bottom:929.850000px;}
.ydd{bottom:936.330000px;}
.y33{bottom:941.370000px;}
.y1ba{bottom:943.170000px;}
.y6{bottom:944.250000px;}
.y189{bottom:944.610000px;}
.y23e{bottom:947.310000px;}
.y16c{bottom:948.750000px;}
.y59{bottom:953.610000px;}
.y89{bottom:953.970000px;}
.ydc{bottom:956.490000px;}
.y16{bottom:960.990000px;}
.y32{bottom:961.170000px;}
.y1b9{bottom:974.130000px;}
.y188{bottom:975.750000px;}
.ydb{bottom:976.650000px;}
.y23d{bottom:978.450000px;}
.y5{bottom:978.630000px;}
.y16b{bottom:979.710000px;}
.y31{bottom:983.490000px;}
.yff{bottom:984.060000px;}
.y58{bottom:984.750000px;}
.y88{bottom:984.930000px;}
.yda{bottom:996.810000px;}
.yfc{bottom:997.560000px;}
.y13b{bottom:1000.230000px;}
.y15{bottom:1004.010000px;}
.y1b8{bottom:1005.270000px;}
.y30{bottom:1005.810000px;}
.y187{bottom:1006.710000px;}
.y23c{bottom:1009.410000px;}
.y16a{bottom:1010.850000px;}
.y105{bottom:1011.030000px;}
.y4{bottom:1013.190000px;}
.y57{bottom:1015.710000px;}
.y87{bottom:1016.070000px;}
.yd9{bottom:1016.970000px;}
.yfe{bottom:1017.720000px;}
.y2f{bottom:1028.130000px;}
.y1b7{bottom:1036.230000px;}
.y186{bottom:1037.670000px;}
.y101{bottom:1040.190000px;}
.y23b{bottom:1040.550000px;}
.y169{bottom:1041.450000px;}
.y258{bottom:1046.670000px;}
.y56{bottom:1046.850000px;}
.y14{bottom:1047.030000px;}
.y2e{bottom:1050.450000px;}
.y168{bottom:1062.330000px;}
.y1b6{bottom:1067.370000px;}
.y136{bottom:1070.790000px;}
.y23a{bottom:1071.510000px;}
.y2d{bottom:1072.770000px;}
.y55{bottom:1077.810000px;}
.y13{bottom:1078.170000px;}
.y167{bottom:1083.030000px;}
.y132{bottom:1086.090000px;}
.y2c{bottom:1095.090000px;}
.y12{bottom:1099.050000px;}
.y166{bottom:1103.370000px;}
.y239{bottom:1105.710000px;}
.y54{bottom:1108.770000px;}
.y86{bottom:1109.130000px;}
.y2b{bottom:1117.410000px;}
.y11{bottom:1119.390000px;}
.y165{bottom:1122.270000px;}
.y2a{bottom:1139.940000px;}
.y10{bottom:1140.120000px;}
.y85{bottom:1140.300000px;}
.y100{bottom:1141.200000px;}
.y164{bottom:1141.380000px;}
.y1{bottom:1161.900000px;}
.h1b{height:13.860000px;}
.hf{height:25.200000px;}
.h28{height:27.720000px;}
.h11{height:28.440000px;}
.h15{height:29.520000px;}
.h17{height:29.700000px;}
.h18{height:37.980000px;}
.h23{height:41.400000px;}
.h26{height:41.436000px;}
.h19{height:50.312812px;}
.h20{height:55.080000px;}
.h21{height:55.116000px;}
.h25{height:55.260000px;}
.h14{height:59.256000px;}
.h16{height:59.400000px;}
.he{height:65.010937px;}
.h2{height:65.884219px;}
.hb{height:66.757500px;}
.hd{height:67.824844px;}
.h1e{height:68.940000px;}
.h2a{height:68.976000px;}
.h13{height:69.086250px;}
.h1d{height:69.120000px;}
.ha{height:70.628906px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h2e{height:74.704922px;}
.h2d{height:74.824922px;}
.h2b{height:75.093750px;}
.h7{height:82.676953px;}
.h5{height:83.787539px;}
.h27{height:84.420000px;}
.h6{height:84.898125px;}
.h10{height:85.500000px;}
.h1f{height:111.816000px;}
.h12{height:116.280000px;}
.h3{height:121.179375px;}
.h4{height:125.455078px;}
.h1a{height:137.421562px;}
.h1c{height:139.500000px;}
.h24{height:140.976000px;}
.h29{height:154.830000px;}
.hc{height:166.530000px;}
.h22{height:182.340000px;}
.h2c{height:416.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:45.000000px;}
.wf{width:49.896000px;}
.w14{width:60.336000px;}
.w12{width:106.236000px;}
.w11{width:113.760000px;}
.w13{width:117.000000px;}
.wc{width:117.036000px;}
.we{width:127.440000px;}
.wd{width:138.276000px;}
.wa{width:160.950000px;}
.w7{width:161.310000px;}
.w15{width:195.870000px;}
.w8{width:215.310000px;}
.w5{width:215.670000px;}
.wb{width:219.990000px;}
.w9{width:269.895000px;}
.w6{width:270.615000px;}
.w3{width:345.525000px;}
.w10{width:432.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:8.100000px;}
.x44{left:9.360000px;}
.x16{left:10.830000px;}
.x45{left:12.960000px;}
.x40{left:14.400000px;}
.x3b{left:16.200000px;}
.x48{left:17.640000px;}
.x3d{left:18.930000px;}
.x1f{left:20.340000px;}
.x4c{left:21.420000px;}
.x21{left:22.680000px;}
.x43{left:24.165000px;}
.x42{left:25.785000px;}
.x34{left:27.180000px;}
.x1b{left:28.260000px;}
.x2e{left:30.414000px;}
.x1d{left:31.860000px;}
.x4b{left:35.460000px;}
.x46{left:36.585000px;}
.x47{left:37.800000px;}
.x2b{left:39.234000px;}
.x22{left:41.574000px;}
.x4a{left:43.065000px;}
.x25{left:44.094000px;}
.x20{left:45.180000px;}
.x2f{left:47.334000px;}
.x32{left:48.774000px;}
.x49{left:51.480000px;}
.x36{left:52.914000px;}
.x3f{left:56.514000px;}
.x28{left:57.780000px;}
.x26{left:62.820000px;}
.x24{left:65.340000px;}
.x31{left:69.480000px;}
.x30{left:70.740000px;}
.x27{left:78.330000px;}
.x2a{left:80.460000px;}
.x33{left:82.290000px;}
.x2c{left:92.370000px;}
.x35{left:94.350000px;}
.x2d{left:96.330000px;}
.x29{left:118.830000px;}
.x1a{left:119.916000px;}
.x3{left:127.655987px;}
.x23{left:134.850000px;}
.x7{left:142.235987px;}
.x8{left:153.929987px;}
.xe{left:160.589987px;}
.xf{left:177.149987px;}
.x11{left:180.749987px;}
.x17{left:189.540000px;}
.x4{left:195.509987px;}
.x3e{left:216.570000px;}
.x5{left:220.529987px;}
.x18{left:227.700000px;}
.x41{left:234.030000px;}
.x19{left:236.700000px;}
.xc{left:273.674987px;}
.x1{left:308.234987px;}
.xd{left:322.814987px;}
.x6{left:333.614987px;}
.x1c{left:335.595000px;}
.x37{left:340.275000px;}
.xa{left:342.074987px;}
.xb{left:346.214987px;}
.x15{left:401.115000px;}
.x14{left:416.804987px;}
.x9{left:446.504987px;}
.x39{left:457.305000px;}
.x4f{left:578.850000px;}
.x4e{left:591.449987px;}
.x3a{left:595.590000px;}
.x1e{left:606.210000px;}
.x4d{left:712.590000px;}
.x3c{left:723.030000px;}
.x12{left:737.969987px;}
.x13{left:748.799987px;}
.x10{left:757.259987px;}
.x2{left:765.539987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.426667pt;}
.ls26{letter-spacing:-1.920000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.330133pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.167680pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls18{letter-spacing:0.233067pt;}
.ls25{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.330133pt;}
.ls1a{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.773120pt;}
.ls29{letter-spacing:1.280000pt;}
.ls24{letter-spacing:2.560000pt;}
.ls11{letter-spacing:4.613120pt;}
.ls2c{letter-spacing:5.226667pt;}
.ls2b{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls27{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:13.440000pt;}
.ls23{letter-spacing:15.360000pt;}
.ls7{letter-spacing:15.493120pt;}
.ls22{letter-spacing:19.840000pt;}
.ls21{letter-spacing:21.893120pt;}
.ls10{letter-spacing:22.400000pt;}
.ls2a{letter-spacing:32.000000pt;}
.ls6{letter-spacing:40.960000pt;}
.ls1c{letter-spacing:48.768000pt;}
.ls16{letter-spacing:52.751360pt;}
.ls15{letter-spacing:52.858027pt;}
.ws11{word-spacing:-64.000000pt;}
.wsd{word-spacing:-58.880000pt;}
.wsf{word-spacing:-32.559360pt;}
.ws5{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.512000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws15{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws1a{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws6{word-spacing:-14.448533pt;}
.ws19{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.984000pt;}
.wsb{word-spacing:-13.808000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws16{word-spacing:-13.306880pt;}
.wsc{word-spacing:-12.976747pt;}
.ws1{word-spacing:-12.058987pt;}
.ws2{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.920640pt;}
.ws18{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-14.240000pt;}
._5{margin-left:-10.720000pt;}
._a{margin-left:-8.182933pt;}
._6{margin-left:-7.200000pt;}
._8{margin-left:-5.472000pt;}
._c{margin-left:-3.744000pt;}
._9{margin-left:-1.896747pt;}
._0{margin-left:-0.961920pt;}
._3{width:0.896000pt;}
._b{width:1.790720pt;}
._11{width:3.348693pt;}
._12{width:4.397227pt;}
._2{width:5.888000pt;}
._4{width:7.095253pt;}
._15{width:8.256000pt;}
._13{width:9.280000pt;}
._14{width:10.250667pt;}
._1b{width:11.417173pt;}
._1a{width:12.582827pt;}
._16{width:13.568000pt;}
._10{width:14.721920pt;}
._e{width:16.896000pt;}
._f{width:18.122667pt;}
._1c{width:19.637333pt;}
._2b{width:20.544000pt;}
._1d{width:21.440000pt;}
._1e{width:22.570667pt;}
._1f{width:23.872000pt;}
._20{width:24.896000pt;}
._17{width:26.112000pt;}
._18{width:27.136000pt;}
._38{width:28.033920pt;}
._19{width:28.949333pt;}
._26{width:30.400000pt;}
._25{width:31.361920pt;}
._24{width:32.384000pt;}
._2a{width:33.715413pt;}
._29{width:34.624000pt;}
._21{width:36.288000pt;}
._27{width:37.248000pt;}
._28{width:38.346667pt;}
._2d{width:39.471787pt;}
._22{width:40.448000pt;}
._23{width:41.493333pt;}
._35{width:43.072000pt;}
._32{width:44.456747pt;}
._31{width:45.696000pt;}
._3e{width:46.642347pt;}
._30{width:50.304000pt;}
._2e{width:56.878080pt;}
._2f{width:58.095360pt;}
._33{width:61.888000pt;}
._34{width:62.848000pt;}
._39{width:66.624000pt;}
._2c{width:67.520000pt;}
._36{width:73.280000pt;}
._37{width:74.176000pt;}
._3a{width:99.946667pt;}
._3b{width:101.280000pt;}
._3d{width:122.065493pt;}
._3c{width:123.148587pt;}
._1{width:752.138667pt;}
._d{width:1348.879787pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:2.560000pt;}
.y137{bottom:2.720000pt;}
.y135{bottom:6.560000pt;}
.yfd{bottom:8.613333pt;}
.y104{bottom:11.680000pt;}
.y134{bottom:11.840000pt;}
.y106{bottom:12.000000pt;}
.y11a{bottom:12.160000pt;}
.y115{bottom:12.640000pt;}
.y11c{bottom:12.800000pt;}
.y116{bottom:12.960000pt;}
.y11d{bottom:13.120000pt;}
.y10f{bottom:14.080000pt;}
.y162{bottom:14.874667pt;}
.y141{bottom:14.880000pt;}
.y13e{bottom:15.040000pt;}
.yd8{bottom:16.320000pt;}
.y133{bottom:24.160000pt;}
.y152{bottom:27.040000pt;}
.y161{bottom:27.194667pt;}
.y13d{bottom:27.200000pt;}
.yd7{bottom:33.280000pt;}
.y1f6{bottom:34.400000pt;}
.y103{bottom:36.960000pt;}
.y10b{bottom:37.440000pt;}
.y112{bottom:38.440000pt;}
.y119{bottom:38.560000pt;}
.y111{bottom:39.080000pt;}
.y118{bottom:39.200000pt;}
.y140{bottom:39.360000pt;}
.y113{bottom:39.400000pt;}
.y10e{bottom:39.520000pt;}
.y158{bottom:40.800000pt;}
.yd6{bottom:50.080000pt;}
.y3{bottom:51.232000pt;}
.y13f{bottom:51.680000pt;}
.y13c{bottom:51.840000pt;}
.y1f5{bottom:52.320000pt;}
.y157{bottom:53.120000pt;}
.y102{bottom:62.400000pt;}
.y10a{bottom:63.680000pt;}
.y10d{bottom:64.800000pt;}
.y156{bottom:65.280000pt;}
.yd5{bottom:67.040000pt;}
.y2{bottom:69.152000pt;}
.y1f4{bottom:70.240000pt;}
.y145{bottom:77.640000pt;}
.yd4{bottom:83.840000pt;}
.y1f3{bottom:88.160000pt;}
.y109{bottom:89.120000pt;}
.y144{bottom:89.640000pt;}
.y108{bottom:89.760000pt;}
.y10c{bottom:90.080000pt;}
.y15e{bottom:91.194667pt;}
.yfb{bottom:98.752000pt;}
.y238{bottom:99.552000pt;}
.yd3{bottom:100.840000pt;}
.y13a{bottom:102.080000pt;}
.y84{bottom:102.432000pt;}
.ya4{bottom:102.752000pt;}
.y14e{bottom:103.386667pt;}
.y15d{bottom:103.514667pt;}
.y1b5{bottom:103.872000pt;}
.y1a3{bottom:105.472000pt;}
.y1f2{bottom:106.080000pt;}
.y185{bottom:107.552000pt;}
.y131{bottom:110.112000pt;}
.y223{bottom:111.072000pt;}
.y1e2{bottom:111.712000pt;}
.y139{bottom:114.240000pt;}
.y163{bottom:114.592000pt;}
.y14d{bottom:115.546667pt;}
.y15c{bottom:115.674667pt;}
.y20e{bottom:117.312000pt;}
.yd2{bottom:117.640000pt;}
.y73{bottom:119.072000pt;}
.y234{bottom:120.352000pt;}
.yac{bottom:120.672000pt;}
.y1cf{bottom:121.952000pt;}
.y1f1{bottom:123.840000pt;}
.y257{bottom:124.352000pt;}
.yfa{bottom:126.272000pt;}
.y29{bottom:127.072000pt;}
.y15b{bottom:127.834667pt;}
.y83{bottom:129.952000pt;}
.y237{bottom:130.112000pt;}
.ya3{bottom:130.272000pt;}
.y15a{bottom:130.432000pt;}
.y1b4{bottom:131.552000pt;}
.y1a2{bottom:133.152000pt;}
.yd1{bottom:134.440000pt;}
.y184{bottom:135.226667pt;}
.ybc{bottom:136.826667pt;}
.y130{bottom:137.786667pt;}
.y222{bottom:138.746667pt;}
.y1e1{bottom:139.386667pt;}
.y149{bottom:140.320000pt;}
.y1f0{bottom:141.800000pt;}
.ycf{bottom:143.226667pt;}
.y20d{bottom:144.986667pt;}
.y72{bottom:146.746667pt;}
.y233{bottom:148.026667pt;}
.yab{bottom:148.346667pt;}
.y1ce{bottom:149.626667pt;}
.y256{bottom:152.026667pt;}
.y148{bottom:152.320000pt;}
.yf9{bottom:153.946667pt;}
.y82{bottom:157.626667pt;}
.ya2{bottom:157.946667pt;}
.y1b3{bottom:159.066667pt;}
.y1ef{bottom:159.720000pt;}
.y1a1{bottom:160.666667pt;}
.y183{bottom:162.746667pt;}
.ybb{bottom:164.346667pt;}
.y28{bottom:165.306667pt;}
.y221{bottom:166.266667pt;}
.y1e0{bottom:166.906667pt;}
.y160{bottom:168.506667pt;}
.yce{bottom:170.746667pt;}
.y20c{bottom:172.506667pt;}
.y71{bottom:174.266667pt;}
.y232{bottom:175.546667pt;}
.yaa{bottom:175.866667pt;}
.y1cd{bottom:177.146667pt;}
.y1ee{bottom:177.640000pt;}
.y255{bottom:179.546667pt;}
.yf8{bottom:181.466667pt;}
.yba{bottom:182.586667pt;}
.y53{bottom:183.066667pt;}
.y81{bottom:185.146667pt;}
.ya1{bottom:185.466667pt;}
.y1b2{bottom:186.746667pt;}
.y1a0{bottom:188.346667pt;}
.y182{bottom:190.426667pt;}
.y12f{bottom:192.986667pt;}
.y220{bottom:193.946667pt;}
.y1df{bottom:194.586667pt;}
.y1ed{bottom:195.560000pt;}
.ycd{bottom:198.426667pt;}
.yb9{bottom:199.386667pt;}
.y20b{bottom:200.186667pt;}
.y70{bottom:201.946667pt;}
.y231{bottom:203.226667pt;}
.y27{bottom:203.546667pt;}
.y1cc{bottom:204.826667pt;}
.y15f{bottom:206.746667pt;}
.y254{bottom:207.226667pt;}
.yf7{bottom:209.146667pt;}
.y80{bottom:212.826667pt;}
.ya0{bottom:213.146667pt;}
.y1ec{bottom:213.480000pt;}
.y1b1{bottom:214.266667pt;}
.y19f{bottom:215.866667pt;}
.yb8{bottom:216.346667pt;}
.y181{bottom:217.946667pt;}
.y12e{bottom:220.506667pt;}
.y52{bottom:221.306667pt;}
.y21f{bottom:221.466667pt;}
.y1de{bottom:222.106667pt;}
.ycc{bottom:225.946667pt;}
.y20a{bottom:227.706667pt;}
.y6f{bottom:229.466667pt;}
.y230{bottom:230.746667pt;}
.ya9{bottom:231.066667pt;}
.y1eb{bottom:231.400000pt;}
.y1cb{bottom:232.346667pt;}
.y253{bottom:234.746667pt;}
.yf6{bottom:236.666667pt;}
.yb7{bottom:239.066667pt;}
.y7f{bottom:240.346667pt;}
.y9f{bottom:240.666667pt;}
.y26{bottom:241.786667pt;}
.y1b0{bottom:241.946667pt;}
.y19e{bottom:243.546667pt;}
.y180{bottom:245.626667pt;}
.y12d{bottom:248.186667pt;}
.y21e{bottom:249.146667pt;}
.y1ea{bottom:249.320000pt;}
.y1dd{bottom:249.786667pt;}
.ycb{bottom:253.626667pt;}
.y209{bottom:255.386667pt;}
.y6e{bottom:257.146667pt;}
.y22f{bottom:258.426667pt;}
.ya8{bottom:258.746667pt;}
.y51{bottom:259.546667pt;}
.y1ca{bottom:260.026667pt;}
.y252{bottom:262.466667pt;}
.yf5{bottom:264.386667pt;}
.y1e9{bottom:267.240000pt;}
.y7e{bottom:268.066667pt;}
.y9e{bottom:268.226667pt;}
.y155{bottom:269.346667pt;}
.y1af{bottom:269.506667pt;}
.y19d{bottom:271.106667pt;}
.y17f{bottom:273.186667pt;}
.y12c{bottom:275.746667pt;}
.y21d{bottom:276.706667pt;}
.y1dc{bottom:277.346667pt;}
.y25{bottom:280.226667pt;}
.yca{bottom:281.186667pt;}
.y208{bottom:282.946667pt;}
.y6d{bottom:284.706667pt;}
.y1e8{bottom:285.160000pt;}
.y22e{bottom:285.986667pt;}
.ya7{bottom:286.306667pt;}
.y1c9{bottom:287.586667pt;}
.y251{bottom:289.986667pt;}
.yf4{bottom:291.906667pt;}
.y7d{bottom:295.586667pt;}
.y9d{bottom:295.906667pt;}
.y1ae{bottom:297.186667pt;}
.y50{bottom:297.826667pt;}
.y1e7{bottom:302.920000pt;}
.y12b{bottom:303.426667pt;}
.y21c{bottom:304.386667pt;}
.y1db{bottom:305.026667pt;}
.y19c{bottom:306.946667pt;}
.yc9{bottom:308.866667pt;}
.y17e{bottom:309.026667pt;}
.y207{bottom:310.626667pt;}
.y6c{bottom:312.386667pt;}
.y22d{bottom:313.666667pt;}
.ya6{bottom:313.986667pt;}
.y1c8{bottom:315.266667pt;}
.y4f{bottom:317.346667pt;}
.y24{bottom:318.466667pt;}
.yf3{bottom:319.586667pt;}
.y159{bottom:319.746667pt;}
.y1e6{bottom:320.840000pt;}
.y7c{bottom:323.266667pt;}
.y9c{bottom:323.426667pt;}
.y1ad{bottom:324.706667pt;}
.y12a{bottom:330.946667pt;}
.y21b{bottom:331.906667pt;}
.y1da{bottom:332.546667pt;}
.y19b{bottom:334.626667pt;}
.yc8{bottom:336.386667pt;}
.y17d{bottom:336.706667pt;}
.y4e{bottom:337.346667pt;}
.y206{bottom:338.146667pt;}
.y1e5{bottom:338.760000pt;}
.y6b{bottom:339.906667pt;}
.y22c{bottom:341.186667pt;}
.ya5{bottom:341.506667pt;}
.y1c7{bottom:342.786667pt;}
.y250{bottom:345.186667pt;}
.y154{bottom:345.666667pt;}
.yf2{bottom:347.106667pt;}
.y236{bottom:350.466667pt;}
.y7b{bottom:350.786667pt;}
.y9b{bottom:351.106667pt;}
.y1e4{bottom:356.680000pt;}
.y23{bottom:356.706667pt;}
.y4d{bottom:357.186667pt;}
.y129{bottom:358.626667pt;}
.y21a{bottom:359.586667pt;}
.y1d9{bottom:360.066667pt;}
.y1ac{bottom:360.546667pt;}
.y19a{bottom:362.146667pt;}
.yc7{bottom:364.066667pt;}
.y17c{bottom:364.226667pt;}
.y205{bottom:365.826667pt;}
.y6a{bottom:367.586667pt;}
.y22b{bottom:368.866667pt;}
.y24f{bottom:372.866667pt;}
.yf1{bottom:374.786667pt;}
.y4c{bottom:377.026667pt;}
.y7a{bottom:378.466667pt;}
.y9a{bottom:378.626667pt;}
.y153{bottom:383.746667pt;}
.y128{bottom:386.146667pt;}
.y219{bottom:387.106667pt;}
.y1d8{bottom:387.746667pt;}
.y1ab{bottom:388.226667pt;}
.y199{bottom:389.826667pt;}
.yc6{bottom:391.586667pt;}
.y17b{bottom:391.906667pt;}
.y204{bottom:393.346667pt;}
.y22{bottom:394.946667pt;}
.y69{bottom:395.106667pt;}
.y22a{bottom:396.386667pt;}
.y4b{bottom:396.866667pt;}
.y151{bottom:397.346667pt;}
.y24e{bottom:400.066667pt;}
.yf0{bottom:402.306667pt;}
.y79{bottom:405.986667pt;}
.y99{bottom:406.306667pt;}
.y1c6{bottom:413.666667pt;}
.y127{bottom:413.826667pt;}
.y4a{bottom:414.306667pt;}
.y218{bottom:414.786667pt;}
.y1d7{bottom:415.266667pt;}
.y1aa{bottom:415.746667pt;}
.y198{bottom:417.346667pt;}
.yc5{bottom:419.266667pt;}
.y17a{bottom:419.426667pt;}
.y203{bottom:421.026667pt;}
.y68{bottom:422.786667pt;}
.y229{bottom:424.066667pt;}
.y24d{bottom:428.066667pt;}
.yef{bottom:429.986667pt;}
.y49{bottom:431.906667pt;}
.y21{bottom:433.186667pt;}
.y78{bottom:433.666667pt;}
.y98{bottom:433.826667pt;}
.y14c{bottom:435.586667pt;}
.y126{bottom:441.346667pt;}
.y217{bottom:442.306667pt;}
.y1d6{bottom:442.946667pt;}
.y1a9{bottom:443.426667pt;}
.y197{bottom:445.026667pt;}
.yc4{bottom:446.786667pt;}
.y179{bottom:447.106667pt;}
.y202{bottom:448.546667pt;}
.y67{bottom:450.306667pt;}
.y228{bottom:451.586667pt;}
.y48{bottom:451.746667pt;}
.y24c{bottom:455.586667pt;}
.yee{bottom:457.506667pt;}
.y77{bottom:461.186667pt;}
.y97{bottom:461.506667pt;}
.y1c5{bottom:468.866667pt;}
.y125{bottom:469.026667pt;}
.y47{bottom:469.346667pt;}
.y216{bottom:469.826667pt;}
.y1d5{bottom:470.466667pt;}
.y1a8{bottom:470.946667pt;}
.y20{bottom:471.426667pt;}
.y196{bottom:472.546667pt;}
.y150{bottom:473.666667pt;}
.yc3{bottom:474.626667pt;}
.y201{bottom:476.226667pt;}
.y66{bottom:477.826667pt;}
.y227{bottom:479.266667pt;}
.y24b{bottom:483.266667pt;}
.yed{bottom:485.186667pt;}
.y76{bottom:488.866667pt;}
.y96{bottom:489.026667pt;}
.y46{bottom:489.186667pt;}
.y124{bottom:496.546667pt;}
.y215{bottom:497.506667pt;}
.y1d4{bottom:498.146667pt;}
.yb6{bottom:498.626667pt;}
.y195{bottom:500.226667pt;}
.y178{bottom:502.306667pt;}
.yc2{bottom:502.466667pt;}
.y200{bottom:503.746667pt;}
.y65{bottom:505.506667pt;}
.y226{bottom:506.786667pt;}
.y45{bottom:509.026667pt;}
.y1f{bottom:509.693333pt;}
.y24a{bottom:510.813333pt;}
.y14f{bottom:511.773333pt;}
.yec{bottom:512.733333pt;}
.y75{bottom:516.413333pt;}
.y95{bottom:516.733333pt;}
.y1c4{bottom:524.093333pt;}
.y123{bottom:524.253333pt;}
.y214{bottom:525.053333pt;}
.y1d3{bottom:525.693333pt;}
.yb5{bottom:526.173333pt;}
.y194{bottom:527.773333pt;}
.y44{bottom:529.053333pt;}
.y177{bottom:529.853333pt;}
.yc1{bottom:530.333333pt;}
.yf{bottom:530.493333pt;}
.y1ff{bottom:531.453333pt;}
.y64{bottom:533.053333pt;}
.y225{bottom:534.493333pt;}
.y249{bottom:538.493333pt;}
.yeb{bottom:540.413333pt;}
.y122{bottom:542.013333pt;}
.y74{bottom:544.093333pt;}
.y94{bottom:544.253333pt;}
.y1e{bottom:548.093333pt;}
.y43{bottom:548.733333pt;}
.ye{bottom:549.373333pt;}
.y1c3{bottom:551.773333pt;}
.y213{bottom:552.733333pt;}
.y1d2{bottom:553.373333pt;}
.yb4{bottom:553.853333pt;}
.y193{bottom:555.453333pt;}
.y176{bottom:557.533333pt;}
.yc0{bottom:558.173333pt;}
.y121{bottom:558.973333pt;}
.y1a7{bottom:562.013333pt;}
.y147{bottom:562.173333pt;}
.y248{bottom:566.013333pt;}
.y42{bottom:566.333333pt;}
.yea{bottom:567.933333pt;}
.y63{bottom:571.613333pt;}
.y93{bottom:571.933333pt;}
.y120{bottom:575.773333pt;}
.y1c2{bottom:579.293333pt;}
.y212{bottom:580.253333pt;}
.y1d1{bottom:581.053333pt;}
.yb3{bottom:581.373333pt;}
.y192{bottom:582.973333pt;}
.y41{bottom:583.933333pt;}
.y175{bottom:585.053333pt;}
.ybf{bottom:586.013333pt;}
.y1d{bottom:586.333333pt;}
.y1fe{bottom:586.653333pt;}
.y1a6{bottom:589.693333pt;}
.y11f{bottom:592.573333pt;}
.y247{bottom:593.693333pt;}
.ye9{bottom:595.613333pt;}
.y62{bottom:599.293333pt;}
.y92{bottom:599.453333pt;}
.y14b{bottom:600.253333pt;}
.yd{bottom:603.453333pt;}
.y40{bottom:603.773333pt;}
.y1c1{bottom:606.813333pt;}
.y11e{bottom:606.973333pt;}
.y1d0{bottom:607.933333pt;}
.y191{bottom:610.493333pt;}
.y174{bottom:612.573333pt;}
.ybe{bottom:613.853333pt;}
.y1fd{bottom:614.173333pt;}
.yb2{bottom:617.213333pt;}
.y211{bottom:617.533333pt;}
.y246{bottom:621.213333pt;}
.y3f{bottom:621.373333pt;}
.ye8{bottom:623.133333pt;}
.y1c{bottom:624.573333pt;}
.yc{bottom:626.173333pt;}
.y61{bottom:626.813333pt;}
.y91{bottom:627.133333pt;}
.y1e3{bottom:632.733333pt;}
.y11b{bottom:633.853333pt;}
.y3e{bottom:638.973333pt;}
.y173{bottom:640.253333pt;}
.y1fc{bottom:641.853333pt;}
.y1c0{bottom:642.813333pt;}
.yb1{bottom:644.893333pt;}
.y210{bottom:645.053333pt;}
.y190{bottom:646.493333pt;}
.yb{bottom:648.093333pt;}
.y245{bottom:648.893333pt;}
.ybd{bottom:649.853333pt;}
.ye7{bottom:650.973333pt;}
.y60{bottom:654.493333pt;}
.y90{bottom:654.653333pt;}
.y3d{bottom:656.573333pt;}
.y117{bottom:660.893333pt;}
.y1b{bottom:662.813333pt;}
.y14a{bottom:662.973333pt;}
.y172{bottom:667.773333pt;}
.y1fb{bottom:669.373333pt;}
.y1bf{bottom:671.613333pt;}
.yb0{bottom:672.413333pt;}
.y20f{bottom:672.733333pt;}
.yd0{bottom:673.693333pt;}
.y18f{bottom:674.013333pt;}
.ye6{bottom:675.453333pt;}
.y3c{bottom:676.253333pt;}
.y244{bottom:676.413333pt;}
.y5f{bottom:682.013333pt;}
.y8f{bottom:682.333333pt;}
.ye5{bottom:692.253333pt;}
.y3b{bottom:693.853333pt;}
.y171{bottom:695.453333pt;}
.y1fa{bottom:697.053333pt;}
.yaf{bottom:700.093333pt;}
.y1be{bottom:700.253333pt;}
.y1a{bottom:701.053333pt;}
.y18e{bottom:701.693333pt;}
.ya{bottom:702.493333pt;}
.y243{bottom:704.093333pt;}
.ye4{bottom:709.213333pt;}
.y5e{bottom:709.693333pt;}
.y8e{bottom:709.853333pt;}
.y3a{bottom:711.453333pt;}
.y114{bottom:714.333333pt;}
.y170{bottom:722.973333pt;}
.y1f9{bottom:724.573333pt;}
.y143{bottom:725.693333pt;}
.ye3{bottom:726.013333pt;}
.yae{bottom:727.613333pt;}
.y1bd{bottom:727.933333pt;}
.y9{bottom:728.253333pt;}
.y39{bottom:729.053333pt;}
.y18d{bottom:729.213333pt;}
.y242{bottom:731.613333pt;}
.y5d{bottom:737.213333pt;}
.y8d{bottom:737.533333pt;}
.y19{bottom:739.293333pt;}
.y110{bottom:741.373333pt;}
.ye2{bottom:742.973333pt;}
.y38{bottom:746.653333pt;}
.y16f{bottom:750.813333pt;}
.y1f8{bottom:752.253333pt;}
.y224{bottom:755.133333pt;}
.yad{bottom:755.293333pt;}
.y1bc{bottom:755.453333pt;}
.y18c{bottom:756.893333pt;}
.y241{bottom:759.333333pt;}
.ye1{bottom:760.613333pt;}
.y8{bottom:761.893333pt;}
.y37{bottom:764.293333pt;}
.y5c{bottom:764.933333pt;}
.y8c{bottom:765.093333pt;}
.y146{bottom:776.133333pt;}
.y18{bottom:777.733333pt;}
.ye0{bottom:778.533333pt;}
.y1f7{bottom:780.773333pt;}
.y1a5{bottom:782.853333pt;}
.y1bb{bottom:783.173333pt;}
.y36{bottom:783.973333pt;}
.y18b{bottom:784.453333pt;}
.y240{bottom:786.533333pt;}
.y16e{bottom:788.133333pt;}
.y235{bottom:792.133333pt;}
.y5b{bottom:792.453333pt;}
.y7{bottom:792.613333pt;}
.y8b{bottom:792.773333pt;}
.y107{bottom:794.693333pt;}
.ydf{bottom:796.453333pt;}
.y35{bottom:801.573333pt;}
.y1a4{bottom:810.693333pt;}
.y18a{bottom:812.133333pt;}
.yde{bottom:814.373333pt;}
.y23f{bottom:814.533333pt;}
.y16d{bottom:815.653333pt;}
.y17{bottom:815.973333pt;}
.y34{bottom:819.173333pt;}
.y5a{bottom:820.133333pt;}
.y8a{bottom:820.293333pt;}
.y138{bottom:826.533333pt;}
.ydd{bottom:832.293333pt;}
.y33{bottom:836.773333pt;}
.y1ba{bottom:838.373333pt;}
.y6{bottom:839.333333pt;}
.y189{bottom:839.653333pt;}
.y23e{bottom:842.053333pt;}
.y16c{bottom:843.333333pt;}
.y59{bottom:847.653333pt;}
.y89{bottom:847.973333pt;}
.ydc{bottom:850.213333pt;}
.y16{bottom:854.213333pt;}
.y32{bottom:854.373333pt;}
.y1b9{bottom:865.893333pt;}
.y188{bottom:867.333333pt;}
.ydb{bottom:868.133333pt;}
.y23d{bottom:869.733333pt;}
.y5{bottom:869.893333pt;}
.y16b{bottom:870.853333pt;}
.y31{bottom:874.213333pt;}
.yff{bottom:874.720000pt;}
.y58{bottom:875.333333pt;}
.y88{bottom:875.493333pt;}
.yda{bottom:886.053333pt;}
.yfc{bottom:886.720000pt;}
.y13b{bottom:889.093333pt;}
.y15{bottom:892.453333pt;}
.y1b8{bottom:893.573333pt;}
.y30{bottom:894.053333pt;}
.y187{bottom:894.853333pt;}
.y23c{bottom:897.253333pt;}
.y16a{bottom:898.533333pt;}
.y105{bottom:898.693333pt;}
.y4{bottom:900.613333pt;}
.y57{bottom:902.853333pt;}
.y87{bottom:903.173333pt;}
.yd9{bottom:903.973333pt;}
.yfe{bottom:904.640000pt;}
.y2f{bottom:913.893333pt;}
.y1b7{bottom:921.093333pt;}
.y186{bottom:922.373333pt;}
.y101{bottom:924.613333pt;}
.y23b{bottom:924.933333pt;}
.y169{bottom:925.733333pt;}
.y258{bottom:930.373333pt;}
.y56{bottom:930.533333pt;}
.y14{bottom:930.693333pt;}
.y2e{bottom:933.733333pt;}
.y168{bottom:944.293333pt;}
.y1b6{bottom:948.773333pt;}
.y136{bottom:951.813333pt;}
.y23a{bottom:952.453333pt;}
.y2d{bottom:953.573333pt;}
.y55{bottom:958.053333pt;}
.y13{bottom:958.373333pt;}
.y167{bottom:962.693333pt;}
.y132{bottom:965.413333pt;}
.y2c{bottom:973.413333pt;}
.y12{bottom:976.933333pt;}
.y166{bottom:980.773333pt;}
.y239{bottom:982.853333pt;}
.y54{bottom:985.573333pt;}
.y86{bottom:985.893333pt;}
.y2b{bottom:993.253333pt;}
.y11{bottom:995.013333pt;}
.y165{bottom:997.573333pt;}
.y2a{bottom:1013.280000pt;}
.y10{bottom:1013.440000pt;}
.y85{bottom:1013.600000pt;}
.y100{bottom:1014.400000pt;}
.y164{bottom:1014.560000pt;}
.y1{bottom:1032.800000pt;}
.h1b{height:12.320000pt;}
.hf{height:22.400000pt;}
.h28{height:24.640000pt;}
.h11{height:25.280000pt;}
.h15{height:26.240000pt;}
.h17{height:26.400000pt;}
.h18{height:33.760000pt;}
.h23{height:36.800000pt;}
.h26{height:36.832000pt;}
.h19{height:44.722500pt;}
.h20{height:48.960000pt;}
.h21{height:48.992000pt;}
.h25{height:49.120000pt;}
.h14{height:52.672000pt;}
.h16{height:52.800000pt;}
.he{height:57.787500pt;}
.h2{height:58.563750pt;}
.hb{height:59.340000pt;}
.hd{height:60.288750pt;}
.h1e{height:61.280000pt;}
.h2a{height:61.312000pt;}
.h13{height:61.410000pt;}
.h1d{height:61.440000pt;}
.ha{height:62.781250pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h2e{height:66.404375pt;}
.h2d{height:66.511042pt;}
.h2b{height:66.750000pt;}
.h7{height:73.490625pt;}
.h5{height:74.477812pt;}
.h27{height:75.040000pt;}
.h6{height:75.465000pt;}
.h10{height:76.000000pt;}
.h1f{height:99.392000pt;}
.h12{height:103.360000pt;}
.h3{height:107.715000pt;}
.h4{height:111.515625pt;}
.h1a{height:122.152500pt;}
.h1c{height:124.000000pt;}
.h24{height:125.312000pt;}
.h29{height:137.626667pt;}
.hc{height:148.026667pt;}
.h22{height:162.080000pt;}
.h2c{height:370.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:40.000000pt;}
.wf{width:44.352000pt;}
.w14{width:53.632000pt;}
.w12{width:94.432000pt;}
.w11{width:101.120000pt;}
.w13{width:104.000000pt;}
.wc{width:104.032000pt;}
.we{width:113.280000pt;}
.wd{width:122.912000pt;}
.wa{width:143.066667pt;}
.w7{width:143.386667pt;}
.w15{width:174.106667pt;}
.w8{width:191.386667pt;}
.w5{width:191.706667pt;}
.wb{width:195.546667pt;}
.w9{width:239.906667pt;}
.w6{width:240.546667pt;}
.w3{width:307.133333pt;}
.w10{width:384.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:7.200000pt;}
.x44{left:8.320000pt;}
.x16{left:9.626667pt;}
.x45{left:11.520000pt;}
.x40{left:12.800000pt;}
.x3b{left:14.400000pt;}
.x48{left:15.680000pt;}
.x3d{left:16.826667pt;}
.x1f{left:18.080000pt;}
.x4c{left:19.040000pt;}
.x21{left:20.160000pt;}
.x43{left:21.480000pt;}
.x42{left:22.920000pt;}
.x34{left:24.160000pt;}
.x1b{left:25.120000pt;}
.x2e{left:27.034667pt;}
.x1d{left:28.320000pt;}
.x4b{left:31.520000pt;}
.x46{left:32.520000pt;}
.x47{left:33.600000pt;}
.x2b{left:34.874667pt;}
.x22{left:36.954667pt;}
.x4a{left:38.280000pt;}
.x25{left:39.194667pt;}
.x20{left:40.160000pt;}
.x2f{left:42.074667pt;}
.x32{left:43.354667pt;}
.x49{left:45.760000pt;}
.x36{left:47.034667pt;}
.x3f{left:50.234667pt;}
.x28{left:51.360000pt;}
.x26{left:55.840000pt;}
.x24{left:58.080000pt;}
.x31{left:61.760000pt;}
.x30{left:62.880000pt;}
.x27{left:69.626667pt;}
.x2a{left:71.520000pt;}
.x33{left:73.146667pt;}
.x2c{left:82.106667pt;}
.x35{left:83.866667pt;}
.x2d{left:85.626667pt;}
.x29{left:105.626667pt;}
.x1a{left:106.592000pt;}
.x3{left:113.471988pt;}
.x23{left:119.866667pt;}
.x7{left:126.431988pt;}
.x8{left:136.826655pt;}
.xe{left:142.746655pt;}
.xf{left:157.466655pt;}
.x11{left:160.666655pt;}
.x17{left:168.480000pt;}
.x4{left:173.786655pt;}
.x3e{left:192.506667pt;}
.x5{left:196.026655pt;}
.x18{left:202.400000pt;}
.x41{left:208.026667pt;}
.x19{left:210.400000pt;}
.xc{left:243.266655pt;}
.x1{left:273.986655pt;}
.xd{left:286.946655pt;}
.x6{left:296.546655pt;}
.x1c{left:298.306667pt;}
.x37{left:302.466667pt;}
.xa{left:304.066655pt;}
.xb{left:307.746655pt;}
.x15{left:356.546667pt;}
.x14{left:370.493322pt;}
.x9{left:396.893322pt;}
.x39{left:406.493333pt;}
.x4f{left:514.533333pt;}
.x4e{left:525.733322pt;}
.x3a{left:529.413333pt;}
.x1e{left:538.853333pt;}
.x4d{left:633.413333pt;}
.x3c{left:642.693333pt;}
.x12{left:655.973322pt;}
.x13{left:665.599988pt;}
.x10{left:673.119988pt;}
.x2{left:680.479988pt;}
}




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