
    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_59b5dc2a101a52f13c00ea92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_14c16495458755aaf685908c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_60ee58af5d9a39dbc594152b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_88b43c83285617ec1a2555cf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0633910af4731aa786545d69.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_75b16323439574d061efee13.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6f4a7dcdb636a26915dbcff4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_24d5ec8819ecdd8398ebdaf3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b7ff41274ca141563f9a695f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;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_c2f4a3a31db73ff34f6fc77d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.133789;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_e43d5d3e9223ff104d69443c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1b5e9c8526dcc325fa04b9c1.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-71.280000px;}
.v3{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.828000px;}
.ls40{letter-spacing:-0.738000px;}
.ls3e{letter-spacing:-0.702000px;}
.ls17{letter-spacing:-0.666000px;}
.ls42{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.413400px;}
.ls26{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.129600px;}
.ls41{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.053280px;}
.ls3f{letter-spacing:-0.018000px;}
.lsd{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.ls39{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls2c{letter-spacing:0.106800px;}
.ls34{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.120000px;}
.ls3b{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls7{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls43{letter-spacing:0.269400px;}
.ls3c{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.293760px;}
.ls30{letter-spacing:0.316800px;}
.ls5{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.378000px;}
.ls3d{letter-spacing:0.468000px;}
.ls20{letter-spacing:0.513360px;}
.ls2d{letter-spacing:0.513600px;}
.ls1a{letter-spacing:0.542400px;}
.ls2f{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.738000px;}
.ls1b{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.900000px;}
.ls2e{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.233360px;}
.ls8{letter-spacing:3.060000px;}
.ls14{letter-spacing:3.780000px;}
.ls32{letter-spacing:5.940000px;}
.ls1f{letter-spacing:6.660000px;}
.ls11{letter-spacing:8.586720px;}
.ls21{letter-spacing:8.820000px;}
.ls28{letter-spacing:10.260000px;}
.ls23{letter-spacing:10.980000px;}
.ls24{letter-spacing:11.700000px;}
.ls27{letter-spacing:12.420000px;}
.ls6{letter-spacing:13.140000px;}
.ls12{letter-spacing:13.860000px;}
.ls2b{letter-spacing:15.066720px;}
.ls33{letter-spacing:19.620000px;}
.ls35{letter-spacing:19.800000px;}
.ls22{letter-spacing:20.340000px;}
.ls1e{letter-spacing:23.220000px;}
.ls10{letter-spacing:26.820000px;}
.lsb{letter-spacing:36.180000px;}
.ls2a{letter-spacing:44.562720px;}
.ls36{letter-spacing:55.620000px;}
.ls38{letter-spacing:55.800000px;}
.ls13{letter-spacing:70.020000px;}
.ls19{letter-spacing:74.340000px;}
.ls4{letter-spacing:276.600000px;}
.ls3{letter-spacing:411.276000px;}
.ls29{letter-spacing:430.020000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws16{word-spacing:-54.468000px;}
.ws15{word-spacing:-54.270000px;}
.ws14{word-spacing:-54.000000px;}
.ws12{word-spacing:-16.280640px;}
.ws10{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.606000px;}
.wsf{word-spacing:-15.453600px;}
.ws2{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.526600px;}
.ws7{word-spacing:-14.274000px;}
.wsc{word-spacing:-13.860000px;}
.ws1d{word-spacing:-13.680000px;}
.ws1c{word-spacing:-13.626000px;}
.ws1e{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.482000px;}
.ws1b{word-spacing:-13.392000px;}
.ws19{word-spacing:-13.140000px;}
.ws17{word-spacing:-12.798000px;}
.ws1a{word-spacing:-12.762000px;}
.ws9{word-spacing:-12.672000px;}
.ws20{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.329400px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.064160px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-4.354560px;}
._15{margin-left:-3.279360px;}
._5{margin-left:-2.058480px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._4{width:2.896800px;}
._9{width:3.907920px;}
._7{width:5.200080px;}
._6{width:6.763680px;}
._c{width:8.017200px;}
._d{width:9.561600px;}
._8{width:11.057760px;}
._1a{width:12.109200px;}
._2{width:13.169520px;}
._3{width:14.581680px;}
._19{width:16.135200px;}
._12{width:17.224800px;}
._13{width:18.286560px;}
._1c{width:19.308960px;}
._1b{width:20.478480px;}
._21{width:22.529520px;}
._20{width:23.586960px;}
._a{width:25.156080px;}
._b{width:26.332080px;}
._17{width:27.762960px;}
._18{width:29.103120px;}
._22{width:30.612960px;}
._28{width:31.662240px;}
._1f{width:32.683440px;}
._1e{width:33.824160px;}
._1d{width:34.926480px;}
._14{width:36.154800px;}
._10{width:37.230480px;}
._11{width:38.276880px;}
._2a{width:39.561120px;}
._f{width:42.369840px;}
._e{width:43.385760px;}
._27{width:49.794000px;}
._26{width:51.214320px;}
._30{width:55.124160px;}
._29{width:56.286720px;}
._2e{width:57.653280px;}
._2f{width:62.867520px;}
._2d{width:64.227840px;}
._2c{width:65.479680px;}
._25{width:73.520160px;}
._23{width:74.520720px;}
._24{width:75.887760px;}
._2b{width:77.478240px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fs9{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y206{bottom:2.340000px;}
.yd3{bottom:2.880000px;}
.y169{bottom:2.910000px;}
.ydf{bottom:3.060000px;}
.ye6{bottom:3.240000px;}
.y4b{bottom:4.140000px;}
.y3{bottom:4.320000px;}
.y8c{bottom:4.530000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.y4d{bottom:7.200000px;}
.y91{bottom:7.770000px;}
.yd5{bottom:10.620000px;}
.ye1{bottom:10.800000px;}
.y137{bottom:11.160000px;}
.y4c{bottom:12.060000px;}
.y207{bottom:16.380000px;}
.yd9{bottom:18.360000px;}
.y1e6{bottom:18.390000px;}
.yd1{bottom:18.540000px;}
.yda{bottom:26.100000px;}
.y13f{bottom:26.145000px;}
.yd4{bottom:26.280000px;}
.y9{bottom:32.940000px;}
.yd8{bottom:33.840000px;}
.y140{bottom:33.885000px;}
.yd2{bottom:34.020000px;}
.yde{bottom:34.050000px;}
.y8a{bottom:35.490000px;}
.ye9{bottom:41.760000px;}
.ye0{bottom:41.790000px;}
.y7{bottom:48.600000px;}
.ydb{bottom:49.320000px;}
.ye3{bottom:49.500000px;}
.ydd{bottom:49.530000px;}
.y1e2{bottom:65.160000px;}
.y6{bottom:72.900000px;}
.ye4{bottom:88.200000px;}
.y88{bottom:89.100000px;}
.yc9{bottom:90.000000px;}
.ye2{bottom:90.360000px;}
.y208{bottom:92.340000px;}
.y205{bottom:93.780000px;}
.y11c{bottom:97.200000px;}
.y49{bottom:97.380000px;}
.y16d{bottom:101.160000px;}
.y135{bottom:104.580000px;}
.y194{bottom:104.760000px;}
.y87{bottom:106.380000px;}
.yc8{bottom:107.100000px;}
.y11b{bottom:114.480000px;}
.y48{bottom:114.660000px;}
.y16c{bottom:115.920000px;}
.y1a6{bottom:121.320000px;}
.y134{bottom:121.860000px;}
.y193{bottom:122.040000px;}
.y86{bottom:123.660000px;}
.yc7{bottom:124.380000px;}
.y11a{bottom:131.760000px;}
.y47{bottom:131.940000px;}
.y204{bottom:132.120000px;}
.y16b{bottom:132.300000px;}
.y1df{bottom:138.420000px;}
.y133{bottom:138.960000px;}
.y192{bottom:139.140000px;}
.y85{bottom:140.940000px;}
.yc6{bottom:141.660000px;}
.y119{bottom:148.860000px;}
.y46{bottom:149.040000px;}
.y203{bottom:149.400000px;}
.y132{bottom:153.000000px;}
.ydc{bottom:153.180000px;}
.y1de{bottom:155.700000px;}
.y191{bottom:156.420000px;}
.y84{bottom:158.220000px;}
.yc5{bottom:158.940000px;}
.y16a{bottom:163.980000px;}
.y118{bottom:166.140000px;}
.y45{bottom:166.320000px;}
.y202{bottom:166.680000px;}
.y1dd{bottom:172.980000px;}
.y190{bottom:173.700000px;}
.y83{bottom:175.500000px;}
.yc4{bottom:176.220000px;}
.y168{bottom:180.360000px;}
.y1a5{bottom:180.540000px;}
.y117{bottom:183.450000px;}
.y44{bottom:183.630000px;}
.y201{bottom:183.990000px;}
.y1dc{bottom:190.290000px;}
.y82{bottom:192.630000px;}
.yc3{bottom:193.530000px;}
.y167{bottom:196.590000px;}
.y1a4{bottom:197.670000px;}
.y43{bottom:200.910000px;}
.y200{bottom:201.270000px;}
.y116{bottom:201.810000px;}
.y1db{bottom:207.570000px;}
.y81{bottom:209.910000px;}
.yc2{bottom:210.630000px;}
.y166{bottom:212.790000px;}
.y1a3{bottom:214.950000px;}
.yd7{bottom:216.210000px;}
.y42{bottom:218.190000px;}
.y1ff{bottom:218.370000px;}
.y115{bottom:219.090000px;}
.y90{bottom:224.280000px;}
.y1da{bottom:224.670000px;}
.y80{bottom:227.190000px;}
.yc1{bottom:227.910000px;}
.y165{bottom:229.170000px;}
.y1a2{bottom:232.230000px;}
.y18f{bottom:232.950000px;}
.y41{bottom:235.470000px;}
.y1fe{bottom:235.650000px;}
.y114{bottom:236.190000px;}
.y1d9{bottom:241.950000px;}
.yc0{bottom:245.190000px;}
.y164{bottom:245.370000px;}
.y8f{bottom:247.530000px;}
.y1a1{bottom:249.510000px;}
.y40{bottom:252.570000px;}
.y1fd{bottom:252.930000px;}
.y113{bottom:253.470000px;}
.y1d8{bottom:259.230000px;}
.y7f{bottom:261.750000px;}
.ybf{bottom:262.470000px;}
.y1a0{bottom:266.790000px;}
.y3f{bottom:269.850000px;}
.y1fc{bottom:270.210000px;}
.y112{bottom:270.750000px;}
.y1d7{bottom:276.510000px;}
.y7e{bottom:278.850000px;}
.yd6{bottom:279.030000px;}
.ybe{bottom:279.750000px;}
.y163{bottom:279.930000px;}
.y19f{bottom:284.070000px;}
.y3e{bottom:287.130000px;}
.y1fb{bottom:287.490000px;}
.y111{bottom:288.030000px;}
.y18e{bottom:292.170000px;}
.y1d6{bottom:293.790000px;}
.yd0{bottom:295.230000px;}
.y7d{bottom:296.130000px;}
.ybd{bottom:296.850000px;}
.y162{bottom:297.210000px;}
.y19e{bottom:301.170000px;}
.y89{bottom:304.020000px;}
.y3d{bottom:304.410000px;}
.y1fa{bottom:304.770000px;}
.y110{bottom:305.310000px;}
.y18d{bottom:309.450000px;}
.y1d5{bottom:311.070000px;}
.y7c{bottom:313.410000px;}
.ybc{bottom:314.130000px;}
.y8e{bottom:314.310000px;}
.y161{bottom:314.490000px;}
.y19d{bottom:318.450000px;}
.y3c{bottom:321.690000px;}
.y1f9{bottom:321.870000px;}
.y10f{bottom:322.590000px;}
.y8b{bottom:324.030000px;}
.y18c{bottom:326.730000px;}
.y1d4{bottom:328.170000px;}
.y8d{bottom:330.150000px;}
.y7b{bottom:330.690000px;}
.ybb{bottom:331.410000px;}
.y160{bottom:331.770000px;}
.y19c{bottom:335.730000px;}
.y3b{bottom:338.970000px;}
.y1f8{bottom:339.150000px;}
.y10e{bottom:339.690000px;}
.y18b{bottom:344.010000px;}
.y1d3{bottom:345.450000px;}
.y7a{bottom:347.970000px;}
.yba{bottom:348.690000px;}
.y15f{bottom:349.950000px;}
.y19b{bottom:353.010000px;}
.y3a{bottom:356.070000px;}
.y1f7{bottom:356.430000px;}
.y10d{bottom:358.050000px;}
.ycf{bottom:360.750000px;}
.y18a{bottom:361.290000px;}
.y1d2{bottom:362.730000px;}
.y79{bottom:365.250000px;}
.yb9{bottom:365.970000px;}
.y15e{bottom:368.310000px;}
.y19a{bottom:370.290000px;}
.y39{bottom:373.350000px;}
.y1f6{bottom:373.710000px;}
.y10c{bottom:375.330000px;}
.yce{bottom:378.030000px;}
.y189{bottom:378.570000px;}
.y1d1{bottom:380.010000px;}
.y78{bottom:382.350000px;}
.yb8{bottom:383.250000px;}
.y15d{bottom:385.590000px;}
.y199{bottom:387.570000px;}
.y38{bottom:390.630000px;}
.y1f5{bottom:390.990000px;}
.y10b{bottom:392.610000px;}
.ycd{bottom:395.310000px;}
.y188{bottom:395.670000px;}
.y1d0{bottom:397.290000px;}
.y77{bottom:399.630000px;}
.yb7{bottom:400.350000px;}
.y15c{bottom:403.950000px;}
.y198{bottom:404.670000px;}
.y37{bottom:407.910000px;}
.y1f4{bottom:408.270000px;}
.y10a{bottom:409.890000px;}
.ycc{bottom:412.590000px;}
.y187{bottom:412.950000px;}
.y1cf{bottom:414.570000px;}
.y76{bottom:416.910000px;}
.yb6{bottom:418.710000px;}
.y15b{bottom:421.230000px;}
.y197{bottom:421.950000px;}
.y36{bottom:425.235000px;}
.y1f3{bottom:425.415000px;}
.y109{bottom:427.035000px;}
.ycb{bottom:429.915000px;}
.y186{bottom:430.275000px;}
.y1ce{bottom:431.715000px;}
.y75{bottom:434.235000px;}
.yb5{bottom:437.115000px;}
.y15a{bottom:438.375000px;}
.y196{bottom:439.275000px;}
.y35{bottom:442.515000px;}
.y1f2{bottom:442.695000px;}
.yca{bottom:443.955000px;}
.y108{bottom:444.315000px;}
.y185{bottom:447.555000px;}
.y1cd{bottom:448.995000px;}
.y74{bottom:451.515000px;}
.yb4{bottom:455.475000px;}
.y159{bottom:455.655000px;}
.y195{bottom:456.555000px;}
.y34{bottom:459.615000px;}
.y1f1{bottom:459.975000px;}
.y107{bottom:461.595000px;}
.y184{bottom:464.835000px;}
.y1cc{bottom:466.275000px;}
.y4a{bottom:467.355000px;}
.y73{bottom:468.795000px;}
.y158{bottom:472.935000px;}
.yb3{bottom:473.835000px;}
.y33{bottom:476.895000px;}
.y1f0{bottom:477.255000px;}
.y106{bottom:478.875000px;}
.y183{bottom:481.935000px;}
.y1cb{bottom:483.555000px;}
.y72{bottom:485.895000px;}
.y157{bottom:490.215000px;}
.yb2{bottom:490.935000px;}
.y32{bottom:494.175000px;}
.y1ef{bottom:494.535000px;}
.y105{bottom:497.235000px;}
.y182{bottom:499.215000px;}
.y1ca{bottom:500.835000px;}
.y71{bottom:503.175000px;}
.y156{bottom:507.495000px;}
.yb1{bottom:508.215000px;}
.y31{bottom:511.455000px;}
.y1ee{bottom:511.635000px;}
.y104{bottom:514.515000px;}
.y181{bottom:516.495000px;}
.y1c9{bottom:517.935000px;}
.y70{bottom:520.455000px;}
.y131{bottom:524.235000px;}
.y155{bottom:524.775000px;}
.yb0{bottom:525.495000px;}
.y30{bottom:528.735000px;}
.y1ed{bottom:528.915000px;}
.y103{bottom:531.615000px;}
.y180{bottom:533.775000px;}
.y1c8{bottom:535.215000px;}
.y130{bottom:535.755000px;}
.y6f{bottom:537.735000px;}
.y154{bottom:541.875000px;}
.yaf{bottom:542.775000px;}
.y2f{bottom:546.195000px;}
.y102{bottom:548.895000px;}
.y17f{bottom:551.055000px;}
.y1c7{bottom:552.495000px;}
.y12f{bottom:552.855000px;}
.y6e{bottom:555.015000px;}
.y153{bottom:559.155000px;}
.y2e{bottom:560.055000px;}
.y1ec{bottom:563.475000px;}
.y101{bottom:566.175000px;}
.y17e{bottom:568.335000px;}
.y1c6{bottom:569.775000px;}
.y12e{bottom:570.135000px;}
.y6d{bottom:572.295000px;}
.y2d{bottom:573.915000px;}
.y152{bottom:576.435000px;}
.yae{bottom:577.335000px;}
.y1eb{bottom:580.755000px;}
.y100{bottom:583.455000px;}
.y17d{bottom:585.435000px;}
.y1c5{bottom:587.055000px;}
.y12d{bottom:587.415000px;}
.y2c{bottom:587.775000px;}
.y6c{bottom:589.395000px;}
.y151{bottom:593.715000px;}
.yad{bottom:594.435000px;}
.y1ea{bottom:598.035000px;}
.yff{bottom:600.735000px;}
.y2b{bottom:601.455000px;}
.y17c{bottom:602.715000px;}
.y1c4{bottom:604.335000px;}
.y12c{bottom:604.695000px;}
.y6b{bottom:606.675000px;}
.y150{bottom:610.995000px;}
.yac{bottom:611.715000px;}
.y1e9{bottom:615.135000px;}
.y2a{bottom:615.315000px;}
.yfe{bottom:618.015000px;}
.y17b{bottom:619.995000px;}
.y1c3{bottom:621.435000px;}
.y12b{bottom:621.975000px;}
.y6a{bottom:623.955000px;}
.y14f{bottom:628.275000px;}
.yab{bottom:628.995000px;}
.y29{bottom:629.175000px;}
.y1e8{bottom:632.415000px;}
.yfd{bottom:635.115000px;}
.y17a{bottom:637.275000px;}
.y1c2{bottom:638.715000px;}
.y12a{bottom:639.255000px;}
.y69{bottom:641.235000px;}
.y28{bottom:642.855000px;}
.y14e{bottom:645.375000px;}
.yaa{bottom:646.275000px;}
.y1e7{bottom:649.695000px;}
.yfc{bottom:652.395000px;}
.y179{bottom:654.555000px;}
.y1c1{bottom:655.995000px;}
.y129{bottom:656.355000px;}
.y27{bottom:656.715000px;}
.y68{bottom:658.515000px;}
.y14d{bottom:662.655000px;}
.ya9{bottom:663.555000px;}
.y1e5{bottom:663.735000px;}
.y26{bottom:670.605000px;}
.yfb{bottom:670.785000px;}
.y178{bottom:671.865000px;}
.y1c0{bottom:673.305000px;}
.y128{bottom:673.665000px;}
.y67{bottom:675.645000px;}
.y14c{bottom:679.965000px;}
.ya8{bottom:680.865000px;}
.y25{bottom:684.285000px;}
.yfa{bottom:688.065000px;}
.y177{bottom:688.965000px;}
.y1bf{bottom:690.585000px;}
.y127{bottom:690.945000px;}
.y66{bottom:692.925000px;}
.y14b{bottom:697.245000px;}
.ya7{bottom:697.965000px;}
.y24{bottom:698.145000px;}
.yf9{bottom:705.345000px;}
.y176{bottom:706.245000px;}
.y1be{bottom:707.865000px;}
.y126{bottom:708.225000px;}
.y65{bottom:710.205000px;}
.y23{bottom:712.005000px;}
.y14a{bottom:714.525000px;}
.ya6{bottom:715.245000px;}
.yf8{bottom:722.445000px;}
.y175{bottom:723.525000px;}
.y1bd{bottom:724.965000px;}
.y125{bottom:725.505000px;}
.y22{bottom:725.685000px;}
.y1e4{bottom:725.865000px;}
.y64{bottom:727.485000px;}
.y149{bottom:731.625000px;}
.ya5{bottom:732.525000px;}
.y21{bottom:739.545000px;}
.yf7{bottom:739.725000px;}
.y174{bottom:740.805000px;}
.y1e3{bottom:741.345000px;}
.y1bc{bottom:742.245000px;}
.y124{bottom:742.785000px;}
.y63{bottom:744.765000px;}
.y148{bottom:748.905000px;}
.ya4{bottom:749.805000px;}
.y20{bottom:753.405000px;}
.y1e1{bottom:756.825000px;}
.yf6{bottom:757.005000px;}
.y1bb{bottom:759.525000px;}
.y123{bottom:759.885000px;}
.y62{bottom:762.045000px;}
.y147{bottom:766.185000px;}
.y1f{bottom:767.085000px;}
.yf5{bottom:774.285000px;}
.y173{bottom:775.365000px;}
.y122{bottom:776.265000px;}
.y1ba{bottom:776.805000px;}
.y1e{bottom:780.945000px;}
.y146{bottom:783.465000px;}
.y61{bottom:783.645000px;}
.ya3{bottom:784.365000px;}
.y121{bottom:789.225000px;}
.yf4{bottom:791.565000px;}
.y172{bottom:792.465000px;}
.y1b9{bottom:794.085000px;}
.y1d{bottom:794.805000px;}
.y145{bottom:800.745000px;}
.ya2{bottom:801.465000px;}
.y60{bottom:805.425000px;}
.y120{bottom:806.505000px;}
.y1c{bottom:808.485000px;}
.yf3{bottom:808.845000px;}
.y171{bottom:809.745000px;}
.y1b8{bottom:811.185000px;}
.y144{bottom:818.025000px;}
.ya1{bottom:818.745000px;}
.y1b{bottom:822.345000px;}
.y11f{bottom:822.525000px;}
.y5f{bottom:823.785000px;}
.yf2{bottom:825.945000px;}
.y170{bottom:827.025000px;}
.y1b7{bottom:828.465000px;}
.y11e{bottom:830.805000px;}
.y1e0{bottom:834.585000px;}
.y143{bottom:835.125000px;}
.ya0{bottom:836.025000px;}
.y1a{bottom:836.205000px;}
.y5e{bottom:842.145000px;}
.yf1{bottom:843.225000px;}
.y16f{bottom:844.305000px;}
.y1b6{bottom:845.745000px;}
.y19{bottom:849.885000px;}
.y142{bottom:852.405000px;}
.y9f{bottom:853.305000px;}
.y5d{bottom:860.505000px;}
.y1b5{bottom:863.025000px;}
.y16e{bottom:865.905000px;}
.y18{bottom:866.985000px;}
.y141{bottom:867.165000px;}
.y9e{bottom:870.585000px;}
.y5c{bottom:878.685000px;}
.yf0{bottom:878.865000px;}
.y1b4{bottom:880.305000px;}
.y13e{bottom:883.545000px;}
.y17{bottom:884.265000px;}
.y9d{bottom:887.685000px;}
.y5b{bottom:895.965000px;}
.yef{bottom:896.145000px;}
.y1b3{bottom:897.585000px;}
.y16{bottom:901.545000px;}
.y9c{bottom:904.965000px;}
.y5a{bottom:913.290000px;}
.yee{bottom:913.470000px;}
.y1b2{bottom:914.730000px;}
.y15{bottom:918.870000px;}
.y9b{bottom:922.290000px;}
.yed{bottom:929.490000px;}
.y59{bottom:930.570000px;}
.y13d{bottom:930.930000px;}
.y1b1{bottom:932.010000px;}
.y14{bottom:936.150000px;}
.y9a{bottom:939.570000px;}
.yec{bottom:941.010000px;}
.y58{bottom:947.850000px;}
.y1b0{bottom:949.290000px;}
.yeb{bottom:955.770000px;}
.y99{bottom:956.850000px;}
.y13c{bottom:962.610000px;}
.y57{bottom:965.130000px;}
.y1af{bottom:966.570000px;}
.y13{bottom:971.250000px;}
.y98{bottom:974.130000px;}
.y13b{bottom:978.990000px;}
.y56{bottom:982.230000px;}
.y1ae{bottom:983.850000px;}
.y97{bottom:991.230000px;}
.y12{bottom:991.950000px;}
.y13a{bottom:995.190000px;}
.y55{bottom:999.510000px;}
.y1ad{bottom:1001.130000px;}
.y96{bottom:1008.510000px;}
.y139{bottom:1011.390000px;}
.y11{bottom:1012.650000px;}
.y54{bottom:1016.790000px;}
.y1ac{bottom:1018.230000px;}
.yea{bottom:1018.590000px;}
.y95{bottom:1025.790000px;}
.y138{bottom:1027.770000px;}
.y10{bottom:1033.350000px;}
.y53{bottom:1034.070000px;}
.y1ab{bottom:1035.510000px;}
.y94{bottom:1043.070000px;}
.y136{bottom:1043.970000px;}
.y52{bottom:1051.350000px;}
.y1aa{bottom:1052.790000px;}
.yf{bottom:1054.050000px;}
.y93{bottom:1060.350000px;}
.y51{bottom:1068.630000px;}
.y1a9{bottom:1070.070000px;}
.y92{bottom:1077.630000px;}
.ye8{bottom:1081.410000px;}
.y50{bottom:1085.730000px;}
.y1a8{bottom:1087.350000px;}
.ye{bottom:1094.730000px;}
.y4f{bottom:1103.010000px;}
.y1a7{bottom:1104.630000px;}
.yd{bottom:1112.010000px;}
.y4e{bottom:1124.790000px;}
.yc{bottom:1129.290000px;}
.y11d{bottom:1136.310000px;}
.ye7{bottom:1144.230000px;}
.yb{bottom:1146.570000px;}
.ye5{bottom:1160.640000px;}
.ya{bottom:1163.880000px;}
.y5{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h20{height:5.653125px;}
.h1c{height:15.480000px;}
.h2d{height:15.516000px;}
.h29{height:15.660000px;}
.h23{height:15.696000px;}
.h21{height:17.280000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h25{height:29.678906px;}
.h2a{height:30.960000px;}
.h27{height:31.860000px;}
.h14{height:32.835938px;}
.h13{height:33.011719px;}
.h30{height:35.100000px;}
.h24{height:35.332031px;}
.h3{height:38.089687px;}
.hf{height:40.231406px;}
.h26{height:40.985156px;}
.h1a{height:41.220000px;}
.h2c{height:44.507812px;}
.h19{height:45.035156px;}
.h2b{height:46.476000px;}
.h1b{height:46.620000px;}
.he{height:47.321367px;}
.h6{height:47.344922px;}
.h31{height:48.616875px;}
.h10{height:49.838906px;}
.h17{height:49.860000px;}
.h9{height:50.068125px;}
.h22{height:52.971680px;}
.h18{height:52.998047px;}
.h2f{height:53.709961px;}
.h28{height:55.503491px;}
.hd{height:58.621992px;}
.hb{height:58.651172px;}
.h15{height:60.226875px;}
.h4{height:60.741562px;}
.h16{height:61.423863px;}
.h1d{height:61.920000px;}
.h1f{height:62.100000px;}
.h1e{height:62.136000px;}
.h11{height:62.280000px;}
.ha{height:65.884219px;}
.hc{height:72.562500px;}
.h2e{height:77.760000px;}
.h12{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.w20{width:84.960000px;}
.wf{width:115.416000px;}
.we{width:122.796000px;}
.w13{width:122.976000px;}
.w18{width:126.000000px;}
.w19{width:126.036000px;}
.w10{width:129.600000px;}
.w14{width:129.780000px;}
.w11{width:145.116000px;}
.w15{width:145.296000px;}
.w3{width:157.530000px;}
.wd{width:163.080000px;}
.w12{width:163.260000px;}
.w1a{width:192.270000px;}
.w1c{width:214.770000px;}
.w1e{width:225.210000px;}
.w8{width:228.990000px;}
.w16{width:232.410000px;}
.w1d{width:237.450000px;}
.wb{width:241.020000px;}
.w4{width:253.110000px;}
.w2{width:269.670000px;}
.wc{width:327.420000px;}
.wa{width:434.415000px;}
.w17{width:445.755000px;}
.w21{width:595.545000px;}
.w1b{width:678.885000px;}
.w6{width:680.325000px;}
.w1f{width:682.485000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x51{left:1.980000px;}
.x53{left:5.220000px;}
.x2{left:8.100000px;}
.x16{left:9.360000px;}
.x2e{left:11.700000px;}
.x2a{left:20.205000px;}
.x48{left:24.330000px;}
.x30{left:25.380000px;}
.x40{left:29.730000px;}
.x47{left:31.500000px;}
.x2c{left:33.840000px;}
.x4{left:35.820000px;}
.x4a{left:38.340000px;}
.x29{left:42.885000px;}
.x42{left:44.280000px;}
.x3c{left:45.894000px;}
.x4f{left:47.160000px;}
.x6{left:50.040000px;}
.x45{left:52.380000px;}
.x33{left:54.180000px;}
.x43{left:55.800000px;}
.x32{left:58.005000px;}
.x27{left:61.014000px;}
.x34{left:69.165000px;}
.x1f{left:71.310000px;}
.x18{left:72.360000px;}
.x1d{left:74.370000px;}
.x31{left:78.114000px;}
.x46{left:85.545000px;}
.x44{left:88.965000px;}
.x13{left:97.596000px;}
.x4e{left:100.800000px;}
.x14{left:104.256000px;}
.x1{left:106.416000px;}
.x4d{left:110.160000px;}
.x39{left:115.595987px;}
.x12{left:127.655987px;}
.x37{left:129.095987px;}
.xb{left:132.875987px;}
.x3e{left:135.000000px;}
.x1c{left:146.880000px;}
.x26{left:150.509987px;}
.x11{left:159.509987px;}
.x10{left:162.929987px;}
.x25{left:175.709987px;}
.x3b{left:187.769987px;}
.x52{left:191.370000px;}
.x9{left:204.509987px;}
.xc{left:215.309987px;}
.x49{left:218.729987px;}
.x1e{left:232.589987px;}
.x1a{left:250.769987px;}
.x28{left:270.930000px;}
.x23{left:280.620000px;}
.x3a{left:286.094987px;}
.x22{left:307.334987px;}
.x4b{left:322.635000px;}
.x19{left:327.279000px;}
.x8{left:328.359000px;}
.x15{left:333.255000px;}
.x1b{left:335.594987px;}
.x3d{left:340.275000px;}
.x17{left:354.495000px;}
.x3{left:376.095000px;}
.x2b{left:394.455000px;}
.x50{left:418.574987px;}
.xa{left:446.474987px;}
.xd{left:448.814987px;}
.x3f{left:466.995000px;}
.x2d{left:510.585000px;}
.x35{left:515.769000px;}
.x5{left:533.625000px;}
.x20{left:536.684987px;}
.x4c{left:560.805000px;}
.x21{left:576.824987px;}
.x41{left:593.745000px;}
.xe{left:596.984987px;}
.x2f{left:640.905000px;}
.xf{left:661.244987px;}
.x36{left:689.549987px;}
.x24{left:745.889987px;}
.x38{left:774.329987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-63.360000pt;}
.v3{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls40{letter-spacing:-0.656000pt;}
.ls3e{letter-spacing:-0.624000pt;}
.ls17{letter-spacing:-0.592000pt;}
.ls42{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.367467pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.115200pt;}
.ls41{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls3f{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.ls39{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls2c{letter-spacing:0.094933pt;}
.ls34{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls3b{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls7{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls43{letter-spacing:0.239467pt;}
.ls3c{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.261120pt;}
.ls30{letter-spacing:0.281600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.336000pt;}
.ls3d{letter-spacing:0.416000pt;}
.ls20{letter-spacing:0.456320pt;}
.ls2d{letter-spacing:0.456533pt;}
.ls1a{letter-spacing:0.482133pt;}
.ls2f{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.656000pt;}
.ls1b{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.096320pt;}
.ls8{letter-spacing:2.720000pt;}
.ls14{letter-spacing:3.360000pt;}
.ls32{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:5.920000pt;}
.ls11{letter-spacing:7.632640pt;}
.ls21{letter-spacing:7.840000pt;}
.ls28{letter-spacing:9.120000pt;}
.ls23{letter-spacing:9.760000pt;}
.ls24{letter-spacing:10.400000pt;}
.ls27{letter-spacing:11.040000pt;}
.ls6{letter-spacing:11.680000pt;}
.ls12{letter-spacing:12.320000pt;}
.ls2b{letter-spacing:13.392640pt;}
.ls33{letter-spacing:17.440000pt;}
.ls35{letter-spacing:17.600000pt;}
.ls22{letter-spacing:18.080000pt;}
.ls1e{letter-spacing:20.640000pt;}
.ls10{letter-spacing:23.840000pt;}
.lsb{letter-spacing:32.160000pt;}
.ls2a{letter-spacing:39.611307pt;}
.ls36{letter-spacing:49.440000pt;}
.ls38{letter-spacing:49.600000pt;}
.ls13{letter-spacing:62.240000pt;}
.ls19{letter-spacing:66.080000pt;}
.ls4{letter-spacing:245.866667pt;}
.ls3{letter-spacing:365.578667pt;}
.ls29{letter-spacing:382.240000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws16{word-spacing:-48.416000pt;}
.ws15{word-spacing:-48.240000pt;}
.ws14{word-spacing:-48.000000pt;}
.ws12{word-spacing:-14.471680pt;}
.ws10{word-spacing:-14.240000pt;}
.wsa{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.872000pt;}
.wsf{word-spacing:-13.736533pt;}
.ws2{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.912533pt;}
.ws7{word-spacing:-12.688000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws1d{word-spacing:-12.160000pt;}
.ws1c{word-spacing:-12.112000pt;}
.ws1e{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.984000pt;}
.ws1b{word-spacing:-11.904000pt;}
.ws19{word-spacing:-11.680000pt;}
.ws17{word-spacing:-11.376000pt;}
.ws1a{word-spacing:-11.344000pt;}
.ws9{word-spacing:-11.264000pt;}
.ws20{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.959467pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-8.945920pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-3.870720pt;}
._15{margin-left:-2.914987pt;}
._5{margin-left:-1.829760pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._4{width:2.574933pt;}
._9{width:3.473707pt;}
._7{width:4.622293pt;}
._6{width:6.012160pt;}
._c{width:7.126400pt;}
._d{width:8.499200pt;}
._8{width:9.829120pt;}
._1a{width:10.763733pt;}
._2{width:11.706240pt;}
._3{width:12.961493pt;}
._19{width:14.342400pt;}
._12{width:15.310933pt;}
._13{width:16.254720pt;}
._1c{width:17.163520pt;}
._1b{width:18.203093pt;}
._21{width:20.026240pt;}
._20{width:20.966187pt;}
._a{width:22.360960pt;}
._b{width:23.406293pt;}
._17{width:24.678187pt;}
._18{width:25.869440pt;}
._22{width:27.211520pt;}
._28{width:28.144213pt;}
._1f{width:29.051947pt;}
._1e{width:30.065920pt;}
._1d{width:31.045760pt;}
._14{width:32.137600pt;}
._10{width:33.093760pt;}
._11{width:34.023893pt;}
._2a{width:35.165440pt;}
._f{width:37.662080pt;}
._e{width:38.565120pt;}
._27{width:44.261333pt;}
._26{width:45.523840pt;}
._30{width:48.999253pt;}
._29{width:50.032640pt;}
._2e{width:51.247360pt;}
._2f{width:55.882240pt;}
._2d{width:57.091413pt;}
._2c{width:58.204160pt;}
._25{width:65.351253pt;}
._23{width:66.240640pt;}
._24{width:67.455787pt;}
._2b{width:68.869547pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fs9{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y206{bottom:2.080000pt;}
.yd3{bottom:2.560000pt;}
.y169{bottom:2.586667pt;}
.ydf{bottom:2.720000pt;}
.ye6{bottom:2.880000pt;}
.y4b{bottom:3.680000pt;}
.y3{bottom:3.840000pt;}
.y8c{bottom:4.026667pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.y4d{bottom:6.400000pt;}
.y91{bottom:6.906667pt;}
.yd5{bottom:9.440000pt;}
.ye1{bottom:9.600000pt;}
.y137{bottom:9.920000pt;}
.y4c{bottom:10.720000pt;}
.y207{bottom:14.560000pt;}
.yd9{bottom:16.320000pt;}
.y1e6{bottom:16.346667pt;}
.yd1{bottom:16.480000pt;}
.yda{bottom:23.200000pt;}
.y13f{bottom:23.240000pt;}
.yd4{bottom:23.360000pt;}
.y9{bottom:29.280000pt;}
.yd8{bottom:30.080000pt;}
.y140{bottom:30.120000pt;}
.yd2{bottom:30.240000pt;}
.yde{bottom:30.266667pt;}
.y8a{bottom:31.546667pt;}
.ye9{bottom:37.120000pt;}
.ye0{bottom:37.146667pt;}
.y7{bottom:43.200000pt;}
.ydb{bottom:43.840000pt;}
.ye3{bottom:44.000000pt;}
.ydd{bottom:44.026667pt;}
.y1e2{bottom:57.920000pt;}
.y6{bottom:64.800000pt;}
.ye4{bottom:78.400000pt;}
.y88{bottom:79.200000pt;}
.yc9{bottom:80.000000pt;}
.ye2{bottom:80.320000pt;}
.y208{bottom:82.080000pt;}
.y205{bottom:83.360000pt;}
.y11c{bottom:86.400000pt;}
.y49{bottom:86.560000pt;}
.y16d{bottom:89.920000pt;}
.y135{bottom:92.960000pt;}
.y194{bottom:93.120000pt;}
.y87{bottom:94.560000pt;}
.yc8{bottom:95.200000pt;}
.y11b{bottom:101.760000pt;}
.y48{bottom:101.920000pt;}
.y16c{bottom:103.040000pt;}
.y1a6{bottom:107.840000pt;}
.y134{bottom:108.320000pt;}
.y193{bottom:108.480000pt;}
.y86{bottom:109.920000pt;}
.yc7{bottom:110.560000pt;}
.y11a{bottom:117.120000pt;}
.y47{bottom:117.280000pt;}
.y204{bottom:117.440000pt;}
.y16b{bottom:117.600000pt;}
.y1df{bottom:123.040000pt;}
.y133{bottom:123.520000pt;}
.y192{bottom:123.680000pt;}
.y85{bottom:125.280000pt;}
.yc6{bottom:125.920000pt;}
.y119{bottom:132.320000pt;}
.y46{bottom:132.480000pt;}
.y203{bottom:132.800000pt;}
.y132{bottom:136.000000pt;}
.ydc{bottom:136.160000pt;}
.y1de{bottom:138.400000pt;}
.y191{bottom:139.040000pt;}
.y84{bottom:140.640000pt;}
.yc5{bottom:141.280000pt;}
.y16a{bottom:145.760000pt;}
.y118{bottom:147.680000pt;}
.y45{bottom:147.840000pt;}
.y202{bottom:148.160000pt;}
.y1dd{bottom:153.760000pt;}
.y190{bottom:154.400000pt;}
.y83{bottom:156.000000pt;}
.yc4{bottom:156.640000pt;}
.y168{bottom:160.320000pt;}
.y1a5{bottom:160.480000pt;}
.y117{bottom:163.066667pt;}
.y44{bottom:163.226667pt;}
.y201{bottom:163.546667pt;}
.y1dc{bottom:169.146667pt;}
.y82{bottom:171.226667pt;}
.yc3{bottom:172.026667pt;}
.y167{bottom:174.746667pt;}
.y1a4{bottom:175.706667pt;}
.y43{bottom:178.586667pt;}
.y200{bottom:178.906667pt;}
.y116{bottom:179.386667pt;}
.y1db{bottom:184.506667pt;}
.y81{bottom:186.586667pt;}
.yc2{bottom:187.226667pt;}
.y166{bottom:189.146667pt;}
.y1a3{bottom:191.066667pt;}
.yd7{bottom:192.186667pt;}
.y42{bottom:193.946667pt;}
.y1ff{bottom:194.106667pt;}
.y115{bottom:194.746667pt;}
.y90{bottom:199.360000pt;}
.y1da{bottom:199.706667pt;}
.y80{bottom:201.946667pt;}
.yc1{bottom:202.586667pt;}
.y165{bottom:203.706667pt;}
.y1a2{bottom:206.426667pt;}
.y18f{bottom:207.066667pt;}
.y41{bottom:209.306667pt;}
.y1fe{bottom:209.466667pt;}
.y114{bottom:209.946667pt;}
.y1d9{bottom:215.066667pt;}
.yc0{bottom:217.946667pt;}
.y164{bottom:218.106667pt;}
.y8f{bottom:220.026667pt;}
.y1a1{bottom:221.786667pt;}
.y40{bottom:224.506667pt;}
.y1fd{bottom:224.826667pt;}
.y113{bottom:225.306667pt;}
.y1d8{bottom:230.426667pt;}
.y7f{bottom:232.666667pt;}
.ybf{bottom:233.306667pt;}
.y1a0{bottom:237.146667pt;}
.y3f{bottom:239.866667pt;}
.y1fc{bottom:240.186667pt;}
.y112{bottom:240.666667pt;}
.y1d7{bottom:245.786667pt;}
.y7e{bottom:247.866667pt;}
.yd6{bottom:248.026667pt;}
.ybe{bottom:248.666667pt;}
.y163{bottom:248.826667pt;}
.y19f{bottom:252.506667pt;}
.y3e{bottom:255.226667pt;}
.y1fb{bottom:255.546667pt;}
.y111{bottom:256.026667pt;}
.y18e{bottom:259.706667pt;}
.y1d6{bottom:261.146667pt;}
.yd0{bottom:262.426667pt;}
.y7d{bottom:263.226667pt;}
.ybd{bottom:263.866667pt;}
.y162{bottom:264.186667pt;}
.y19e{bottom:267.706667pt;}
.y89{bottom:270.240000pt;}
.y3d{bottom:270.586667pt;}
.y1fa{bottom:270.906667pt;}
.y110{bottom:271.386667pt;}
.y18d{bottom:275.066667pt;}
.y1d5{bottom:276.506667pt;}
.y7c{bottom:278.586667pt;}
.ybc{bottom:279.226667pt;}
.y8e{bottom:279.386667pt;}
.y161{bottom:279.546667pt;}
.y19d{bottom:283.066667pt;}
.y3c{bottom:285.946667pt;}
.y1f9{bottom:286.106667pt;}
.y10f{bottom:286.746667pt;}
.y8b{bottom:288.026667pt;}
.y18c{bottom:290.426667pt;}
.y1d4{bottom:291.706667pt;}
.y8d{bottom:293.466667pt;}
.y7b{bottom:293.946667pt;}
.ybb{bottom:294.586667pt;}
.y160{bottom:294.906667pt;}
.y19c{bottom:298.426667pt;}
.y3b{bottom:301.306667pt;}
.y1f8{bottom:301.466667pt;}
.y10e{bottom:301.946667pt;}
.y18b{bottom:305.786667pt;}
.y1d3{bottom:307.066667pt;}
.y7a{bottom:309.306667pt;}
.yba{bottom:309.946667pt;}
.y15f{bottom:311.066667pt;}
.y19b{bottom:313.786667pt;}
.y3a{bottom:316.506667pt;}
.y1f7{bottom:316.826667pt;}
.y10d{bottom:318.266667pt;}
.ycf{bottom:320.666667pt;}
.y18a{bottom:321.146667pt;}
.y1d2{bottom:322.426667pt;}
.y79{bottom:324.666667pt;}
.yb9{bottom:325.306667pt;}
.y15e{bottom:327.386667pt;}
.y19a{bottom:329.146667pt;}
.y39{bottom:331.866667pt;}
.y1f6{bottom:332.186667pt;}
.y10c{bottom:333.626667pt;}
.yce{bottom:336.026667pt;}
.y189{bottom:336.506667pt;}
.y1d1{bottom:337.786667pt;}
.y78{bottom:339.866667pt;}
.yb8{bottom:340.666667pt;}
.y15d{bottom:342.746667pt;}
.y199{bottom:344.506667pt;}
.y38{bottom:347.226667pt;}
.y1f5{bottom:347.546667pt;}
.y10b{bottom:348.986667pt;}
.ycd{bottom:351.386667pt;}
.y188{bottom:351.706667pt;}
.y1d0{bottom:353.146667pt;}
.y77{bottom:355.226667pt;}
.yb7{bottom:355.866667pt;}
.y15c{bottom:359.066667pt;}
.y198{bottom:359.706667pt;}
.y37{bottom:362.586667pt;}
.y1f4{bottom:362.906667pt;}
.y10a{bottom:364.346667pt;}
.ycc{bottom:366.746667pt;}
.y187{bottom:367.066667pt;}
.y1cf{bottom:368.506667pt;}
.y76{bottom:370.586667pt;}
.yb6{bottom:372.186667pt;}
.y15b{bottom:374.426667pt;}
.y197{bottom:375.066667pt;}
.y36{bottom:377.986667pt;}
.y1f3{bottom:378.146667pt;}
.y109{bottom:379.586667pt;}
.ycb{bottom:382.146667pt;}
.y186{bottom:382.466667pt;}
.y1ce{bottom:383.746667pt;}
.y75{bottom:385.986667pt;}
.yb5{bottom:388.546667pt;}
.y15a{bottom:389.666667pt;}
.y196{bottom:390.466667pt;}
.y35{bottom:393.346667pt;}
.y1f2{bottom:393.506667pt;}
.yca{bottom:394.626667pt;}
.y108{bottom:394.946667pt;}
.y185{bottom:397.826667pt;}
.y1cd{bottom:399.106667pt;}
.y74{bottom:401.346667pt;}
.yb4{bottom:404.866667pt;}
.y159{bottom:405.026667pt;}
.y195{bottom:405.826667pt;}
.y34{bottom:408.546667pt;}
.y1f1{bottom:408.866667pt;}
.y107{bottom:410.306667pt;}
.y184{bottom:413.186667pt;}
.y1cc{bottom:414.466667pt;}
.y4a{bottom:415.426667pt;}
.y73{bottom:416.706667pt;}
.y158{bottom:420.386667pt;}
.yb3{bottom:421.186667pt;}
.y33{bottom:423.906667pt;}
.y1f0{bottom:424.226667pt;}
.y106{bottom:425.666667pt;}
.y183{bottom:428.386667pt;}
.y1cb{bottom:429.826667pt;}
.y72{bottom:431.906667pt;}
.y157{bottom:435.746667pt;}
.yb2{bottom:436.386667pt;}
.y32{bottom:439.266667pt;}
.y1ef{bottom:439.586667pt;}
.y105{bottom:441.986667pt;}
.y182{bottom:443.746667pt;}
.y1ca{bottom:445.186667pt;}
.y71{bottom:447.266667pt;}
.y156{bottom:451.106667pt;}
.yb1{bottom:451.746667pt;}
.y31{bottom:454.626667pt;}
.y1ee{bottom:454.786667pt;}
.y104{bottom:457.346667pt;}
.y181{bottom:459.106667pt;}
.y1c9{bottom:460.386667pt;}
.y70{bottom:462.626667pt;}
.y131{bottom:465.986667pt;}
.y155{bottom:466.466667pt;}
.yb0{bottom:467.106667pt;}
.y30{bottom:469.986667pt;}
.y1ed{bottom:470.146667pt;}
.y103{bottom:472.546667pt;}
.y180{bottom:474.466667pt;}
.y1c8{bottom:475.746667pt;}
.y130{bottom:476.226667pt;}
.y6f{bottom:477.986667pt;}
.y154{bottom:481.666667pt;}
.yaf{bottom:482.466667pt;}
.y2f{bottom:485.506667pt;}
.y102{bottom:487.906667pt;}
.y17f{bottom:489.826667pt;}
.y1c7{bottom:491.106667pt;}
.y12f{bottom:491.426667pt;}
.y6e{bottom:493.346667pt;}
.y153{bottom:497.026667pt;}
.y2e{bottom:497.826667pt;}
.y1ec{bottom:500.866667pt;}
.y101{bottom:503.266667pt;}
.y17e{bottom:505.186667pt;}
.y1c6{bottom:506.466667pt;}
.y12e{bottom:506.786667pt;}
.y6d{bottom:508.706667pt;}
.y2d{bottom:510.146667pt;}
.y152{bottom:512.386667pt;}
.yae{bottom:513.186667pt;}
.y1eb{bottom:516.226667pt;}
.y100{bottom:518.626667pt;}
.y17d{bottom:520.386667pt;}
.y1c5{bottom:521.826667pt;}
.y12d{bottom:522.146667pt;}
.y2c{bottom:522.466667pt;}
.y6c{bottom:523.906667pt;}
.y151{bottom:527.746667pt;}
.yad{bottom:528.386667pt;}
.y1ea{bottom:531.586667pt;}
.yff{bottom:533.986667pt;}
.y2b{bottom:534.626667pt;}
.y17c{bottom:535.746667pt;}
.y1c4{bottom:537.186667pt;}
.y12c{bottom:537.506667pt;}
.y6b{bottom:539.266667pt;}
.y150{bottom:543.106667pt;}
.yac{bottom:543.746667pt;}
.y1e9{bottom:546.786667pt;}
.y2a{bottom:546.946667pt;}
.yfe{bottom:549.346667pt;}
.y17b{bottom:551.106667pt;}
.y1c3{bottom:552.386667pt;}
.y12b{bottom:552.866667pt;}
.y6a{bottom:554.626667pt;}
.y14f{bottom:558.466667pt;}
.yab{bottom:559.106667pt;}
.y29{bottom:559.266667pt;}
.y1e8{bottom:562.146667pt;}
.yfd{bottom:564.546667pt;}
.y17a{bottom:566.466667pt;}
.y1c2{bottom:567.746667pt;}
.y12a{bottom:568.226667pt;}
.y69{bottom:569.986667pt;}
.y28{bottom:571.426667pt;}
.y14e{bottom:573.666667pt;}
.yaa{bottom:574.466667pt;}
.y1e7{bottom:577.506667pt;}
.yfc{bottom:579.906667pt;}
.y179{bottom:581.826667pt;}
.y1c1{bottom:583.106667pt;}
.y129{bottom:583.426667pt;}
.y27{bottom:583.746667pt;}
.y68{bottom:585.346667pt;}
.y14d{bottom:589.026667pt;}
.ya9{bottom:589.826667pt;}
.y1e5{bottom:589.986667pt;}
.y26{bottom:596.093333pt;}
.yfb{bottom:596.253333pt;}
.y178{bottom:597.213333pt;}
.y1c0{bottom:598.493333pt;}
.y128{bottom:598.813333pt;}
.y67{bottom:600.573333pt;}
.y14c{bottom:604.413333pt;}
.ya8{bottom:605.213333pt;}
.y25{bottom:608.253333pt;}
.yfa{bottom:611.613333pt;}
.y177{bottom:612.413333pt;}
.y1bf{bottom:613.853333pt;}
.y127{bottom:614.173333pt;}
.y66{bottom:615.933333pt;}
.y14b{bottom:619.773333pt;}
.ya7{bottom:620.413333pt;}
.y24{bottom:620.573333pt;}
.yf9{bottom:626.973333pt;}
.y176{bottom:627.773333pt;}
.y1be{bottom:629.213333pt;}
.y126{bottom:629.533333pt;}
.y65{bottom:631.293333pt;}
.y23{bottom:632.893333pt;}
.y14a{bottom:635.133333pt;}
.ya6{bottom:635.773333pt;}
.yf8{bottom:642.173333pt;}
.y175{bottom:643.133333pt;}
.y1bd{bottom:644.413333pt;}
.y125{bottom:644.893333pt;}
.y22{bottom:645.053333pt;}
.y1e4{bottom:645.213333pt;}
.y64{bottom:646.653333pt;}
.y149{bottom:650.333333pt;}
.ya5{bottom:651.133333pt;}
.y21{bottom:657.373333pt;}
.yf7{bottom:657.533333pt;}
.y174{bottom:658.493333pt;}
.y1e3{bottom:658.973333pt;}
.y1bc{bottom:659.773333pt;}
.y124{bottom:660.253333pt;}
.y63{bottom:662.013333pt;}
.y148{bottom:665.693333pt;}
.ya4{bottom:666.493333pt;}
.y20{bottom:669.693333pt;}
.y1e1{bottom:672.733333pt;}
.yf6{bottom:672.893333pt;}
.y1bb{bottom:675.133333pt;}
.y123{bottom:675.453333pt;}
.y62{bottom:677.373333pt;}
.y147{bottom:681.053333pt;}
.y1f{bottom:681.853333pt;}
.yf5{bottom:688.253333pt;}
.y173{bottom:689.213333pt;}
.y122{bottom:690.013333pt;}
.y1ba{bottom:690.493333pt;}
.y1e{bottom:694.173333pt;}
.y146{bottom:696.413333pt;}
.y61{bottom:696.573333pt;}
.ya3{bottom:697.213333pt;}
.y121{bottom:701.533333pt;}
.yf4{bottom:703.613333pt;}
.y172{bottom:704.413333pt;}
.y1b9{bottom:705.853333pt;}
.y1d{bottom:706.493333pt;}
.y145{bottom:711.773333pt;}
.ya2{bottom:712.413333pt;}
.y60{bottom:715.933333pt;}
.y120{bottom:716.893333pt;}
.y1c{bottom:718.653333pt;}
.yf3{bottom:718.973333pt;}
.y171{bottom:719.773333pt;}
.y1b8{bottom:721.053333pt;}
.y144{bottom:727.133333pt;}
.ya1{bottom:727.773333pt;}
.y1b{bottom:730.973333pt;}
.y11f{bottom:731.133333pt;}
.y5f{bottom:732.253333pt;}
.yf2{bottom:734.173333pt;}
.y170{bottom:735.133333pt;}
.y1b7{bottom:736.413333pt;}
.y11e{bottom:738.493333pt;}
.y1e0{bottom:741.853333pt;}
.y143{bottom:742.333333pt;}
.ya0{bottom:743.133333pt;}
.y1a{bottom:743.293333pt;}
.y5e{bottom:748.573333pt;}
.yf1{bottom:749.533333pt;}
.y16f{bottom:750.493333pt;}
.y1b6{bottom:751.773333pt;}
.y19{bottom:755.453333pt;}
.y142{bottom:757.693333pt;}
.y9f{bottom:758.493333pt;}
.y5d{bottom:764.893333pt;}
.y1b5{bottom:767.133333pt;}
.y16e{bottom:769.693333pt;}
.y18{bottom:770.653333pt;}
.y141{bottom:770.813333pt;}
.y9e{bottom:773.853333pt;}
.y5c{bottom:781.053333pt;}
.yf0{bottom:781.213333pt;}
.y1b4{bottom:782.493333pt;}
.y13e{bottom:785.373333pt;}
.y17{bottom:786.013333pt;}
.y9d{bottom:789.053333pt;}
.y5b{bottom:796.413333pt;}
.yef{bottom:796.573333pt;}
.y1b3{bottom:797.853333pt;}
.y16{bottom:801.373333pt;}
.y9c{bottom:804.413333pt;}
.y5a{bottom:811.813333pt;}
.yee{bottom:811.973333pt;}
.y1b2{bottom:813.093333pt;}
.y15{bottom:816.773333pt;}
.y9b{bottom:819.813333pt;}
.yed{bottom:826.213333pt;}
.y59{bottom:827.173333pt;}
.y13d{bottom:827.493333pt;}
.y1b1{bottom:828.453333pt;}
.y14{bottom:832.133333pt;}
.y9a{bottom:835.173333pt;}
.yec{bottom:836.453333pt;}
.y58{bottom:842.533333pt;}
.y1b0{bottom:843.813333pt;}
.yeb{bottom:849.573333pt;}
.y99{bottom:850.533333pt;}
.y13c{bottom:855.653333pt;}
.y57{bottom:857.893333pt;}
.y1af{bottom:859.173333pt;}
.y13{bottom:863.333333pt;}
.y98{bottom:865.893333pt;}
.y13b{bottom:870.213333pt;}
.y56{bottom:873.093333pt;}
.y1ae{bottom:874.533333pt;}
.y97{bottom:881.093333pt;}
.y12{bottom:881.733333pt;}
.y13a{bottom:884.613333pt;}
.y55{bottom:888.453333pt;}
.y1ad{bottom:889.893333pt;}
.y96{bottom:896.453333pt;}
.y139{bottom:899.013333pt;}
.y11{bottom:900.133333pt;}
.y54{bottom:903.813333pt;}
.y1ac{bottom:905.093333pt;}
.yea{bottom:905.413333pt;}
.y95{bottom:911.813333pt;}
.y138{bottom:913.573333pt;}
.y10{bottom:918.533333pt;}
.y53{bottom:919.173333pt;}
.y1ab{bottom:920.453333pt;}
.y94{bottom:927.173333pt;}
.y136{bottom:927.973333pt;}
.y52{bottom:934.533333pt;}
.y1aa{bottom:935.813333pt;}
.yf{bottom:936.933333pt;}
.y93{bottom:942.533333pt;}
.y51{bottom:949.893333pt;}
.y1a9{bottom:951.173333pt;}
.y92{bottom:957.893333pt;}
.ye8{bottom:961.253333pt;}
.y50{bottom:965.093333pt;}
.y1a8{bottom:966.533333pt;}
.ye{bottom:973.093333pt;}
.y4f{bottom:980.453333pt;}
.y1a7{bottom:981.893333pt;}
.yd{bottom:988.453333pt;}
.y4e{bottom:999.813333pt;}
.yc{bottom:1003.813333pt;}
.y11d{bottom:1010.053333pt;}
.ye7{bottom:1017.093333pt;}
.yb{bottom:1019.173333pt;}
.ye5{bottom:1031.680000pt;}
.ya{bottom:1034.560000pt;}
.y5{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h20{height:5.025000pt;}
.h1c{height:13.760000pt;}
.h2d{height:13.792000pt;}
.h29{height:13.920000pt;}
.h23{height:13.952000pt;}
.h21{height:15.360000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h25{height:26.381250pt;}
.h2a{height:27.520000pt;}
.h27{height:28.320000pt;}
.h14{height:29.187500pt;}
.h13{height:29.343750pt;}
.h30{height:31.200000pt;}
.h24{height:31.406250pt;}
.h3{height:33.857500pt;}
.hf{height:35.761250pt;}
.h26{height:36.431250pt;}
.h1a{height:36.640000pt;}
.h2c{height:39.562500pt;}
.h19{height:40.031250pt;}
.h2b{height:41.312000pt;}
.h1b{height:41.440000pt;}
.he{height:42.063437pt;}
.h6{height:42.084375pt;}
.h31{height:43.215000pt;}
.h10{height:44.301250pt;}
.h17{height:44.320000pt;}
.h9{height:44.505000pt;}
.h22{height:47.085938pt;}
.h18{height:47.109375pt;}
.h2f{height:47.742188pt;}
.h28{height:49.336436pt;}
.hd{height:52.108438pt;}
.hb{height:52.134375pt;}
.h15{height:53.535000pt;}
.h4{height:53.992500pt;}
.h16{height:54.598989pt;}
.h1d{height:55.040000pt;}
.h1f{height:55.200000pt;}
.h1e{height:55.232000pt;}
.h11{height:55.360000pt;}
.ha{height:58.563750pt;}
.hc{height:64.500000pt;}
.h2e{height:69.120000pt;}
.h12{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.w20{width:75.520000pt;}
.wf{width:102.592000pt;}
.we{width:109.152000pt;}
.w13{width:109.312000pt;}
.w18{width:112.000000pt;}
.w19{width:112.032000pt;}
.w10{width:115.200000pt;}
.w14{width:115.360000pt;}
.w11{width:128.992000pt;}
.w15{width:129.152000pt;}
.w3{width:140.026667pt;}
.wd{width:144.960000pt;}
.w12{width:145.120000pt;}
.w1a{width:170.906667pt;}
.w1c{width:190.906667pt;}
.w1e{width:200.186667pt;}
.w8{width:203.546667pt;}
.w16{width:206.586667pt;}
.w1d{width:211.066667pt;}
.wb{width:214.240000pt;}
.w4{width:224.986667pt;}
.w2{width:239.706667pt;}
.wc{width:291.040000pt;}
.wa{width:386.146667pt;}
.w17{width:396.226667pt;}
.w21{width:529.373333pt;}
.w1b{width:603.453333pt;}
.w6{width:604.733333pt;}
.w1f{width:606.653333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x51{left:1.760000pt;}
.x53{left:4.640000pt;}
.x2{left:7.200000pt;}
.x16{left:8.320000pt;}
.x2e{left:10.400000pt;}
.x2a{left:17.960000pt;}
.x48{left:21.626667pt;}
.x30{left:22.560000pt;}
.x40{left:26.426667pt;}
.x47{left:28.000000pt;}
.x2c{left:30.080000pt;}
.x4{left:31.840000pt;}
.x4a{left:34.080000pt;}
.x29{left:38.120000pt;}
.x42{left:39.360000pt;}
.x3c{left:40.794667pt;}
.x4f{left:41.920000pt;}
.x6{left:44.480000pt;}
.x45{left:46.560000pt;}
.x33{left:48.160000pt;}
.x43{left:49.600000pt;}
.x32{left:51.560000pt;}
.x27{left:54.234667pt;}
.x34{left:61.480000pt;}
.x1f{left:63.386667pt;}
.x18{left:64.320000pt;}
.x1d{left:66.106667pt;}
.x31{left:69.434667pt;}
.x46{left:76.040000pt;}
.x44{left:79.080000pt;}
.x13{left:86.752000pt;}
.x4e{left:89.600000pt;}
.x14{left:92.672000pt;}
.x1{left:94.592000pt;}
.x4d{left:97.920000pt;}
.x39{left:102.751988pt;}
.x12{left:113.471988pt;}
.x37{left:114.751988pt;}
.xb{left:118.111988pt;}
.x3e{left:120.000000pt;}
.x1c{left:130.560000pt;}
.x26{left:133.786655pt;}
.x11{left:141.786655pt;}
.x10{left:144.826655pt;}
.x25{left:156.186655pt;}
.x3b{left:166.906655pt;}
.x52{left:170.106667pt;}
.x9{left:181.786655pt;}
.xc{left:191.386655pt;}
.x49{left:194.426655pt;}
.x1e{left:206.746655pt;}
.x1a{left:222.906655pt;}
.x28{left:240.826667pt;}
.x23{left:249.440000pt;}
.x3a{left:254.306655pt;}
.x22{left:273.186655pt;}
.x4b{left:286.786667pt;}
.x19{left:290.914667pt;}
.x8{left:291.874667pt;}
.x15{left:296.226667pt;}
.x1b{left:298.306655pt;}
.x3d{left:302.466667pt;}
.x17{left:315.106667pt;}
.x3{left:334.306667pt;}
.x2b{left:350.626667pt;}
.x50{left:372.066655pt;}
.xa{left:396.866655pt;}
.xd{left:398.946655pt;}
.x3f{left:415.106667pt;}
.x2d{left:453.853333pt;}
.x35{left:458.461333pt;}
.x5{left:474.333333pt;}
.x20{left:477.053322pt;}
.x4c{left:498.493333pt;}
.x21{left:512.733322pt;}
.x41{left:527.773333pt;}
.xe{left:530.653322pt;}
.x2f{left:569.693333pt;}
.xf{left:587.773322pt;}
.x36{left:612.933322pt;}
.x24{left:663.013322pt;}
.x38{left:688.293322pt;}
.x7{left:699.333322pt;}
}




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