
    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_ecaa8fd1d382f739a8d43ebb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_d9beaab1b28ff09caca045ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_0f3543f463f032df2a98e3dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_1e4f4b5e478cc9e3373ecc0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_b28e9c665581b4f8eaf15f8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_225db5edc5853e7d821c8e25.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.272949;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_52b6aef868f8689731037b1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fa23e8cdf974ecbfd67b9df5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6f2879e57f34b121e6a6dd58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.746094;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_7ebdb31adad20e733d0a68e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.213379;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8eb67f5264bc5280b338fad4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e29dac56d245560e8622497a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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);}
.v2{vertical-align:-56.160000px;}
.v3{vertical-align:-34.560000px;}
.v4{vertical-align:-8.640000px;}
.v6{vertical-align:-5.760000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.v8{vertical-align:34.560000px;}
.v5{vertical-align:36.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.002016px;}
.ls25{letter-spacing:0.002617px;}
.ls5{letter-spacing:0.008642px;}
.ls7{letter-spacing:0.009242px;}
.lsf{letter-spacing:0.031104px;}
.lsa{letter-spacing:0.050400px;}
.ls24{letter-spacing:0.061609px;}
.ls1e{letter-spacing:0.062209px;}
.lsc{letter-spacing:0.167040px;}
.ls0{letter-spacing:0.201025px;}
.ls11{letter-spacing:0.314537px;}
.ls1d{letter-spacing:0.318474px;}
.lsb{letter-spacing:0.409249px;}
.ls3{letter-spacing:0.461377px;}
.ls1{letter-spacing:0.486569px;}
.ls9{letter-spacing:0.560736px;}
.ls13{letter-spacing:0.643681px;}
.ls16{letter-spacing:0.665280px;}
.ls15{letter-spacing:0.725185px;}
.ls12{letter-spacing:0.732741px;}
.ls1a{letter-spacing:1.349281px;}
.ls19{letter-spacing:1.378658px;}
.ls1b{letter-spacing:1.397089px;}
.ls1c{letter-spacing:1.926857px;}
.lsd{letter-spacing:2.710369px;}
.ls4{letter-spacing:4.150657px;}
.ls18{letter-spacing:4.683457px;}
.ls6{letter-spacing:4.808034px;}
.ls17{letter-spacing:5.792257px;}
.ls10{letter-spacing:6.321889px;}
.lse{letter-spacing:8.672833px;}
.ls8{letter-spacing:15.672961px;}
.ls14{letter-spacing:15.874273px;}
.ls23{letter-spacing:50.441186px;}
.ls20{letter-spacing:61.963491px;}
.ls22{letter-spacing:63.403779px;}
.ls21{letter-spacing:73.485795px;}
.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;}
}
.ws8{word-spacing:-54.719400px;}
.wsc{word-spacing:-15.840000px;}
.ws4{word-spacing:-14.446080px;}
.ws6{word-spacing:-13.132800px;}
.ws2{word-spacing:-12.476023px;}
.ws9{word-spacing:-11.541600px;}
.wsa{word-spacing:-11.499840px;}
.ws3{word-spacing:-11.491200px;}
.wsb{word-spacing:-10.834560px;}
.ws5{word-spacing:-10.177920px;}
.ws0{word-spacing:-9.521280px;}
.ws1{word-spacing:-6.237943px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-13.132800px;}
._7{margin-left:-5.581440px;}
._8{margin-left:-2.782172px;}
._2{margin-left:-1.473120px;}
._0{width:1.330560px;}
._3{width:3.067216px;}
._1{width:4.134240px;}
._9{width:5.676450px;}
._b{width:6.938354px;}
._f{width:8.154720px;}
._6{width:9.647940px;}
._a{width:10.987070px;}
._11{width:11.989440px;}
._19{width:13.571220px;}
._10{width:14.745600px;}
._5{width:15.776640px;}
._4{width:17.012160px;}
._13{width:18.720000px;}
._d{width:20.562059px;}
._c{width:21.633120px;}
._e{width:23.072254px;}
._3c{width:24.135266px;}
._17{width:25.146720px;}
._14{width:26.447040px;}
._15{width:27.614880px;}
._1c{width:29.063520px;}
._1d{width:30.069037px;}
._1b{width:32.083200px;}
._1a{width:33.359040px;}
._3d{width:35.562240px;}
._18{width:37.185120px;}
._1e{width:38.831040px;}
._43{width:42.184800px;}
._16{width:46.228320px;}
._4a{width:51.297995px;}
._3e{width:53.867520px;}
._70{width:59.269542px;}
._48{width:62.710571px;}
._41{width:64.441440px;}
._42{width:65.751281px;}
._28{width:69.523495px;}
._69{width:71.358612px;}
._49{width:74.232875px;}
._22{width:84.077290px;}
._3f{width:90.699840px;}
._40{width:91.721412px;}
._2a{width:95.537106px;}
._6d{width:99.173954px;}
._33{width:100.185438px;}
._4f{width:104.375525px;}
._53{width:110.995494px;}
._27{width:115.612713px;}
._55{width:122.517798px;}
._35{width:125.882497px;}
._2b{width:126.913553px;}
._47{width:129.049359px;}
._5d{width:131.740998px;}
._68{width:144.695819px;}
._6f{width:176.619757px;}
._50{width:178.813450px;}
._2e{width:180.205644px;}
._26{width:190.225451px;}
._45{width:191.342290px;}
._6e{width:193.216331px;}
._46{width:199.220287px;}
._54{width:201.795850px;}
._21{width:203.370067px;}
._63{width:204.676426px;}
._60{width:206.038675px;}
._37{width:207.809598px;}
._2f{width:210.155342px;}
._6c{width:214.005050px;}
._6a{width:216.198731px;}
._5b{width:217.924136px;}
._6b{width:222.022092px;}
._56{width:224.778250px;}
._3a{width:226.205598px;}
._31{width:228.470140px;}
._58{width:229.680586px;}
._5e{width:232.561162px;}
._5a{width:234.001450px;}
._39{width:238.489947px;}
._67{width:239.872315px;}
._57{width:241.202891px;}
._4b{width:244.083467px;}
._4d{width:245.523755px;}
._4e{width:248.404331px;}
._52{width:249.844619px;}
._23{width:253.318190px;}
._2d{width:254.901906px;}
._5c{width:256.847339px;}
._64{width:258.029294px;}
._30{width:259.488306px;}
._38{width:261.472347px;}
._5f{width:269.489389px;}
._3b{width:272.398780px;}
._20{width:279.908661px;}
._25{width:281.482866px;}
._61{width:285.270349px;}
._62{width:291.722685px;}
._66{width:297.374125px;}
._59{width:303.994094px;}
._4c{width:308.314958px;}
._51{width:313.217294px;}
._65{width:315.516398px;}
._34{width:319.392302px;}
._29{width:349.602062px;}
._1f{width:386.939830px;}
._24{width:394.612158px;}
._36{width:406.171022px;}
._2c{width:451.029918px;}
._32{width:576.445278px;}
._44{width:614.454943px;}
.fc4{color:rgb(104,115,25);}
.fc3{color:rgb(105,114,25);}
.fc1{color:rgb(0,0,128);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:21.600000px;}
.fs9{font-size:24.480000px;}
.fs3{font-size:27.359400px;}
.fs1{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fsb{font-size:44.640000px;}
.fs0{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs4{font-size:54.719400px;}
.fsa{font-size:57.600000px;}
.fs7{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:96.479400px;}
.ye7{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y1d8{bottom:2.519850px;}
.y1c3{bottom:2.520000px;}
.y9{bottom:2.880000px;}
.y10f{bottom:4.680000px;}
.y7{bottom:56.880000px;}
.y4a{bottom:57.600000px;}
.y6{bottom:70.560000px;}
.ya{bottom:73.080000px;}
.y5{bottom:82.440000px;}
.y8{bottom:88.560000px;}
.y4{bottom:94.320000px;}
.y218{bottom:132.120000px;}
.y130{bottom:133.560000px;}
.y14d{bottom:134.280000px;}
.y10d{bottom:135.720000px;}
.y219{bottom:136.080000px;}
.yfa{bottom:136.439850px;}
.yb3{bottom:137.520000px;}
.y7d{bottom:137.880000px;}
.y1b4{bottom:141.120000px;}
.ybf{bottom:141.479850px;}
.yc0{bottom:141.840000px;}
.y39{bottom:142.200000px;}
.y49{bottom:142.920000px;}
.y180{bottom:144.000000px;}
.y216{bottom:149.400000px;}
.y12f{bottom:150.840000px;}
.y14c{bottom:151.200000px;}
.y217{bottom:153.000000px;}
.yf9{bottom:153.360000px;}
.y10c{bottom:153.720000px;}
.y7c{bottom:154.080000px;}
.yb2{bottom:154.439850px;}
.y1b3{bottom:156.600000px;}
.y38{bottom:159.120000px;}
.y17f{bottom:159.840000px;}
.y48{bottom:160.920000px;}
.y215{bottom:166.320000px;}
.y12e{bottom:168.120000px;}
.y14b{bottom:168.480000px;}
.y7b{bottom:169.920000px;}
.yf8{bottom:170.640000px;}
.yb1{bottom:171.360000px;}
.y1b2{bottom:171.720000px;}
.y17e{bottom:175.320000px;}
.y37{bottom:176.040000px;}
.ybe{bottom:176.400000px;}
.y47{bottom:178.560000px;}
.y214{bottom:183.240000px;}
.y12d{bottom:185.040000px;}
.y7a{bottom:185.760000px;}
.y1b1{bottom:187.200000px;}
.yb0{bottom:188.640000px;}
.y10b{bottom:189.000000px;}
.y17d{bottom:191.160000px;}
.yf7{bottom:192.240000px;}
.y36{bottom:192.959850px;}
.ybd{bottom:193.680000px;}
.y46{bottom:196.200000px;}
.y212{bottom:200.520000px;}
.y12c{bottom:202.320000px;}
.y14a{bottom:202.680000px;}
.y213{bottom:204.120000px;}
.yaf{bottom:205.920000px;}
.y17c{bottom:206.640000px;}
.yf6{bottom:209.520000px;}
.y35{bottom:209.879850px;}
.ybc{bottom:210.959850px;}
.y10a{bottom:213.840000px;}
.y79{bottom:215.280000px;}
.y210{bottom:217.440000px;}
.y1b0{bottom:217.800000px;}
.y45{bottom:219.600000px;}
.y149{bottom:219.959850px;}
.y211{bottom:221.040000px;}
.y17b{bottom:222.480000px;}
.yae{bottom:222.840000px;}
.y34{bottom:226.800000px;}
.ybb{bottom:228.240000px;}
.y109{bottom:231.840000px;}
.y1af{bottom:233.280000px;}
.y20f{bottom:234.360000px;}
.y12b{bottom:236.520000px;}
.y44{bottom:237.600000px;}
.y17a{bottom:238.320000px;}
.yad{bottom:240.120000px;}
.y148{bottom:241.920000px;}
.y33{bottom:243.720000px;}
.yba{bottom:245.879850px;}
.y1ae{bottom:248.760000px;}
.y108{bottom:249.480000px;}
.y20e{bottom:251.640000px;}
.y12a{bottom:253.800000px;}
.y78{bottom:254.160000px;}
.y43{bottom:255.240000px;}
.yac{bottom:257.400000px;}
.y147{bottom:258.840000px;}
.y32{bottom:260.640000px;}
.yb9{bottom:263.160000px;}
.y1ad{bottom:263.879850px;}
.y107{bottom:267.120000px;}
.y20c{bottom:268.560000px;}
.y179{bottom:269.640000px;}
.y77{bottom:271.440000px;}
.y20d{bottom:272.160000px;}
.y42{bottom:272.879850px;}
.yab{bottom:274.320000px;}
.y146{bottom:276.120000px;}
.y31{bottom:277.560000px;}
.y1ac{bottom:279.360000px;}
.yb8{bottom:280.440000px;}
.y178{bottom:285.120000px;}
.y20a{bottom:285.480000px;}
.y76{bottom:288.720000px;}
.y20b{bottom:289.080000px;}
.y41{bottom:290.520000px;}
.yaa{bottom:291.600000px;}
.y106{bottom:291.959850px;}
.y145{bottom:293.040000px;}
.y30{bottom:294.480000px;}
.yf5{bottom:294.840000px;}
.yb7{bottom:297.720000px;}
.y129{bottom:298.440000px;}
.y177{bottom:300.959850px;}
.y208{bottom:302.400000px;}
.y75{bottom:305.640000px;}
.y209{bottom:306.360000px;}
.y40{bottom:308.160000px;}
.ya9{bottom:308.879850px;}
.y105{bottom:309.959850px;}
.y144{bottom:310.320000px;}
.y2f{bottom:311.040000px;}
.yf4{bottom:311.760000px;}
.yb6{bottom:315.000000px;}
.y176{bottom:316.440000px;}
.y206{bottom:319.680000px;}
.y74{bottom:322.920000px;}
.y207{bottom:323.280000px;}
.y1ab{bottom:325.440000px;}
.y3f{bottom:325.800000px;}
.y104{bottom:327.600000px;}
.y2e{bottom:327.960000px;}
.yf3{bottom:328.680000px;}
.yb5{bottom:332.280000px;}
.y205{bottom:336.600000px;}
.y73{bottom:340.200000px;}
.y1aa{bottom:340.920000px;}
.ya8{bottom:343.080000px;}
.y3e{bottom:343.440000px;}
.y143{bottom:344.520000px;}
.y2d{bottom:344.880000px;}
.y103{bottom:345.240000px;}
.yf2{bottom:345.960000px;}
.yb4{bottom:349.200000px;}
.y128{bottom:353.520000px;}
.y1a9{bottom:356.400000px;}
.y72{bottom:357.120000px;}
.y204{bottom:357.480000px;}
.ya7{bottom:360.360000px;}
.y3d{bottom:361.080000px;}
.y2c{bottom:361.800000px;}
.yf1{bottom:362.880000px;}
.y127{bottom:370.080000px;}
.y203{bottom:370.800000px;}
.y1a8{bottom:371.520000px;}
.ye6{bottom:373.320000px;}
.y71{bottom:374.400000px;}
.y175{bottom:375.840000px;}
.ya6{bottom:377.640000px;}
.y2b{bottom:378.720000px;}
.y142{bottom:379.080000px;}
.yf0{bottom:379.800000px;}
.y102{bottom:380.520000px;}
.y1a7{bottom:387.000000px;}
.y126{bottom:387.360000px;}
.y201{bottom:387.720000px;}
.y202{bottom:391.320000px;}
.y70{bottom:391.680000px;}
.ya5{bottom:394.560000px;}
.y2a{bottom:395.640000px;}
.y141{bottom:396.000000px;}
.y3c{bottom:396.360000px;}
.yef{bottom:397.080000px;}
.y101{bottom:398.160000px;}
.y1a6{bottom:402.480000px;}
.y125{bottom:404.640000px;}
.y200{bottom:408.240000px;}
.y6f{bottom:408.960000px;}
.ya4{bottom:411.840000px;}
.y140{bottom:413.280000px;}
.ye5{bottom:413.640000px;}
.y3b{bottom:414.000000px;}
.y1a5{bottom:417.600000px;}
.y124{bottom:421.560000px;}
.y100{bottom:422.640000px;}
.y1ff{bottom:425.520000px;}
.y6e{bottom:425.880000px;}
.ya3{bottom:429.120000px;}
.y13f{bottom:430.560000px;}
.yee{bottom:430.919850px;}
.ye4{bottom:432.720000px;}
.y1a4{bottom:433.080000px;}
.y123{bottom:438.840000px;}
.yff{bottom:439.560000px;}
.y29{bottom:440.280000px;}
.y3a{bottom:441.720000px;}
.y1fe{bottom:442.440000px;}
.y6d{bottom:443.160000px;}
.ya2{bottom:446.040000px;}
.y13e{bottom:447.480000px;}
.yed{bottom:448.200000px;}
.y174{bottom:448.560000px;}
.ye3{bottom:452.160000px;}
.y1fc{bottom:455.760000px;}
.y122{bottom:456.120000px;}
.yfe{bottom:456.840000px;}
.y1fd{bottom:459.360000px;}
.y6c{bottom:460.440000px;}
.ya1{bottom:463.680000px;}
.y13d{bottom:464.759850px;}
.yec{bottom:465.120000px;}
.ye2{bottom:471.240000px;}
.y1fa{bottom:472.680000px;}
.y121{bottom:473.040000px;}
.y28{bottom:474.120000px;}
.y1fb{bottom:476.640000px;}
.y6b{bottom:477.360000px;}
.y1a3{bottom:479.160000px;}
.y173{bottom:480.600000px;}
.yeb{bottom:482.040000px;}
.y27{bottom:484.919850px;}
.ya0{bottom:489.960000px;}
.ye1{bottom:490.320000px;}
.yfd{bottom:491.040000px;}
.y1f9{bottom:493.560000px;}
.y6a{bottom:494.640000px;}
.y172{bottom:496.440000px;}
.y13c{bottom:499.320000px;}
.y9f{bottom:506.520000px;}
.y1f7{bottom:506.880000px;}
.y120{bottom:507.600000px;}
.yea{bottom:507.960000px;}
.yfc{bottom:508.320000px;}
.ye0{bottom:509.400000px;}
.y26{bottom:509.759850px;}
.y1f8{bottom:510.480000px;}
.y69{bottom:511.919850px;}
.y171{bottom:512.280000px;}
.y13b{bottom:516.240000px;}
.y252{bottom:520.560000px;}
.y9e{bottom:523.800000px;}
.y11f{bottom:524.520000px;}
.y25{bottom:525.240000px;}
.ye9{bottom:525.600000px;}
.y1f6{bottom:527.759850px;}
.ydf{bottom:528.480000px;}
.y68{bottom:528.840000px;}
.y13a{bottom:533.520000px;}
.y250{bottom:538.560000px;}
.y24{bottom:540.720000px;}
.y9d{bottom:541.080000px;}
.y11e{bottom:541.800000px;}
.y251{bottom:542.160000px;}
.yfb{bottom:542.520000px;}
.ye8{bottom:542.880000px;}
.y170{bottom:544.320000px;}
.y1f5{bottom:544.680000px;}
.yde{bottom:549.720000px;}
.y139{bottom:550.800000px;}
.y67{bottom:551.160000px;}
.y24e{bottom:555.480000px;}
.y23{bottom:556.200000px;}
.y9c{bottom:558.000000px;}
.y11d{bottom:559.080000px;}
.y24f{bottom:559.440000px;}
.y16f{bottom:560.160000px;}
.y1f4{bottom:561.600000px;}
.ydd{bottom:566.640000px;}
.y66{bottom:567.720000px;}
.y22{bottom:571.680000px;}
.y24c{bottom:573.480000px;}
.y1f2{bottom:574.920000px;}
.y9b{bottom:575.280000px;}
.y11c{bottom:576.360000px;}
.y24d{bottom:577.080000px;}
.y1f3{bottom:578.520000px;}
.y65{bottom:585.000000px;}
.ydc{bottom:585.720000px;}
.y21{bottom:587.160000px;}
.y111{bottom:590.400000px;}
.y1f0{bottom:591.840000px;}
.y16e{bottom:592.200000px;}
.y9a{bottom:592.560000px;}
.y11b{bottom:593.280000px;}
.y24b{bottom:594.000000px;}
.y1f1{bottom:595.800000px;}
.y64{bottom:602.280000px;}
.y20{bottom:602.640000px;}
.ydb{bottom:605.160000px;}
.y249{bottom:607.320000px;}
.y16d{bottom:608.040000px;}
.y1ee{bottom:609.120000px;}
.y99{bottom:609.840000px;}
.y11a{bottom:610.560000px;}
.y24a{bottom:610.919850px;}
.y1ef{bottom:612.720000px;}
.y1a2{bottom:618.120000px;}
.y138{bottom:619.200000px;}
.y63{bottom:623.520000px;}
.y16c{bottom:623.880000px;}
.yda{bottom:624.240000px;}
.y1ec{bottom:626.040000px;}
.y98{bottom:626.759850px;}
.y119{bottom:627.840000px;}
.y248{bottom:628.200000px;}
.y110{bottom:628.919850px;}
.y1ed{bottom:629.640000px;}
.y1a1{bottom:633.600000px;}
.y1f{bottom:636.120000px;}
.y137{bottom:636.480000px;}
.y16b{bottom:640.080000px;}
.y62{bottom:641.160000px;}
.y10e{bottom:641.520000px;}
.y1ea{bottom:642.960000px;}
.yd9{bottom:643.320000px;}
.y97{bottom:644.040000px;}
.y118{bottom:644.760000px;}
.y247{bottom:645.120000px;}
.y1eb{bottom:646.920000px;}
.y1a0{bottom:649.080000px;}
.y136{bottom:653.760000px;}
.y16a{bottom:655.920000px;}
.y61{bottom:658.080000px;}
.y245{bottom:658.440000px;}
.y1e8{bottom:660.240000px;}
.y1e{bottom:660.600000px;}
.y96{bottom:661.320000px;}
.y246{bottom:662.040000px;}
.yd8{bottom:662.400000px;}
.y1e9{bottom:663.840000px;}
.y19f{bottom:664.200000px;}
.y135{bottom:670.680000px;}
.y169{bottom:671.760000px;}
.y60{bottom:675.000000px;}
.y243{bottom:675.360000px;}
.y1d{bottom:676.080000px;}
.y1e6{bottom:677.160000px;}
.y95{bottom:678.240000px;}
.y244{bottom:679.320000px;}
.y19e{bottom:679.680000px;}
.y1e7{bottom:680.760000px;}
.yd7{bottom:683.640000px;}
.y134{bottom:687.960000px;}
.y117{bottom:689.760000px;}
.y1c{bottom:691.560000px;}
.y242{bottom:692.640000px;}
.y1e4{bottom:694.080000px;}
.y19d{bottom:695.160000px;}
.y94{bottom:695.520000px;}
.y5f{bottom:696.240000px;}
.y1e5{bottom:697.680000px;}
.yd6{bottom:700.560000px;}
.y168{bottom:703.800000px;}
.y133{bottom:705.240000px;}
.y1b{bottom:707.040000px;}
.y240{bottom:709.560000px;}
.y19c{bottom:710.280000px;}
.y1e2{bottom:711.000000px;}
.y93{bottom:712.800000px;}
.y241{bottom:713.160000px;}
.y5e{bottom:713.880000px;}
.y1e3{bottom:714.960000px;}
.yd5{bottom:719.640000px;}
.y1a{bottom:722.520000px;}
.y19b{bottom:725.760000px;}
.y23e{bottom:726.480000px;}
.y1e0{bottom:728.280000px;}
.y92{bottom:729.720000px;}
.y23f{bottom:730.440000px;}
.y5d{bottom:730.800000px;}
.y1e1{bottom:731.880000px;}
.y167{bottom:735.480000px;}
.y19{bottom:738.000000px;}
.yd4{bottom:738.720000px;}
.y132{bottom:739.440000px;}
.y19a{bottom:741.240000px;}
.y23c{bottom:743.400000px;}
.y116{bottom:744.480000px;}
.y1de{bottom:745.200000px;}
.y91{bottom:747.000000px;}
.y23d{bottom:747.360000px;}
.y5c{bottom:747.720000px;}
.y1df{bottom:748.800000px;}
.y166{bottom:751.680000px;}
.y18{bottom:753.480000px;}
.y199{bottom:756.360000px;}
.yd3{bottom:760.320000px;}
.y23b{bottom:760.680000px;}
.y115{bottom:761.040000px;}
.y131{bottom:761.400000px;}
.y1dc{bottom:762.120000px;}
.y90{bottom:764.280000px;}
.y5b{bottom:764.640000px;}
.y1dd{bottom:766.080000px;}
.y165{bottom:767.520000px;}
.y17{bottom:768.960000px;}
.y198{bottom:771.839850px;}
.yd2{bottom:777.240000px;}
.y23a{bottom:777.600000px;}
.y114{bottom:778.320000px;}
.y1da{bottom:779.400000px;}
.y8f{bottom:781.200000px;}
.y5a{bottom:781.920000px;}
.y1db{bottom:783.000000px;}
.y164{bottom:783.360000px;}
.y16{bottom:786.240000px;}
.y197{bottom:787.320000px;}
.y238{bottom:794.520000px;}
.y113{bottom:795.600000px;}
.yd1{bottom:796.320000px;}
.y239{bottom:798.480000px;}
.y59{bottom:798.839850px;}
.y163{bottom:799.560000px;}
.y1d9{bottom:799.920000px;}
.y196{bottom:802.440000px;}
.y8e{bottom:803.519850px;}
.y237{bottom:811.800000px;}
.y112{bottom:812.519850px;}
.y1d6{bottom:813.240000px;}
.yd0{bottom:815.400000px;}
.y15{bottom:815.760000px;}
.y1d7{bottom:816.839850px;}
.y195{bottom:817.920000px;}
.y8d{bottom:820.080000px;}
.y235{bottom:828.720000px;}
.y1d4{bottom:830.160000px;}
.y162{bottom:831.240000px;}
.y236{bottom:832.320000px;}
.y58{bottom:833.040000px;}
.y194{bottom:833.400000px;}
.y1d5{bottom:834.120000px;}
.ycf{bottom:834.480000px;}
.y8c{bottom:837.360000px;}
.y152{bottom:844.560000px;}
.y233{bottom:845.640000px;}
.y1d2{bottom:847.440000px;}
.y193{bottom:848.519850px;}
.y234{bottom:849.600000px;}
.y57{bottom:849.960000px;}
.y1d3{bottom:851.040000px;}
.yce{bottom:853.560000px;}
.y8b{bottom:854.640000px;}
.y1bb{bottom:860.040000px;}
.y14{bottom:861.839850px;}
.y231{bottom:862.920000px;}
.y192{bottom:864.000000px;}
.y151{bottom:864.360000px;}
.y232{bottom:866.519850px;}
.y56{bottom:866.880000px;}
.y1d1{bottom:867.960000px;}
.y1bc{bottom:870.480000px;}
.y8a{bottom:871.560000px;}
.ycd{bottom:874.800000px;}
.y1ba{bottom:875.519850px;}
.y13{bottom:876.600000px;}
.y150{bottom:878.760000px;}
.y191{bottom:879.480000px;}
.y22f{bottom:879.840000px;}
.y1cf{bottom:881.280000px;}
.y230{bottom:883.440000px;}
.y161{bottom:883.800000px;}
.y55{bottom:884.160000px;}
.y1d0{bottom:885.240000px;}
.y89{bottom:888.839850px;}
.y1b9{bottom:890.640000px;}
.y12{bottom:891.360000px;}
.ycc{bottom:891.720000px;}
.y190{bottom:894.600000px;}
.y22e{bottom:896.760000px;}
.y1cd{bottom:898.560000px;}
.y160{bottom:900.360000px;}
.y1ce{bottom:902.160000px;}
.y14f{bottom:902.519850px;}
.y54{bottom:905.760000px;}
.y88{bottom:906.120000px;}
.y18f{bottom:910.080000px;}
.y11{bottom:911.160000px;}
.y22d{bottom:913.680000px;}
.y14e{bottom:915.120000px;}
.y1cb{bottom:915.480000px;}
.y15f{bottom:917.640000px;}
.y1cc{bottom:919.080000px;}
.y1b8{bottom:921.600000px;}
.y53{bottom:922.680000px;}
.y87{bottom:923.400000px;}
.y18e{bottom:925.560000px;}
.ycb{bottom:930.240000px;}
.y22b{bottom:930.960000px;}
.y1c9{bottom:932.400000px;}
.y22c{bottom:934.560000px;}
.y15e{bottom:934.920000px;}
.y1ca{bottom:936.360000px;}
.y1b7{bottom:936.720000px;}
.y86{bottom:940.320000px;}
.y18d{bottom:940.680000px;}
.y10{bottom:946.440000px;}
.y22a{bottom:947.880000px;}
.y1c7{bottom:949.680000px;}
.yca{bottom:951.480000px;}
.y15d{bottom:952.200000px;}
.y1c8{bottom:953.280000px;}
.y18c{bottom:956.160000px;}
.y85{bottom:957.600000px;}
.yf{bottom:960.839850px;}
.y229{bottom:964.800000px;}
.y1c5{bottom:966.600000px;}
.y52{bottom:967.320000px;}
.yc9{bottom:968.400000px;}
.y1b6{bottom:968.760000px;}
.y15c{bottom:969.120000px;}
.y1c6{bottom:970.200000px;}
.y18b{bottom:971.640000px;}
.y84{bottom:974.880000px;}
.ye{bottom:975.600000px;}
.y227{bottom:982.080000px;}
.y1c2{bottom:983.520000px;}
.y228{bottom:985.680000px;}
.y1b5{bottom:986.040000px;}
.y15b{bottom:986.400000px;}
.y18a{bottom:986.760000px;}
.y1c4{bottom:987.120000px;}
.yc8{bottom:987.480000px;}
.y83{bottom:991.800000px;}
.yd{bottom:995.400000px;}
.y225{bottom:999.000000px;}
.y189{bottom:1002.240000px;}
.y226{bottom:1002.600000px;}
.y15a{bottom:1003.680000px;}
.y1c1{bottom:1005.120000px;}
.yc7{bottom:1006.560000px;}
.y82{bottom:1009.080000px;}
.y1c0{bottom:1013.760000px;}
.y223{bottom:1015.920000px;}
.y188{bottom:1017.720000px;}
.y224{bottom:1019.519850px;}
.y159{bottom:1020.600000px;}
.y51{bottom:1021.680000px;}
.y81{bottom:1026.360000px;}
.yc6{bottom:1027.800000px;}
.y187{bottom:1032.839850px;}
.y221{bottom:1032.840000px;}
.y222{bottom:1036.800000px;}
.y158{bottom:1037.880000px;}
.y50{bottom:1038.960000px;}
.y80{bottom:1043.280000px;}
.y1bf{bottom:1044.360000px;}
.yc5{bottom:1044.720000px;}
.y186{bottom:1048.320000px;}
.y21f{bottom:1050.120000px;}
.y220{bottom:1053.720000px;}
.y157{bottom:1055.160000px;}
.y4f{bottom:1055.880000px;}
.y1be{bottom:1059.839850px;}
.yc{bottom:1060.560000px;}
.y185{bottom:1063.800000px;}
.yc4{bottom:1064.160000px;}
.y21d{bottom:1067.040000px;}
.y21e{bottom:1070.640000px;}
.y156{bottom:1072.080000px;}
.y4e{bottom:1073.160000px;}
.y7f{bottom:1077.839850px;}
.y184{bottom:1078.920000px;}
.yc3{bottom:1083.240000px;}
.y21c{bottom:1083.960000px;}
.yb{bottom:1087.920000px;}
.y155{bottom:1089.360000px;}
.y4d{bottom:1090.080000px;}
.y183{bottom:1094.400000px;}
.yc2{bottom:1103.040000px;}
.y1bd{bottom:1103.400000px;}
.y21b{bottom:1105.560000px;}
.y154{bottom:1106.640000px;}
.y4c{bottom:1107.000000px;}
.y182{bottom:1109.880000px;}
.y21a{bottom:1114.560000px;}
.y7e{bottom:1122.480000px;}
.y153{bottom:1123.560000px;}
.y4b{bottom:1123.920000px;}
.y181{bottom:1125.000000px;}
.yc1{bottom:1125.360000px;}
.y3{bottom:1171.080000px;}
.y2{bottom:1184.760000px;}
.y1{bottom:1198.440000px;}
.h16{height:14.400000px;}
.h6{height:15.480000px;}
.h12{height:15.840000px;}
.h9{height:17.280000px;}
.h13{height:21.960000px;}
.he{height:26.120160px;}
.h5{height:44.557920px;}
.h4{height:45.267840px;}
.h8{height:49.803204px;}
.h2{height:50.703840px;}
.h3{height:51.511680px;}
.hd{height:53.776800px;}
.h14{height:54.633600px;}
.h17{height:55.216800px;}
.h7{height:58.385600px;}
.hf{height:59.315830px;}
.h10{height:61.459200px;}
.h11{height:62.438400px;}
.hc{height:67.605120px;}
.ha{height:73.054688px;}
.h18{height:88.336800px;}
.h15{height:89.776800px;}
.hb{height:102.943520px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:2.880000px;}
.w3{width:3.240000px;}
.w51{width:3.600000px;}
.w44{width:3.960000px;}
.w4{width:4.680000px;}
.wc{width:5.760000px;}
.w6b{width:6.480000px;}
.w7{width:9.720000px;}
.w6{width:10.080000px;}
.w5{width:10.440000px;}
.w2{width:18.360000px;}
.w49{width:20.880000px;}
.w45{width:23.760000px;}
.w48{width:26.280000px;}
.w4f{width:27.720000px;}
.w53{width:28.440000px;}
.w52{width:28.800000px;}
.w2d{width:29.520000px;}
.w57{width:30.240000px;}
.w22{width:30.600000px;}
.w11{width:30.960000px;}
.w33{width:31.320000px;}
.w32{width:32.040000px;}
.w36{width:32.400000px;}
.w1a{width:33.119850px;}
.w64{width:33.480000px;}
.w5c{width:34.200000px;}
.w6d{width:34.920000px;}
.w46{width:35.280000px;}
.w62{width:35.640000px;}
.w5f{width:36.720000px;}
.w42{width:37.080000px;}
.w6a{width:37.440000px;}
.w3e{width:37.800000px;}
.w20{width:38.520000px;}
.w30{width:38.880000px;}
.w59{width:39.240000px;}
.w3b{width:39.600000px;}
.w17{width:39.960000px;}
.w4a{width:40.320000px;}
.w13{width:40.680000px;}
.w25{width:41.400000px;}
.wa{width:41.760000px;}
.w23{width:42.120000px;}
.w8{width:42.480000px;}
.w14{width:42.840000px;}
.w12{width:43.560000px;}
.w4e{width:43.920000px;}
.w65{width:44.280000px;}
.w5d{width:45.000000px;}
.w3d{width:45.360000px;}
.w27{width:45.720000px;}
.w29{width:46.800000px;}
.w2e{width:47.160000px;}
.w35{width:47.520000px;}
.w55{width:47.880000px;}
.w2a{width:48.600000px;}
.w3f{width:48.960000px;}
.w68{width:49.320000px;}
.we{width:49.680000px;}
.w66{width:50.040000px;}
.w2b{width:50.400000px;}
.w60{width:51.120000px;}
.w31{width:51.480000px;}
.w24{width:51.840000px;}
.w10{width:52.560000px;}
.w63{width:52.920000px;}
.w1e{width:53.280000px;}
.w4c{width:53.640000px;}
.w1f{width:54.360000px;}
.w26{width:56.880000px;}
.w1c{width:57.600000px;}
.w58{width:57.960000px;}
.w67{width:59.040000px;}
.w4b{width:59.400000px;}
.wd{width:59.760000px;}
.w1d{width:60.120000px;}
.w39{width:61.200000px;}
.w16{width:61.560000px;}
.w18{width:61.920000px;}
.w5e{width:63.360000px;}
.w2f{width:63.719850px;}
.w3c{width:64.080000px;}
.w38{width:64.440000px;}
.w28{width:64.800000px;}
.w21{width:65.160000px;}
.w34{width:65.880000px;}
.w54{width:66.239850px;}
.w6c{width:66.960000px;}
.w41{width:68.400000px;}
.w47{width:68.760000px;}
.w43{width:69.120000px;}
.wf{width:70.200000px;}
.wb{width:70.560000px;}
.w50{width:70.920000px;}
.w1b{width:71.280000px;}
.w19{width:71.640000px;}
.w5a{width:73.800000px;}
.w61{width:78.480000px;}
.w15{width:78.840000px;}
.w5b{width:79.200000px;}
.w2c{width:79.560000px;}
.w4d{width:79.920000px;}
.w69{width:83.520000px;}
.w37{width:84.960000px;}
.w56{width:86.400000px;}
.w3a{width:87.840000px;}
.w40{width:92.160000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x71{left:1.439850px;}
.x2{left:95.760000px;}
.x14{left:98.640000px;}
.x10{left:117.000000px;}
.x28{left:129.240000px;}
.x29{left:132.120000px;}
.x7d{left:135.360000px;}
.xf{left:138.240000px;}
.x1c{left:140.760000px;}
.x6f{left:142.560000px;}
.x1d{left:143.640000px;}
.x4a{left:145.439850px;}
.x76{left:146.520000px;}
.x4b{left:148.320000px;}
.x55{left:150.120000px;}
.x81{left:151.920000px;}
.x56{left:153.000000px;}
.x7f{left:155.160000px;}
.x46{left:156.240000px;}
.x22{left:158.040000px;}
.x47{left:159.480000px;}
.x23{left:160.920000px;}
.x6b{left:163.080000px;}
.x87{left:165.240000px;}
.x65{left:167.040000px;}
.x15{left:168.480000px;}
.x34{left:170.280000px;}
.x2d{left:172.800000px;}
.x73{left:173.880000px;}
.x2a{left:175.680000px;}
.x74{left:176.760000px;}
.x2b{left:178.560000px;}
.x77{left:179.640000px;}
.x50{left:180.720000px;}
.x78{left:182.520000px;}
.x58{left:184.320000px;}
.x1e{left:185.400000px;}
.x59{left:187.200000px;}
.x1f{left:188.280000px;}
.x6c{left:189.360000px;}
.x52{left:190.800000px;}
.x61{left:191.880000px;}
.x30{left:193.680000px;}
.x5c{left:194.760000px;}
.x31{left:196.560000px;}
.x5d{left:197.640000px;}
.x4e{left:198.720000px;}
.x4c{left:199.800000px;}
.x4f{left:201.600000px;}
.x64{left:203.040000px;}
.x3f{left:204.120000px;}
.x48{left:205.200000px;}
.x35{left:206.280000px;}
.x49{left:208.080000px;}
.x36{left:209.160000px;}
.x24{left:210.600000px;}
.x3d{left:212.040000px;}
.x25{left:213.480000px;}
.x3e{left:214.920000px;}
.x62{left:216.360000px;}
.x6d{left:217.440000px;}
.x41{left:218.520000px;}
.x67{left:220.320000px;}
.x68{left:223.200000px;}
.x1a{left:224.280000px;}
.x7b{left:225.720000px;}
.x3b{left:226.800000px;}
.x43{left:227.880000px;}
.x3c{left:229.680000px;}
.x38{left:230.760000px;}
.x75{left:231.840000px;}
.x39{left:233.640000px;}
.x51{left:235.080000px;}
.x33{left:236.880000px;}
.x72{left:240.480000px;}
.x83{left:243.360000px;}
.x2e{left:246.240000px;}
.x79{left:247.320000px;}
.x2c{left:249.120000px;}
.x84{left:250.560000px;}
.x57{left:251.640000px;}
.x85{left:253.080000px;}
.x54{left:255.600000px;}
.x2f{left:256.680000px;}
.x20{left:258.840000px;}
.x60{left:260.280000px;}
.x70{left:263.160000px;}
.x4d{left:264.960000px;}
.xc{left:266.040000px;}
.x32{left:267.120000px;}
.x5e{left:268.200000px;}
.x5a{left:270.000000px;}
.x7e{left:271.080000px;}
.x42{left:272.880000px;}
.x66{left:274.680000px;}
.x80{left:276.480000px;}
.x40{left:278.280000px;}
.x7c{left:279.360000px;}
.x37{left:280.440000px;}
.x44{left:282.240000px;}
.x5f{left:283.320000px;}
.x16{left:284.400000px;}
.x26{left:286.560000px;}
.x45{left:287.640000px;}
.x69{left:292.320000px;}
.x3a{left:293.760000px;}
.x6a{left:296.280000px;}
.x6e{left:297.360000px;}
.x82{left:300.240000px;}
.x86{left:302.040000px;}
.x63{left:304.200000px;}
.x7a{left:323.640000px;}
.x1{left:325.440000px;}
.x27{left:339.120000px;}
.x13{left:376.560000px;}
.xd{left:388.800000px;}
.x1b{left:402.120000px;}
.x88{left:418.320000px;}
.x5b{left:421.200000px;}
.x53{left:424.080000px;}
.x21{left:425.160000px;}
.x9{left:439.919850px;}
.x11{left:456.840000px;}
.x12{left:478.080000px;}
.x18{left:539.280000px;}
.x8{left:570.600000px;}
.x6{left:584.280000px;}
.x19{left:661.680000px;}
.xa{left:673.200000px;}
.xe{left:685.440000px;}
.x7{left:715.680000px;}
.xb{left:720.000000px;}
.x3{left:769.680000px;}
.x4{left:788.040000px;}
.x5{left:791.280000px;}
.x17{left:797.400000px;}
@media print{
.v2{vertical-align:-49.920000pt;}
.v3{vertical-align:-30.720000pt;}
.v4{vertical-align:-7.680000pt;}
.v6{vertical-align:-5.120000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.v8{vertical-align:30.720000pt;}
.v5{vertical-align:32.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.001792pt;}
.ls25{letter-spacing:0.002326pt;}
.ls5{letter-spacing:0.007682pt;}
.ls7{letter-spacing:0.008215pt;}
.lsf{letter-spacing:0.027648pt;}
.lsa{letter-spacing:0.044800pt;}
.ls24{letter-spacing:0.054763pt;}
.ls1e{letter-spacing:0.055297pt;}
.lsc{letter-spacing:0.148480pt;}
.ls0{letter-spacing:0.178689pt;}
.ls11{letter-spacing:0.279589pt;}
.ls1d{letter-spacing:0.283088pt;}
.lsb{letter-spacing:0.363777pt;}
.ls3{letter-spacing:0.410113pt;}
.ls1{letter-spacing:0.432506pt;}
.ls9{letter-spacing:0.498432pt;}
.ls13{letter-spacing:0.572161pt;}
.ls16{letter-spacing:0.591360pt;}
.ls15{letter-spacing:0.644609pt;}
.ls12{letter-spacing:0.651325pt;}
.ls1a{letter-spacing:1.199361pt;}
.ls19{letter-spacing:1.225473pt;}
.ls1b{letter-spacing:1.241857pt;}
.ls1c{letter-spacing:1.712762pt;}
.lsd{letter-spacing:2.409217pt;}
.ls4{letter-spacing:3.689473pt;}
.ls18{letter-spacing:4.163073pt;}
.ls6{letter-spacing:4.273808pt;}
.ls17{letter-spacing:5.148673pt;}
.ls10{letter-spacing:5.619457pt;}
.lse{letter-spacing:7.709185pt;}
.ls8{letter-spacing:13.931521pt;}
.ls14{letter-spacing:14.110465pt;}
.ls23{letter-spacing:44.836610pt;}
.ls20{letter-spacing:55.078659pt;}
.ls22{letter-spacing:56.358915pt;}
.ls21{letter-spacing:65.320707pt;}
.ws8{word-spacing:-48.639467pt;}
.wsc{word-spacing:-14.080000pt;}
.ws4{word-spacing:-12.840960pt;}
.ws6{word-spacing:-11.673600pt;}
.ws2{word-spacing:-11.089798pt;}
.ws9{word-spacing:-10.259200pt;}
.wsa{word-spacing:-10.222080pt;}
.ws3{word-spacing:-10.214400pt;}
.wsb{word-spacing:-9.630720pt;}
.ws5{word-spacing:-9.047040pt;}
.ws0{word-spacing:-8.463360pt;}
.ws1{word-spacing:-5.544838pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-11.673600pt;}
._7{margin-left:-4.961280pt;}
._8{margin-left:-2.473042pt;}
._2{margin-left:-1.309440pt;}
._0{width:1.182720pt;}
._3{width:2.726414pt;}
._1{width:3.674880pt;}
._9{width:5.045733pt;}
._b{width:6.167426pt;}
._f{width:7.248640pt;}
._6{width:8.575947pt;}
._a{width:9.766285pt;}
._11{width:10.657280pt;}
._19{width:12.063306pt;}
._10{width:13.107200pt;}
._5{width:14.023680pt;}
._4{width:15.121920pt;}
._13{width:16.640000pt;}
._d{width:18.277386pt;}
._c{width:19.229440pt;}
._e{width:20.508671pt;}
._3c{width:21.453569pt;}
._17{width:22.352640pt;}
._14{width:23.508480pt;}
._15{width:24.546560pt;}
._1c{width:25.834240pt;}
._1d{width:26.728032pt;}
._1b{width:28.518400pt;}
._1a{width:29.652480pt;}
._3d{width:31.610880pt;}
._18{width:33.053440pt;}
._1e{width:34.516480pt;}
._43{width:37.497600pt;}
._16{width:41.091840pt;}
._4a{width:45.598217pt;}
._3e{width:47.882240pt;}
._70{width:52.684037pt;}
._48{width:55.742730pt;}
._41{width:57.281280pt;}
._42{width:58.445583pt;}
._28{width:61.798662pt;}
._69{width:63.429877pt;}
._49{width:65.984778pt;}
._22{width:74.735369pt;}
._3f{width:80.622080pt;}
._40{width:81.530144pt;}
._2a{width:84.921872pt;}
._6d{width:88.154625pt;}
._33{width:89.053722pt;}
._4f{width:92.778245pt;}
._53{width:98.662661pt;}
._27{width:102.766856pt;}
._55{width:108.904710pt;}
._35{width:111.895553pt;}
._2b{width:112.812047pt;}
._47{width:114.710541pt;}
._5d{width:117.103110pt;}
._68{width:128.618506pt;}
._6f{width:156.995339pt;}
._50{width:158.945289pt;}
._2e{width:160.182794pt;}
._26{width:169.089290pt;}
._45{width:170.082036pt;}
._6e{width:171.747850pt;}
._46{width:177.084699pt;}
._54{width:179.374089pt;}
._21{width:180.773393pt;}
._63{width:181.934601pt;}
._60{width:183.145489pt;}
._37{width:184.719642pt;}
._2f{width:186.804748pt;}
._6c{width:190.226711pt;}
._6a{width:192.176650pt;}
._5b{width:193.710343pt;}
._6b{width:197.352971pt;}
._56{width:199.802889pt;}
._3a{width:201.071642pt;}
._31{width:203.084569pt;}
._58{width:204.160521pt;}
._5e{width:206.721033pt;}
._5a{width:208.001289pt;}
._39{width:211.991064pt;}
._67{width:213.219835pt;}
._57{width:214.402569pt;}
._4b{width:216.963082pt;}
._4d{width:218.243338pt;}
._4e{width:220.803850pt;}
._52{width:222.084106pt;}
._23{width:225.171725pt;}
._2d{width:226.579472pt;}
._5c{width:228.308746pt;}
._64{width:229.359372pt;}
._30{width:230.656272pt;}
._38{width:232.419864pt;}
._5f{width:239.546124pt;}
._3b{width:242.132249pt;}
._20{width:248.807699pt;}
._25{width:250.206992pt;}
._61{width:253.573643pt;}
._62{width:259.309053pt;}
._66{width:264.332555pt;}
._59{width:270.216972pt;}
._4c{width:274.057740pt;}
._51{width:278.415372pt;}
._65{width:280.459020pt;}
._34{width:283.904268pt;}
._29{width:310.757388pt;}
._1f{width:343.946516pt;}
._24{width:350.766362pt;}
._36{width:361.040908pt;}
._2c{width:400.915482pt;}
._32{width:512.395802pt;}
._44{width:546.182172pt;}
.fsc{font-size:19.200000pt;}
.fs9{font-size:21.760000pt;}
.fs3{font-size:24.319467pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fsb{font-size:39.680000pt;}
.fs0{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs4{font-size:48.639467pt;}
.fsa{font-size:51.200000pt;}
.fs7{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:85.759467pt;}
.ye7{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y1d8{bottom:2.239867pt;}
.y1c3{bottom:2.240000pt;}
.y9{bottom:2.560000pt;}
.y10f{bottom:4.160000pt;}
.y7{bottom:50.560000pt;}
.y4a{bottom:51.200000pt;}
.y6{bottom:62.720000pt;}
.ya{bottom:64.960000pt;}
.y5{bottom:73.280000pt;}
.y8{bottom:78.720000pt;}
.y4{bottom:83.840000pt;}
.y218{bottom:117.440000pt;}
.y130{bottom:118.720000pt;}
.y14d{bottom:119.360000pt;}
.y10d{bottom:120.640000pt;}
.y219{bottom:120.960000pt;}
.yfa{bottom:121.279867pt;}
.yb3{bottom:122.240000pt;}
.y7d{bottom:122.560000pt;}
.y1b4{bottom:125.440000pt;}
.ybf{bottom:125.759867pt;}
.yc0{bottom:126.080000pt;}
.y39{bottom:126.400000pt;}
.y49{bottom:127.040000pt;}
.y180{bottom:128.000000pt;}
.y216{bottom:132.800000pt;}
.y12f{bottom:134.080000pt;}
.y14c{bottom:134.400000pt;}
.y217{bottom:136.000000pt;}
.yf9{bottom:136.320000pt;}
.y10c{bottom:136.640000pt;}
.y7c{bottom:136.960000pt;}
.yb2{bottom:137.279867pt;}
.y1b3{bottom:139.200000pt;}
.y38{bottom:141.440000pt;}
.y17f{bottom:142.080000pt;}
.y48{bottom:143.040000pt;}
.y215{bottom:147.840000pt;}
.y12e{bottom:149.440000pt;}
.y14b{bottom:149.760000pt;}
.y7b{bottom:151.040000pt;}
.yf8{bottom:151.680000pt;}
.yb1{bottom:152.320000pt;}
.y1b2{bottom:152.640000pt;}
.y17e{bottom:155.840000pt;}
.y37{bottom:156.480000pt;}
.ybe{bottom:156.800000pt;}
.y47{bottom:158.720000pt;}
.y214{bottom:162.880000pt;}
.y12d{bottom:164.480000pt;}
.y7a{bottom:165.120000pt;}
.y1b1{bottom:166.400000pt;}
.yb0{bottom:167.680000pt;}
.y10b{bottom:168.000000pt;}
.y17d{bottom:169.920000pt;}
.yf7{bottom:170.880000pt;}
.y36{bottom:171.519867pt;}
.ybd{bottom:172.160000pt;}
.y46{bottom:174.400000pt;}
.y212{bottom:178.240000pt;}
.y12c{bottom:179.840000pt;}
.y14a{bottom:180.160000pt;}
.y213{bottom:181.440000pt;}
.yaf{bottom:183.040000pt;}
.y17c{bottom:183.680000pt;}
.yf6{bottom:186.240000pt;}
.y35{bottom:186.559867pt;}
.ybc{bottom:187.519867pt;}
.y10a{bottom:190.080000pt;}
.y79{bottom:191.360000pt;}
.y210{bottom:193.280000pt;}
.y1b0{bottom:193.600000pt;}
.y45{bottom:195.200000pt;}
.y149{bottom:195.519867pt;}
.y211{bottom:196.480000pt;}
.y17b{bottom:197.760000pt;}
.yae{bottom:198.080000pt;}
.y34{bottom:201.600000pt;}
.ybb{bottom:202.880000pt;}
.y109{bottom:206.080000pt;}
.y1af{bottom:207.360000pt;}
.y20f{bottom:208.320000pt;}
.y12b{bottom:210.240000pt;}
.y44{bottom:211.200000pt;}
.y17a{bottom:211.840000pt;}
.yad{bottom:213.440000pt;}
.y148{bottom:215.040000pt;}
.y33{bottom:216.640000pt;}
.yba{bottom:218.559867pt;}
.y1ae{bottom:221.120000pt;}
.y108{bottom:221.760000pt;}
.y20e{bottom:223.680000pt;}
.y12a{bottom:225.600000pt;}
.y78{bottom:225.920000pt;}
.y43{bottom:226.880000pt;}
.yac{bottom:228.800000pt;}
.y147{bottom:230.080000pt;}
.y32{bottom:231.680000pt;}
.yb9{bottom:233.920000pt;}
.y1ad{bottom:234.559867pt;}
.y107{bottom:237.440000pt;}
.y20c{bottom:238.720000pt;}
.y179{bottom:239.680000pt;}
.y77{bottom:241.280000pt;}
.y20d{bottom:241.920000pt;}
.y42{bottom:242.559867pt;}
.yab{bottom:243.840000pt;}
.y146{bottom:245.440000pt;}
.y31{bottom:246.720000pt;}
.y1ac{bottom:248.320000pt;}
.yb8{bottom:249.280000pt;}
.y178{bottom:253.440000pt;}
.y20a{bottom:253.760000pt;}
.y76{bottom:256.640000pt;}
.y20b{bottom:256.960000pt;}
.y41{bottom:258.240000pt;}
.yaa{bottom:259.200000pt;}
.y106{bottom:259.519867pt;}
.y145{bottom:260.480000pt;}
.y30{bottom:261.760000pt;}
.yf5{bottom:262.080000pt;}
.yb7{bottom:264.640000pt;}
.y129{bottom:265.280000pt;}
.y177{bottom:267.519867pt;}
.y208{bottom:268.800000pt;}
.y75{bottom:271.680000pt;}
.y209{bottom:272.320000pt;}
.y40{bottom:273.920000pt;}
.ya9{bottom:274.559867pt;}
.y105{bottom:275.519867pt;}
.y144{bottom:275.840000pt;}
.y2f{bottom:276.480000pt;}
.yf4{bottom:277.120000pt;}
.yb6{bottom:280.000000pt;}
.y176{bottom:281.280000pt;}
.y206{bottom:284.160000pt;}
.y74{bottom:287.040000pt;}
.y207{bottom:287.360000pt;}
.y1ab{bottom:289.280000pt;}
.y3f{bottom:289.600000pt;}
.y104{bottom:291.200000pt;}
.y2e{bottom:291.520000pt;}
.yf3{bottom:292.160000pt;}
.yb5{bottom:295.360000pt;}
.y205{bottom:299.200000pt;}
.y73{bottom:302.400000pt;}
.y1aa{bottom:303.040000pt;}
.ya8{bottom:304.960000pt;}
.y3e{bottom:305.280000pt;}
.y143{bottom:306.240000pt;}
.y2d{bottom:306.560000pt;}
.y103{bottom:306.880000pt;}
.yf2{bottom:307.520000pt;}
.yb4{bottom:310.400000pt;}
.y128{bottom:314.240000pt;}
.y1a9{bottom:316.800000pt;}
.y72{bottom:317.440000pt;}
.y204{bottom:317.760000pt;}
.ya7{bottom:320.320000pt;}
.y3d{bottom:320.960000pt;}
.y2c{bottom:321.600000pt;}
.yf1{bottom:322.560000pt;}
.y127{bottom:328.960000pt;}
.y203{bottom:329.600000pt;}
.y1a8{bottom:330.240000pt;}
.ye6{bottom:331.840000pt;}
.y71{bottom:332.800000pt;}
.y175{bottom:334.080000pt;}
.ya6{bottom:335.680000pt;}
.y2b{bottom:336.640000pt;}
.y142{bottom:336.960000pt;}
.yf0{bottom:337.600000pt;}
.y102{bottom:338.240000pt;}
.y1a7{bottom:344.000000pt;}
.y126{bottom:344.320000pt;}
.y201{bottom:344.640000pt;}
.y202{bottom:347.840000pt;}
.y70{bottom:348.160000pt;}
.ya5{bottom:350.720000pt;}
.y2a{bottom:351.680000pt;}
.y141{bottom:352.000000pt;}
.y3c{bottom:352.320000pt;}
.yef{bottom:352.960000pt;}
.y101{bottom:353.920000pt;}
.y1a6{bottom:357.760000pt;}
.y125{bottom:359.680000pt;}
.y200{bottom:362.880000pt;}
.y6f{bottom:363.520000pt;}
.ya4{bottom:366.080000pt;}
.y140{bottom:367.360000pt;}
.ye5{bottom:367.680000pt;}
.y3b{bottom:368.000000pt;}
.y1a5{bottom:371.200000pt;}
.y124{bottom:374.720000pt;}
.y100{bottom:375.680000pt;}
.y1ff{bottom:378.240000pt;}
.y6e{bottom:378.560000pt;}
.ya3{bottom:381.440000pt;}
.y13f{bottom:382.720000pt;}
.yee{bottom:383.039867pt;}
.ye4{bottom:384.640000pt;}
.y1a4{bottom:384.960000pt;}
.y123{bottom:390.080000pt;}
.yff{bottom:390.720000pt;}
.y29{bottom:391.360000pt;}
.y3a{bottom:392.640000pt;}
.y1fe{bottom:393.280000pt;}
.y6d{bottom:393.920000pt;}
.ya2{bottom:396.480000pt;}
.y13e{bottom:397.760000pt;}
.yed{bottom:398.400000pt;}
.y174{bottom:398.720000pt;}
.ye3{bottom:401.920000pt;}
.y1fc{bottom:405.120000pt;}
.y122{bottom:405.440000pt;}
.yfe{bottom:406.080000pt;}
.y1fd{bottom:408.320000pt;}
.y6c{bottom:409.280000pt;}
.ya1{bottom:412.160000pt;}
.y13d{bottom:413.119867pt;}
.yec{bottom:413.440000pt;}
.ye2{bottom:418.880000pt;}
.y1fa{bottom:420.160000pt;}
.y121{bottom:420.480000pt;}
.y28{bottom:421.440000pt;}
.y1fb{bottom:423.680000pt;}
.y6b{bottom:424.320000pt;}
.y1a3{bottom:425.920000pt;}
.y173{bottom:427.200000pt;}
.yeb{bottom:428.480000pt;}
.y27{bottom:431.039867pt;}
.ya0{bottom:435.520000pt;}
.ye1{bottom:435.840000pt;}
.yfd{bottom:436.480000pt;}
.y1f9{bottom:438.720000pt;}
.y6a{bottom:439.680000pt;}
.y172{bottom:441.280000pt;}
.y13c{bottom:443.840000pt;}
.y9f{bottom:450.240000pt;}
.y1f7{bottom:450.560000pt;}
.y120{bottom:451.200000pt;}
.yea{bottom:451.520000pt;}
.yfc{bottom:451.840000pt;}
.ye0{bottom:452.800000pt;}
.y26{bottom:453.119867pt;}
.y1f8{bottom:453.760000pt;}
.y69{bottom:455.039867pt;}
.y171{bottom:455.360000pt;}
.y13b{bottom:458.880000pt;}
.y252{bottom:462.720000pt;}
.y9e{bottom:465.600000pt;}
.y11f{bottom:466.240000pt;}
.y25{bottom:466.880000pt;}
.ye9{bottom:467.200000pt;}
.y1f6{bottom:469.119867pt;}
.ydf{bottom:469.760000pt;}
.y68{bottom:470.080000pt;}
.y13a{bottom:474.240000pt;}
.y250{bottom:478.720000pt;}
.y24{bottom:480.640000pt;}
.y9d{bottom:480.960000pt;}
.y11e{bottom:481.600000pt;}
.y251{bottom:481.920000pt;}
.yfb{bottom:482.240000pt;}
.ye8{bottom:482.560000pt;}
.y170{bottom:483.840000pt;}
.y1f5{bottom:484.160000pt;}
.yde{bottom:488.640000pt;}
.y139{bottom:489.600000pt;}
.y67{bottom:489.920000pt;}
.y24e{bottom:493.760000pt;}
.y23{bottom:494.400000pt;}
.y9c{bottom:496.000000pt;}
.y11d{bottom:496.960000pt;}
.y24f{bottom:497.280000pt;}
.y16f{bottom:497.920000pt;}
.y1f4{bottom:499.200000pt;}
.ydd{bottom:503.680000pt;}
.y66{bottom:504.640000pt;}
.y22{bottom:508.160000pt;}
.y24c{bottom:509.760000pt;}
.y1f2{bottom:511.040000pt;}
.y9b{bottom:511.360000pt;}
.y11c{bottom:512.320000pt;}
.y24d{bottom:512.960000pt;}
.y1f3{bottom:514.240000pt;}
.y65{bottom:520.000000pt;}
.ydc{bottom:520.640000pt;}
.y21{bottom:521.920000pt;}
.y111{bottom:524.800000pt;}
.y1f0{bottom:526.080000pt;}
.y16e{bottom:526.400000pt;}
.y9a{bottom:526.720000pt;}
.y11b{bottom:527.360000pt;}
.y24b{bottom:528.000000pt;}
.y1f1{bottom:529.600000pt;}
.y64{bottom:535.360000pt;}
.y20{bottom:535.680000pt;}
.ydb{bottom:537.920000pt;}
.y249{bottom:539.840000pt;}
.y16d{bottom:540.480000pt;}
.y1ee{bottom:541.440000pt;}
.y99{bottom:542.080000pt;}
.y11a{bottom:542.720000pt;}
.y24a{bottom:543.039867pt;}
.y1ef{bottom:544.640000pt;}
.y1a2{bottom:549.440000pt;}
.y138{bottom:550.400000pt;}
.y63{bottom:554.240000pt;}
.y16c{bottom:554.560000pt;}
.yda{bottom:554.880000pt;}
.y1ec{bottom:556.480000pt;}
.y98{bottom:557.119867pt;}
.y119{bottom:558.080000pt;}
.y248{bottom:558.400000pt;}
.y110{bottom:559.039867pt;}
.y1ed{bottom:559.680000pt;}
.y1a1{bottom:563.200000pt;}
.y1f{bottom:565.440000pt;}
.y137{bottom:565.760000pt;}
.y16b{bottom:568.960000pt;}
.y62{bottom:569.920000pt;}
.y10e{bottom:570.240000pt;}
.y1ea{bottom:571.520000pt;}
.yd9{bottom:571.840000pt;}
.y97{bottom:572.480000pt;}
.y118{bottom:573.120000pt;}
.y247{bottom:573.440000pt;}
.y1eb{bottom:575.040000pt;}
.y1a0{bottom:576.960000pt;}
.y136{bottom:581.120000pt;}
.y16a{bottom:583.040000pt;}
.y61{bottom:584.960000pt;}
.y245{bottom:585.280000pt;}
.y1e8{bottom:586.880000pt;}
.y1e{bottom:587.200000pt;}
.y96{bottom:587.840000pt;}
.y246{bottom:588.480000pt;}
.yd8{bottom:588.800000pt;}
.y1e9{bottom:590.080000pt;}
.y19f{bottom:590.400000pt;}
.y135{bottom:596.160000pt;}
.y169{bottom:597.120000pt;}
.y60{bottom:600.000000pt;}
.y243{bottom:600.320000pt;}
.y1d{bottom:600.960000pt;}
.y1e6{bottom:601.920000pt;}
.y95{bottom:602.880000pt;}
.y244{bottom:603.840000pt;}
.y19e{bottom:604.160000pt;}
.y1e7{bottom:605.120000pt;}
.yd7{bottom:607.680000pt;}
.y134{bottom:611.520000pt;}
.y117{bottom:613.120000pt;}
.y1c{bottom:614.720000pt;}
.y242{bottom:615.680000pt;}
.y1e4{bottom:616.960000pt;}
.y19d{bottom:617.920000pt;}
.y94{bottom:618.240000pt;}
.y5f{bottom:618.880000pt;}
.y1e5{bottom:620.160000pt;}
.yd6{bottom:622.720000pt;}
.y168{bottom:625.600000pt;}
.y133{bottom:626.880000pt;}
.y1b{bottom:628.480000pt;}
.y240{bottom:630.720000pt;}
.y19c{bottom:631.360000pt;}
.y1e2{bottom:632.000000pt;}
.y93{bottom:633.600000pt;}
.y241{bottom:633.920000pt;}
.y5e{bottom:634.560000pt;}
.y1e3{bottom:635.520000pt;}
.yd5{bottom:639.680000pt;}
.y1a{bottom:642.240000pt;}
.y19b{bottom:645.120000pt;}
.y23e{bottom:645.760000pt;}
.y1e0{bottom:647.360000pt;}
.y92{bottom:648.640000pt;}
.y23f{bottom:649.280000pt;}
.y5d{bottom:649.600000pt;}
.y1e1{bottom:650.560000pt;}
.y167{bottom:653.760000pt;}
.y19{bottom:656.000000pt;}
.yd4{bottom:656.640000pt;}
.y132{bottom:657.280000pt;}
.y19a{bottom:658.880000pt;}
.y23c{bottom:660.800000pt;}
.y116{bottom:661.760000pt;}
.y1de{bottom:662.400000pt;}
.y91{bottom:664.000000pt;}
.y23d{bottom:664.320000pt;}
.y5c{bottom:664.640000pt;}
.y1df{bottom:665.600000pt;}
.y166{bottom:668.160000pt;}
.y18{bottom:669.760000pt;}
.y199{bottom:672.320000pt;}
.yd3{bottom:675.840000pt;}
.y23b{bottom:676.160000pt;}
.y115{bottom:676.480000pt;}
.y131{bottom:676.800000pt;}
.y1dc{bottom:677.440000pt;}
.y90{bottom:679.360000pt;}
.y5b{bottom:679.680000pt;}
.y1dd{bottom:680.960000pt;}
.y165{bottom:682.240000pt;}
.y17{bottom:683.520000pt;}
.y198{bottom:686.079867pt;}
.yd2{bottom:690.880000pt;}
.y23a{bottom:691.200000pt;}
.y114{bottom:691.840000pt;}
.y1da{bottom:692.800000pt;}
.y8f{bottom:694.400000pt;}
.y5a{bottom:695.040000pt;}
.y1db{bottom:696.000000pt;}
.y164{bottom:696.320000pt;}
.y16{bottom:698.880000pt;}
.y197{bottom:699.840000pt;}
.y238{bottom:706.240000pt;}
.y113{bottom:707.200000pt;}
.yd1{bottom:707.840000pt;}
.y239{bottom:709.760000pt;}
.y59{bottom:710.079867pt;}
.y163{bottom:710.720000pt;}
.y1d9{bottom:711.040000pt;}
.y196{bottom:713.280000pt;}
.y8e{bottom:714.239867pt;}
.y237{bottom:721.600000pt;}
.y112{bottom:722.239867pt;}
.y1d6{bottom:722.880000pt;}
.yd0{bottom:724.800000pt;}
.y15{bottom:725.120000pt;}
.y1d7{bottom:726.079867pt;}
.y195{bottom:727.040000pt;}
.y8d{bottom:728.960000pt;}
.y235{bottom:736.640000pt;}
.y1d4{bottom:737.920000pt;}
.y162{bottom:738.880000pt;}
.y236{bottom:739.840000pt;}
.y58{bottom:740.480000pt;}
.y194{bottom:740.800000pt;}
.y1d5{bottom:741.440000pt;}
.ycf{bottom:741.760000pt;}
.y8c{bottom:744.320000pt;}
.y152{bottom:750.720000pt;}
.y233{bottom:751.680000pt;}
.y1d2{bottom:753.280000pt;}
.y193{bottom:754.239867pt;}
.y234{bottom:755.200000pt;}
.y57{bottom:755.520000pt;}
.y1d3{bottom:756.480000pt;}
.yce{bottom:758.720000pt;}
.y8b{bottom:759.680000pt;}
.y1bb{bottom:764.480000pt;}
.y14{bottom:766.079867pt;}
.y231{bottom:767.040000pt;}
.y192{bottom:768.000000pt;}
.y151{bottom:768.320000pt;}
.y232{bottom:770.239867pt;}
.y56{bottom:770.560000pt;}
.y1d1{bottom:771.520000pt;}
.y1bc{bottom:773.760000pt;}
.y8a{bottom:774.720000pt;}
.ycd{bottom:777.600000pt;}
.y1ba{bottom:778.239867pt;}
.y13{bottom:779.200000pt;}
.y150{bottom:781.120000pt;}
.y191{bottom:781.760000pt;}
.y22f{bottom:782.080000pt;}
.y1cf{bottom:783.360000pt;}
.y230{bottom:785.280000pt;}
.y161{bottom:785.600000pt;}
.y55{bottom:785.920000pt;}
.y1d0{bottom:786.880000pt;}
.y89{bottom:790.079867pt;}
.y1b9{bottom:791.680000pt;}
.y12{bottom:792.320000pt;}
.ycc{bottom:792.640000pt;}
.y190{bottom:795.200000pt;}
.y22e{bottom:797.120000pt;}
.y1cd{bottom:798.720000pt;}
.y160{bottom:800.320000pt;}
.y1ce{bottom:801.920000pt;}
.y14f{bottom:802.239867pt;}
.y54{bottom:805.120000pt;}
.y88{bottom:805.440000pt;}
.y18f{bottom:808.960000pt;}
.y11{bottom:809.920000pt;}
.y22d{bottom:812.160000pt;}
.y14e{bottom:813.440000pt;}
.y1cb{bottom:813.760000pt;}
.y15f{bottom:815.680000pt;}
.y1cc{bottom:816.960000pt;}
.y1b8{bottom:819.200000pt;}
.y53{bottom:820.160000pt;}
.y87{bottom:820.800000pt;}
.y18e{bottom:822.720000pt;}
.ycb{bottom:826.880000pt;}
.y22b{bottom:827.520000pt;}
.y1c9{bottom:828.800000pt;}
.y22c{bottom:830.720000pt;}
.y15e{bottom:831.040000pt;}
.y1ca{bottom:832.320000pt;}
.y1b7{bottom:832.640000pt;}
.y86{bottom:835.840000pt;}
.y18d{bottom:836.160000pt;}
.y10{bottom:841.280000pt;}
.y22a{bottom:842.560000pt;}
.y1c7{bottom:844.160000pt;}
.yca{bottom:845.760000pt;}
.y15d{bottom:846.400000pt;}
.y1c8{bottom:847.360000pt;}
.y18c{bottom:849.920000pt;}
.y85{bottom:851.200000pt;}
.yf{bottom:854.079867pt;}
.y229{bottom:857.600000pt;}
.y1c5{bottom:859.200000pt;}
.y52{bottom:859.840000pt;}
.yc9{bottom:860.800000pt;}
.y1b6{bottom:861.120000pt;}
.y15c{bottom:861.440000pt;}
.y1c6{bottom:862.400000pt;}
.y18b{bottom:863.680000pt;}
.y84{bottom:866.560000pt;}
.ye{bottom:867.200000pt;}
.y227{bottom:872.960000pt;}
.y1c2{bottom:874.240000pt;}
.y228{bottom:876.160000pt;}
.y1b5{bottom:876.480000pt;}
.y15b{bottom:876.800000pt;}
.y18a{bottom:877.120000pt;}
.y1c4{bottom:877.440000pt;}
.yc8{bottom:877.760000pt;}
.y83{bottom:881.600000pt;}
.yd{bottom:884.800000pt;}
.y225{bottom:888.000000pt;}
.y189{bottom:890.880000pt;}
.y226{bottom:891.200000pt;}
.y15a{bottom:892.160000pt;}
.y1c1{bottom:893.440000pt;}
.yc7{bottom:894.720000pt;}
.y82{bottom:896.960000pt;}
.y1c0{bottom:901.120000pt;}
.y223{bottom:903.040000pt;}
.y188{bottom:904.640000pt;}
.y224{bottom:906.239867pt;}
.y159{bottom:907.200000pt;}
.y51{bottom:908.160000pt;}
.y81{bottom:912.320000pt;}
.yc6{bottom:913.600000pt;}
.y187{bottom:918.079867pt;}
.y221{bottom:918.080000pt;}
.y222{bottom:921.600000pt;}
.y158{bottom:922.560000pt;}
.y50{bottom:923.520000pt;}
.y80{bottom:927.360000pt;}
.y1bf{bottom:928.320000pt;}
.yc5{bottom:928.640000pt;}
.y186{bottom:931.840000pt;}
.y21f{bottom:933.440000pt;}
.y220{bottom:936.640000pt;}
.y157{bottom:937.920000pt;}
.y4f{bottom:938.560000pt;}
.y1be{bottom:942.079867pt;}
.yc{bottom:942.720000pt;}
.y185{bottom:945.600000pt;}
.yc4{bottom:945.920000pt;}
.y21d{bottom:948.480000pt;}
.y21e{bottom:951.680000pt;}
.y156{bottom:952.960000pt;}
.y4e{bottom:953.920000pt;}
.y7f{bottom:958.079867pt;}
.y184{bottom:959.040000pt;}
.yc3{bottom:962.880000pt;}
.y21c{bottom:963.520000pt;}
.yb{bottom:967.040000pt;}
.y155{bottom:968.320000pt;}
.y4d{bottom:968.960000pt;}
.y183{bottom:972.800000pt;}
.yc2{bottom:980.480000pt;}
.y1bd{bottom:980.800000pt;}
.y21b{bottom:982.720000pt;}
.y154{bottom:983.680000pt;}
.y4c{bottom:984.000000pt;}
.y182{bottom:986.560000pt;}
.y21a{bottom:990.720000pt;}
.y7e{bottom:997.760000pt;}
.y153{bottom:998.720000pt;}
.y4b{bottom:999.040000pt;}
.y181{bottom:1000.000000pt;}
.yc1{bottom:1000.320000pt;}
.y3{bottom:1040.960000pt;}
.y2{bottom:1053.120000pt;}
.y1{bottom:1065.280000pt;}
.h16{height:12.800000pt;}
.h6{height:13.760000pt;}
.h12{height:14.080000pt;}
.h9{height:15.360000pt;}
.h13{height:19.520000pt;}
.he{height:23.217920pt;}
.h5{height:39.607040pt;}
.h4{height:40.238080pt;}
.h8{height:44.269515pt;}
.h2{height:45.070080pt;}
.h3{height:45.788160pt;}
.hd{height:47.801600pt;}
.h14{height:48.563200pt;}
.h17{height:49.081600pt;}
.h7{height:51.898311pt;}
.hf{height:52.725182pt;}
.h10{height:54.630400pt;}
.h11{height:55.500800pt;}
.hc{height:60.093440pt;}
.ha{height:64.937500pt;}
.h18{height:78.521600pt;}
.h15{height:79.801600pt;}
.hb{height:91.505351pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:2.560000pt;}
.w3{width:2.880000pt;}
.w51{width:3.200000pt;}
.w44{width:3.520000pt;}
.w4{width:4.160000pt;}
.wc{width:5.120000pt;}
.w6b{width:5.760000pt;}
.w7{width:8.640000pt;}
.w6{width:8.960000pt;}
.w5{width:9.280000pt;}
.w2{width:16.320000pt;}
.w49{width:18.560000pt;}
.w45{width:21.120000pt;}
.w48{width:23.360000pt;}
.w4f{width:24.640000pt;}
.w53{width:25.280000pt;}
.w52{width:25.600000pt;}
.w2d{width:26.240000pt;}
.w57{width:26.880000pt;}
.w22{width:27.200000pt;}
.w11{width:27.520000pt;}
.w33{width:27.840000pt;}
.w32{width:28.480000pt;}
.w36{width:28.800000pt;}
.w1a{width:29.439867pt;}
.w64{width:29.760000pt;}
.w5c{width:30.400000pt;}
.w6d{width:31.040000pt;}
.w46{width:31.360000pt;}
.w62{width:31.680000pt;}
.w5f{width:32.640000pt;}
.w42{width:32.960000pt;}
.w6a{width:33.280000pt;}
.w3e{width:33.600000pt;}
.w20{width:34.240000pt;}
.w30{width:34.560000pt;}
.w59{width:34.880000pt;}
.w3b{width:35.200000pt;}
.w17{width:35.520000pt;}
.w4a{width:35.840000pt;}
.w13{width:36.160000pt;}
.w25{width:36.800000pt;}
.wa{width:37.120000pt;}
.w23{width:37.440000pt;}
.w8{width:37.760000pt;}
.w14{width:38.080000pt;}
.w12{width:38.720000pt;}
.w4e{width:39.040000pt;}
.w65{width:39.360000pt;}
.w5d{width:40.000000pt;}
.w3d{width:40.320000pt;}
.w27{width:40.640000pt;}
.w29{width:41.600000pt;}
.w2e{width:41.920000pt;}
.w35{width:42.240000pt;}
.w55{width:42.560000pt;}
.w2a{width:43.200000pt;}
.w3f{width:43.520000pt;}
.w68{width:43.840000pt;}
.we{width:44.160000pt;}
.w66{width:44.480000pt;}
.w2b{width:44.800000pt;}
.w60{width:45.440000pt;}
.w31{width:45.760000pt;}
.w24{width:46.080000pt;}
.w10{width:46.720000pt;}
.w63{width:47.040000pt;}
.w1e{width:47.360000pt;}
.w4c{width:47.680000pt;}
.w1f{width:48.320000pt;}
.w26{width:50.560000pt;}
.w1c{width:51.200000pt;}
.w58{width:51.520000pt;}
.w67{width:52.480000pt;}
.w4b{width:52.800000pt;}
.wd{width:53.120000pt;}
.w1d{width:53.440000pt;}
.w39{width:54.400000pt;}
.w16{width:54.720000pt;}
.w18{width:55.040000pt;}
.w5e{width:56.320000pt;}
.w2f{width:56.639867pt;}
.w3c{width:56.960000pt;}
.w38{width:57.280000pt;}
.w28{width:57.600000pt;}
.w21{width:57.920000pt;}
.w34{width:58.560000pt;}
.w54{width:58.879867pt;}
.w6c{width:59.520000pt;}
.w41{width:60.800000pt;}
.w47{width:61.120000pt;}
.w43{width:61.440000pt;}
.wf{width:62.400000pt;}
.wb{width:62.720000pt;}
.w50{width:63.040000pt;}
.w1b{width:63.360000pt;}
.w19{width:63.680000pt;}
.w5a{width:65.600000pt;}
.w61{width:69.760000pt;}
.w15{width:70.080000pt;}
.w5b{width:70.400000pt;}
.w2c{width:70.720000pt;}
.w4d{width:71.040000pt;}
.w69{width:74.240000pt;}
.w37{width:75.520000pt;}
.w56{width:76.800000pt;}
.w3a{width:78.080000pt;}
.w40{width:81.920000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x71{left:1.279867pt;}
.x2{left:85.120000pt;}
.x14{left:87.680000pt;}
.x10{left:104.000000pt;}
.x28{left:114.880000pt;}
.x29{left:117.440000pt;}
.x7d{left:120.320000pt;}
.xf{left:122.880000pt;}
.x1c{left:125.120000pt;}
.x6f{left:126.720000pt;}
.x1d{left:127.680000pt;}
.x4a{left:129.279867pt;}
.x76{left:130.240000pt;}
.x4b{left:131.840000pt;}
.x55{left:133.440000pt;}
.x81{left:135.040000pt;}
.x56{left:136.000000pt;}
.x7f{left:137.920000pt;}
.x46{left:138.880000pt;}
.x22{left:140.480000pt;}
.x47{left:141.760000pt;}
.x23{left:143.040000pt;}
.x6b{left:144.960000pt;}
.x87{left:146.880000pt;}
.x65{left:148.480000pt;}
.x15{left:149.760000pt;}
.x34{left:151.360000pt;}
.x2d{left:153.600000pt;}
.x73{left:154.560000pt;}
.x2a{left:156.160000pt;}
.x74{left:157.120000pt;}
.x2b{left:158.720000pt;}
.x77{left:159.680000pt;}
.x50{left:160.640000pt;}
.x78{left:162.240000pt;}
.x58{left:163.840000pt;}
.x1e{left:164.800000pt;}
.x59{left:166.400000pt;}
.x1f{left:167.360000pt;}
.x6c{left:168.320000pt;}
.x52{left:169.600000pt;}
.x61{left:170.560000pt;}
.x30{left:172.160000pt;}
.x5c{left:173.120000pt;}
.x31{left:174.720000pt;}
.x5d{left:175.680000pt;}
.x4e{left:176.640000pt;}
.x4c{left:177.600000pt;}
.x4f{left:179.200000pt;}
.x64{left:180.480000pt;}
.x3f{left:181.440000pt;}
.x48{left:182.400000pt;}
.x35{left:183.360000pt;}
.x49{left:184.960000pt;}
.x36{left:185.920000pt;}
.x24{left:187.200000pt;}
.x3d{left:188.480000pt;}
.x25{left:189.760000pt;}
.x3e{left:191.040000pt;}
.x62{left:192.320000pt;}
.x6d{left:193.280000pt;}
.x41{left:194.240000pt;}
.x67{left:195.840000pt;}
.x68{left:198.400000pt;}
.x1a{left:199.360000pt;}
.x7b{left:200.640000pt;}
.x3b{left:201.600000pt;}
.x43{left:202.560000pt;}
.x3c{left:204.160000pt;}
.x38{left:205.120000pt;}
.x75{left:206.080000pt;}
.x39{left:207.680000pt;}
.x51{left:208.960000pt;}
.x33{left:210.560000pt;}
.x72{left:213.760000pt;}
.x83{left:216.320000pt;}
.x2e{left:218.880000pt;}
.x79{left:219.840000pt;}
.x2c{left:221.440000pt;}
.x84{left:222.720000pt;}
.x57{left:223.680000pt;}
.x85{left:224.960000pt;}
.x54{left:227.200000pt;}
.x2f{left:228.160000pt;}
.x20{left:230.080000pt;}
.x60{left:231.360000pt;}
.x70{left:233.920000pt;}
.x4d{left:235.520000pt;}
.xc{left:236.480000pt;}
.x32{left:237.440000pt;}
.x5e{left:238.400000pt;}
.x5a{left:240.000000pt;}
.x7e{left:240.960000pt;}
.x42{left:242.560000pt;}
.x66{left:244.160000pt;}
.x80{left:245.760000pt;}
.x40{left:247.360000pt;}
.x7c{left:248.320000pt;}
.x37{left:249.280000pt;}
.x44{left:250.880000pt;}
.x5f{left:251.840000pt;}
.x16{left:252.800000pt;}
.x26{left:254.720000pt;}
.x45{left:255.680000pt;}
.x69{left:259.840000pt;}
.x3a{left:261.120000pt;}
.x6a{left:263.360000pt;}
.x6e{left:264.320000pt;}
.x82{left:266.880000pt;}
.x86{left:268.480000pt;}
.x63{left:270.400000pt;}
.x7a{left:287.680000pt;}
.x1{left:289.280000pt;}
.x27{left:301.440000pt;}
.x13{left:334.720000pt;}
.xd{left:345.600000pt;}
.x1b{left:357.440000pt;}
.x88{left:371.840000pt;}
.x5b{left:374.400000pt;}
.x53{left:376.960000pt;}
.x21{left:377.920000pt;}
.x9{left:391.039867pt;}
.x11{left:406.080000pt;}
.x12{left:424.960000pt;}
.x18{left:479.360000pt;}
.x8{left:507.200000pt;}
.x6{left:519.360000pt;}
.x19{left:588.160000pt;}
.xa{left:598.400000pt;}
.xe{left:609.280000pt;}
.x7{left:636.160000pt;}
.xb{left:640.000000pt;}
.x3{left:684.160000pt;}
.x4{left:700.480000pt;}
.x5{left:703.360000pt;}
.x17{left:708.800000pt;}
}




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