
    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_31140dae4fcf8e0f4f8afa74.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_091d28d2c581093068e6ce45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_bbf4a8d41c4bc75c43722217.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ad44de1224c774b9afe985f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_378b450262ca27ae4aa21b2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_4c82ac74481d945a49f86c6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003000;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_1141f135e682625291ed11be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896000;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_9900a1020be4d6160ffedfdb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.306600px;}
.lsd{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.259800px;}
.ls2b{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053400px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.206400px;}
.ls20{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.439920px;}
.lsc{letter-spacing:0.460200px;}
.ls19{letter-spacing:0.612000px;}
.ls5{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.666720px;}
.ls1b{letter-spacing:0.689759px;}
.ls25{letter-spacing:1.386000px;}
.ls7{letter-spacing:1.386720px;}
.ls1d{letter-spacing:1.681060px;}
.ls1c{letter-spacing:1.758832px;}
.ls1e{letter-spacing:1.830621px;}
.ls27{letter-spacing:2.826000px;}
.ls11{letter-spacing:2.826720px;}
.ls14{letter-spacing:3.546720px;}
.ls8{letter-spacing:4.986720px;}
.ls15{letter-spacing:5.706720px;}
.lsb{letter-spacing:6.426720px;}
.ls6{letter-spacing:7.866720px;}
.ls1f{letter-spacing:8.748000px;}
.ls24{letter-spacing:9.282720px;}
.lse{letter-spacing:9.306720px;}
.ls17{letter-spacing:10.026720px;}
.lsf{letter-spacing:10.746720px;}
.ls29{letter-spacing:12.186720px;}
.ls13{letter-spacing:13.636319px;}
.ls1a{letter-spacing:14.346720px;}
.ls28{letter-spacing:14.526720px;}
.ls18{letter-spacing:15.786720px;}
.ls12{letter-spacing:17.226720px;}
.ls10{letter-spacing:18.666720px;}
.lsa{letter-spacing:25.866720px;}
.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;}
}
.ws5{word-spacing:-17.073480px;}
.wsf{word-spacing:-16.819680px;}
.ws0{word-spacing:-16.613280px;}
.wsc{word-spacing:-16.559880px;}
.ws1{word-spacing:-16.506480px;}
.wse{word-spacing:-16.306680px;}
.wsd{word-spacing:-15.012000px;}
.ws7{word-spacing:-13.538908px;}
.wsb{word-spacing:-13.532854px;}
.wsa{word-spacing:-13.531755px;}
.ws8{word-spacing:-13.506362px;}
.ws9{word-spacing:-13.499227px;}
.ws2{word-spacing:-13.410720px;}
.ws10{word-spacing:-13.229520px;}
.ws6{word-spacing:-11.934000px;}
.ws3{word-spacing:-10.808640px;}
.ws4{word-spacing:0.000000px;}
._1f{margin-left:-7.334999px;}
._17{margin-left:-5.625001px;}
._19{margin-left:-4.402559px;}
._15{margin-left:-3.368393px;}
._3{margin-left:-2.174880px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.086227px;}
._f{width:3.372965px;}
._a{width:4.845612px;}
._7{width:5.916599px;}
._6{width:6.991800px;}
._9{width:8.143200px;}
._8{width:9.457203px;}
._10{width:10.637400px;}
._18{width:11.653200px;}
._13{width:12.676801px;}
._14{width:13.759789px;}
._1a{width:15.597599px;}
._c{width:17.875921px;}
._e{width:19.287425px;}
._d{width:20.736600px;}
._4{width:21.872399px;}
._5{width:23.030404px;}
._1b{width:24.581635px;}
._12{width:26.436604px;}
._11{width:27.549599px;}
._16{width:28.812001px;}
._21{width:29.873395px;}
._b{width:32.688600px;}
._22{width:35.997000px;}
._1c{width:37.242000px;}
._2e{width:42.579405px;}
._2d{width:45.716340px;}
._2c{width:47.055303px;}
._2b{width:48.764339px;}
._1d{width:62.460000px;}
._1e{width:63.947273px;}
._20{width:140.561868px;}
._26{width:205.036680px;}
._25{width:207.845280px;}
._2a{width:257.692024px;}
._29{width:261.271019px;}
._23{width:267.007620px;}
._24{width:268.226819px;}
._27{width:273.461820px;}
._28{width:274.477620px;}
.fc8{color:rgb(0,0,10);}
.fc9{color:rgb(0,0,128);}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fca{color:rgb(0,32,96);}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,1);}
.fs0{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fse{font-size:58.627722px;}
.fsd{font-size:58.777282px;}
.fs9{font-size:59.731092px;}
.fsc{font-size:59.735944px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:59.762665px;}
.fsa{font-size:59.875023px;}
.fsb{font-size:59.879886px;}
.fs7{font-size:59.906671px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1c4{bottom:2.700000px;}
.y171{bottom:2.880000px;}
.y16f{bottom:3.060000px;}
.y172{bottom:3.240000px;}
.y183{bottom:3.420000px;}
.yc8{bottom:3.585000px;}
.y7{bottom:3.591000px;}
.yb9{bottom:3.600000px;}
.yb6{bottom:3.780000px;}
.y1c2{bottom:16.560000px;}
.y175{bottom:18.360000px;}
.y176{bottom:18.540000px;}
.y177{bottom:18.720000px;}
.y181{bottom:18.900000px;}
.yc7{bottom:20.145000px;}
.yb8{bottom:20.160000px;}
.y1c1{bottom:30.420000px;}
.y103{bottom:35.838655px;}
.yc6{bottom:36.525000px;}
.ybe{bottom:36.720000px;}
.yc4{bottom:36.765000px;}
.y146{bottom:37.240643px;}
.y1be{bottom:42.480000px;}
.y1c0{bottom:44.280000px;}
.y14e{bottom:48.981172px;}
.yca{bottom:53.100000px;}
.ybd{bottom:53.280000px;}
.yc3{bottom:53.325000px;}
.y102{bottom:54.225757px;}
.y5{bottom:57.636000px;}
.y14a{bottom:59.076456px;}
.ybc{bottom:69.660000px;}
.yc2{bottom:69.705000px;}
.y101{bottom:72.576876px;}
.y6{bottom:74.205000px;}
.y4{bottom:77.076000px;}
.y126{bottom:83.126580px;}
.ybb{bottom:86.220000px;}
.yc1{bottom:86.265000px;}
.yc0{bottom:102.645000px;}
.y147{bottom:113.628677px;}
.y62{bottom:122.616000px;}
.y85{bottom:124.776000px;}
.y16d{bottom:125.136000px;}
.y14f{bottom:125.369199px;}
.yd0{bottom:132.696000px;}
.y1b6{bottom:132.876000px;}
.y1b1{bottom:133.056000px;}
.y3b{bottom:135.216000px;}
.y190{bottom:135.396000px;}
.y14b{bottom:135.464477px;}
.y13f{bottom:136.116000px;}
.y109{bottom:137.196000px;}
.y123{bottom:138.096000px;}
.y1a5{bottom:138.276000px;}
.ye1{bottom:138.996000px;}
.y9d{bottom:141.696000px;}
.yf2{bottom:143.496000px;}
.yb2{bottom:145.656000px;}
.y61{bottom:148.356000px;}
.ycf{bottom:149.436000px;}
.y153{bottom:149.965848px;}
.y16c{bottom:151.050000px;}
.y108{bottom:153.930000px;}
.y84{bottom:155.910000px;}
.y1b0{bottom:158.790000px;}
.y18f{bottom:161.310000px;}
.y13e{bottom:161.850000px;}
.yce{bottom:162.030000px;}
.y122{bottom:164.010000px;}
.y1a0{bottom:164.190000px;}
.ye0{bottom:164.910000px;}
.y3a{bottom:166.170000px;}
.y107{bottom:166.530000px;}
.y9c{bottom:167.610000px;}
.yf1{bottom:169.410000px;}
.yb1{bottom:171.390000px;}
.yfe{bottom:172.146307px;}
.y60{bottom:174.270000px;}
.y16b{bottom:176.790000px;}
.y152{bottom:177.185862px;}
.y83{bottom:184.710000px;}
.y127{bottom:185.974670px;}
.y18e{bottom:187.230000px;}
.y125{bottom:187.489043px;}
.y13d{bottom:187.590000px;}
.y121{bottom:189.750000px;}
.y148{bottom:190.018205px;}
.ydf{bottom:190.830000px;}
.y9b{bottom:193.530000px;}
.yf0{bottom:195.150000px;}
.y39{bottom:197.310000px;}
.y5f{bottom:200.190000px;}
.y150{bottom:201.758729px;}
.y16a{bottom:202.710000px;}
.y82{bottom:210.450000px;}
.y14c{bottom:211.854012px;}
.y18d{bottom:212.970000px;}
.y13c{bottom:213.510000px;}
.y120{bottom:215.670000px;}
.y144{bottom:215.850000px;}
.yde{bottom:216.750000px;}
.y9a{bottom:219.450000px;}
.yef{bottom:221.070000px;}
.yb0{bottom:223.230000px;}
.y5e{bottom:226.110000px;}
.y38{bottom:228.270000px;}
.y169{bottom:228.630000px;}
.y81{bottom:236.370000px;}
.y99{bottom:236.730000px;}
.y18c{bottom:238.890000px;}
.y13b{bottom:239.430000px;}
.y11f{bottom:241.590000px;}
.y1a4{bottom:241.770000px;}
.ydd{bottom:242.490000px;}
.yfb{bottom:246.860103px;}
.yee{bottom:246.990000px;}
.y37{bottom:248.430000px;}
.yaf{bottom:249.150000px;}
.y5d{bottom:251.850000px;}
.y98{bottom:253.470000px;}
.y168{bottom:254.550000px;}
.ydc{bottom:259.410000px;}
.y80{bottom:262.290000px;}
.y18b{bottom:264.810000px;}
.y36{bottom:265.170000px;}
.yfa{bottom:265.220922px;}
.y13a{bottom:265.350000px;}
.y97{bottom:266.070000px;}
.y149{bottom:266.443634px;}
.y11e{bottom:267.330000px;}
.y1a3{bottom:267.510000px;}
.yf8{bottom:267.890965px;}
.ydb{bottom:272.010000px;}
.yed{bottom:272.730000px;}
.yae{bottom:274.890000px;}
.y5c{bottom:277.770000px;}
.y151{bottom:278.184157px;}
.y35{bottom:279.570000px;}
.y100{bottom:279.905536px;}
.y167{bottom:280.290000px;}
.yf9{bottom:283.581746px;}
.y128{bottom:284.649962px;}
.yf7{bottom:286.251784px;}
.y7f{bottom:288.075000px;}
.y14d{bottom:288.234572px;}
.y1af{bottom:288.255000px;}
.y18a{bottom:290.595000px;}
.y139{bottom:291.135000px;}
.y11d{bottom:293.295000px;}
.y34{bottom:296.715000px;}
.yff{bottom:298.256655px;}
.yec{bottom:298.695000px;}
.yad{bottom:300.855000px;}
.y5b{bottom:303.735000px;}
.yf6{bottom:304.612606px;}
.y166{bottom:306.255000px;}
.y189{bottom:307.515000px;}
.y33{bottom:313.995000px;}
.y138{bottom:317.055000px;}
.y11c{bottom:319.215000px;}
.y19f{bottom:319.395000px;}
.y188{bottom:320.115000px;}
.y106{bottom:322.155089px;}
.yeb{bottom:324.615000px;}
.yac{bottom:326.775000px;}
.y5a{bottom:329.475000px;}
.y32{bottom:331.275000px;}
.y165{bottom:332.175000px;}
.y7e{bottom:339.915000px;}
.y105{bottom:340.506208px;}
.y137{bottom:342.975000px;}
.y11b{bottom:345.135000px;}
.y19e{bottom:345.315000px;}
.y31{bottom:348.555000px;}
.yea{bottom:350.535000px;}
.yab{bottom:352.695000px;}
.y59{bottom:355.395000px;}
.y164{bottom:358.095000px;}
.y104{bottom:358.887312px;}
.y30{bottom:365.835000px;}
.y136{bottom:368.895000px;}
.yf5{bottom:370.315561px;}
.y11a{bottom:370.875000px;}
.y19d{bottom:371.055000px;}
.ye9{bottom:376.275000px;}
.yaa{bottom:378.435000px;}
.y58{bottom:381.315000px;}
.y2f{bottom:383.115000px;}
.y163{bottom:383.835000px;}
.yf4{bottom:388.706383px;}
.y7d{bottom:391.575000px;}
.y135{bottom:394.635000px;}
.y119{bottom:396.795000px;}
.y19c{bottom:396.975000px;}
.y2e{bottom:400.215000px;}
.ye8{bottom:402.195000px;}
.ya9{bottom:404.535000px;}
.y57{bottom:407.235000px;}
.y162{bottom:409.755000px;}
.y2d{bottom:417.495000px;}
.y134{bottom:420.555000px;}
.y143{bottom:422.715000px;}
.y118{bottom:422.895000px;}
.ye7{bottom:428.295000px;}
.ya8{bottom:430.275000px;}
.y56{bottom:432.975000px;}
.y2c{bottom:434.775000px;}
.y161{bottom:435.675000px;}
.y7c{bottom:443.415000px;}
.y133{bottom:446.475000px;}
.y142{bottom:448.635000px;}
.y117{bottom:448.815000px;}
.y2b{bottom:452.055000px;}
.ye6{bottom:454.035000px;}
.ya7{bottom:456.195000px;}
.y55{bottom:458.895000px;}
.y160{bottom:461.595000px;}
.y2a{bottom:469.335000px;}
.y1b5{bottom:469.515000px;}
.y132{bottom:472.395000px;}
.y141{bottom:474.375000px;}
.y116{bottom:474.555000px;}
.ye5{bottom:479.775000px;}
.ya6{bottom:481.935000px;}
.y54{bottom:484.815000px;}
.y29{bottom:487.335000px;}
.y7b{bottom:495.075000px;}
.y1b4{bottom:495.255000px;}
.ye4{bottom:496.515000px;}
.y131{bottom:498.315000px;}
.y115{bottom:500.295000px;}
.y1a2{bottom:500.475000px;}
.y1d2{bottom:506.775000px;}
.y28{bottom:507.135000px;}
.ya5{bottom:507.855000px;}
.ye3{bottom:509.295000px;}
.y53{bottom:510.735000px;}
.y15f{bottom:513.435000px;}
.y7a{bottom:520.995000px;}
.y130{bottom:524.055000px;}
.y27{bottom:524.415000px;}
.y114{bottom:526.215000px;}
.y19b{bottom:526.395000px;}
.ya4{bottom:533.775000px;}
.y1d1{bottom:535.395000px;}
.y52{bottom:536.475000px;}
.y15e{bottom:539.355000px;}
.y26{bottom:541.695000px;}
.y79{bottom:546.915000px;}
.y12f{bottom:549.975000px;}
.y113{bottom:552.135000px;}
.y19a{bottom:552.315000px;}
.y25{bottom:558.975000px;}
.ya3{bottom:559.695000px;}
.y51{bottom:562.395000px;}
.y1d0{bottom:563.655000px;}
.y15d{bottom:565.125000px;}
.y78{bottom:572.865000px;}
.y12e{bottom:575.925000px;}
.y24{bottom:576.285000px;}
.y112{bottom:577.905000px;}
.y199{bottom:578.085000px;}
.y1cf{bottom:580.965000px;}
.yfd{bottom:584.745000px;}
.ya2{bottom:585.645000px;}
.y50{bottom:588.345000px;}
.y15c{bottom:590.865000px;}
.y23{bottom:593.565000px;}
.ycd{bottom:594.465000px;}
.y1ae{bottom:598.605000px;}
.y77{bottom:598.785000px;}
.y1ce{bottom:599.145000px;}
.y12d{bottom:601.665000px;}
.y111{bottom:603.825000px;}
.y198{bottom:604.005000px;}
.y22{bottom:610.665000px;}
.ya1{bottom:611.565000px;}
.ycc{bottom:613.725000px;}
.y4f{bottom:614.265000px;}
.y15b{bottom:616.785000px;}
.y96{bottom:619.305000px;}
.y1cd{bottom:621.285000px;}
.y1ad{bottom:624.525000px;}
.y76{bottom:624.705000px;}
.ycb{bottom:627.045000px;}
.yfc{bottom:627.405000px;}
.y12c{bottom:627.585000px;}
.y21{bottom:627.945000px;}
.y110{bottom:629.745000px;}
.y140{bottom:629.925000px;}
.ya0{bottom:637.305000px;}
.y4e{bottom:640.005000px;}
.y15a{bottom:642.885000px;}
.y1cc{bottom:643.245000px;}
.y20{bottom:645.225000px;}
.yf3{bottom:645.561147px;}
.y75{bottom:650.445000px;}
.y12b{bottom:653.505000px;}
.y9f{bottom:654.045000px;}
.yda{bottom:655.665000px;}
.y10f{bottom:655.845000px;}
.y1f{bottom:662.505000px;}
.y1cb{bottom:665.385000px;}
.y4d{bottom:665.925000px;}
.y9e{bottom:666.645000px;}
.y159{bottom:668.445000px;}
.y12a{bottom:670.245000px;}
.y95{bottom:671.325000px;}
.y1b3{bottom:673.485000px;}
.y74{bottom:676.365000px;}
.y1ac{bottom:676.545000px;}
.y1e{bottom:679.785000px;}
.yd9{bottom:681.405000px;}
.y197{bottom:681.585000px;}
.y129{bottom:682.845000px;}
.y1ca{bottom:687.345000px;}
.y124{bottom:688.373142px;}
.y4c{bottom:691.845000px;}
.y158{bottom:694.365000px;}
.y1d{bottom:697.065000px;}
.y94{bottom:697.245000px;}
.y1ab{bottom:702.105000px;}
.y73{bottom:702.285000px;}
.y187{bottom:704.085000px;}
.y1b2{bottom:704.805000px;}
.yd8{bottom:707.325000px;}
.y1b7{bottom:707.505000px;}
.y1c9{bottom:709.485000px;}
.yc9{bottom:710.205000px;}
.y1c{bottom:714.165000px;}
.y4b{bottom:717.765000px;}
.y157{bottom:720.285000px;}
.y93{bottom:722.985000px;}
.y186{bottom:724.785000px;}
.y1aa{bottom:728.025000px;}
.y72{bottom:728.205000px;}
.y1b{bottom:731.445000px;}
.yd7{bottom:733.245000px;}
.y196{bottom:733.425000px;}
.y4a{bottom:743.505000px;}
.y185{bottom:745.485000px;}
.y92{bottom:748.725000px;}
.y1a{bottom:749.445000px;}
.y1c8{bottom:753.585000px;}
.y71{bottom:753.945000px;}
.y1a9{bottom:754.125000px;}
.y156{bottom:758.265000px;}
.yd6{bottom:759.165000px;}
.y195{bottom:759.345000px;}
.y184{bottom:764.565000px;}
.y49{bottom:769.425000px;}
.y19{bottom:770.145000px;}
.y155{bottom:773.745000px;}
.y91{bottom:774.645000px;}
.y1c7{bottom:775.545000px;}
.yc5{bottom:777.000000px;}
.y182{bottom:777.885000px;}
.y70{bottom:779.865000px;}
.yd5{bottom:784.905000px;}
.y194{bottom:785.085000px;}
.y154{bottom:786.345000px;}
.y18{bottom:789.585000px;}
.y145{bottom:791.906994px;}
.y48{bottom:795.345000px;}
.y1c6{bottom:797.685000px;}
.y90{bottom:800.385000px;}
.y17{bottom:803.265000px;}
.y1a8{bottom:805.605000px;}
.y6f{bottom:807.945000px;}
.y180{bottom:809.745000px;}
.yd4{bottom:810.825000px;}
.y10e{bottom:811.005000px;}
.y16{bottom:817.305000px;}
.y1c5{bottom:819.645000px;}
.y47{bottom:821.085000px;}
.y8f{bottom:826.485000px;}
.ybf{bottom:827.025000px;}
.y15{bottom:831.525000px;}
.y6e{bottom:836.745000px;}
.y193{bottom:836.925000px;}
.y17f{bottom:841.605000px;}
.y1c3{bottom:841.785000px;}
.y46{bottom:847.005000px;}
.y8e{bottom:852.450000px;}
.y14{bottom:853.350000px;}
.y1a7{bottom:857.670000px;}
.y17e{bottom:857.850000px;}
.y6d{bottom:862.530000px;}
.y10d{bottom:862.710000px;}
.y1bf{bottom:863.790000px;}
.y13{bottom:866.130000px;}
.y45{bottom:872.970000px;}
.y17d{bottom:874.230000px;}
.y8d{bottom:878.190000px;}
.y1a6{bottom:885.570000px;}
.y12{bottom:887.730000px;}
.y6c{bottom:888.450000px;}
.y1a1{bottom:888.630000px;}
.y44{bottom:898.890000px;}
.y8c{bottom:903.930000px;}
.y11{bottom:905.010000px;}
.y17c{bottom:905.910000px;}
.y6b{bottom:914.370000px;}
.yd3{bottom:914.550000px;}
.y10{bottom:918.510000px;}
.y17b{bottom:922.290000px;}
.y43{bottom:924.630000px;}
.y1bd{bottom:927.330000px;}
.y8b{bottom:929.850000px;}
.yf{bottom:939.210000px;}
.y6a{bottom:940.290000px;}
.yd2{bottom:940.470000px;}
.yba{bottom:943.170000px;}
.y42{bottom:950.550000px;}
.y17a{bottom:953.970000px;}
.y8a{bottom:955.770000px;}
.ye{bottom:961.350000px;}
.y69{bottom:966.030000px;}
.yd1{bottom:966.210000px;}
.y41{bottom:976.470000px;}
.y89{bottom:981.870000px;}
.y179{bottom:985.830000px;}
.yd{bottom:988.890000px;}
.y68{bottom:991.950000px;}
.y192{bottom:992.130000px;}
.y1bc{bottom:997.170000px;}
.y40{bottom:1002.390000px;}
.y88{bottom:1007.430000px;}
.yc{bottom:1016.430000px;}
.y178{bottom:1017.690000px;}
.y67{bottom:1017.870000px;}
.ye2{bottom:1018.050000px;}
.y1bb{bottom:1023.090000px;}
.y3f{bottom:1028.130000px;}
.y87{bottom:1033.350000px;}
.y174{bottom:1033.890000px;}
.y1ba{bottom:1041.450000px;}
.yb7{bottom:1042.890000px;}
.y66{bottom:1043.790000px;}
.y191{bottom:1043.970000px;}
.yb{bottom:1044.150000px;}
.y3e{bottom:1056.390000px;}
.y86{bottom:1059.450000px;}
.y1b9{bottom:1062.150000px;}
.y173{bottom:1065.750000px;}
.y65{bottom:1069.530000px;}
.y10c{bottom:1069.710000px;}
.ya{bottom:1071.690000px;}
.yb5{bottom:1076.550000px;}
.y170{bottom:1081.950000px;}
.y3d{bottom:1087.350000px;}
.y1b8{bottom:1092.570000px;}
.y64{bottom:1095.450000px;}
.y10b{bottom:1095.630000px;}
.y9{bottom:1097.970000px;}
.y16e{bottom:1098.150000px;}
.yb4{bottom:1098.330000px;}
.y3c{bottom:1118.490000px;}
.y8{bottom:1118.670000px;}
.yb3{bottom:1119.030000px;}
.y63{bottom:1121.370000px;}
.y10a{bottom:1121.550000px;}
.y3{bottom:1180.800000px;}
.y2{bottom:1191.240000px;}
.y1{bottom:1201.500000px;}
.h36{height:13.680000px;}
.h34{height:13.702500px;}
.h35{height:13.860000px;}
.h2a{height:15.465000px;}
.h2e{height:15.502500px;}
.h29{height:15.645000px;}
.h11{height:16.545000px;}
.h6{height:17.271000px;}
.h3{height:26.208984px;}
.h2{height:26.244141px;}
.ha{height:28.343672px;}
.h2c{height:30.945000px;}
.h2d{height:31.125000px;}
.h2f{height:31.140000px;}
.h13{height:32.925000px;}
.hb{height:35.120039px;}
.hc{height:35.167148px;}
.h31{height:35.237812px;}
.h14{height:38.772000px;}
.h10{height:39.366211px;}
.h23{height:39.830273px;}
.h28{height:39.866851px;}
.h27{height:39.968552px;}
.h26{height:42.094704px;}
.h25{height:42.202089px;}
.h1e{height:42.886924px;}
.h22{height:42.890408px;}
.h1c{height:42.909593px;}
.h1f{height:42.990266px;}
.h21{height:42.993758px;}
.h1b{height:43.012990px;}
.h33{height:43.128633px;}
.he{height:43.506914px;}
.h5{height:43.565273px;}
.hd{height:43.652813px;}
.h12{height:44.550000px;}
.h4{height:47.988281px;}
.h2b{height:48.278320px;}
.h17{height:49.305000px;}
.h7{height:52.417969px;}
.hf{height:53.428008px;}
.h30{height:53.445000px;}
.h32{height:55.245000px;}
.h9{height:58.880039px;}
.h18{height:65.880000px;}
.h8{height:69.715898px;}
.h19{height:82.440000px;}
.h15{height:98.985000px;}
.h16{height:115.402500px;}
.h20{height:311.454680px;}
.h24{height:337.632968px;}
.h1d{height:394.549053px;}
.h1a{height:406.098215px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:25.005000px;}
.we{width:31.851000px;}
.w17{width:61.365000px;}
.w10{width:63.741000px;}
.w11{width:67.500000px;}
.w15{width:68.385000px;}
.w13{width:68.436000px;}
.w14{width:70.365000px;}
.w12{width:73.080000px;}
.wf{width:83.511000px;}
.w16{width:94.881000px;}
.w9{width:102.951000px;}
.wa{width:147.981000px;}
.wc{width:319.701000px;}
.w3{width:352.641000px;}
.w4{width:352.695000px;}
.wd{width:363.495000px;}
.wb{width:437.280000px;}
.w7{width:580.829319px;}
.w8{width:588.306493px;}
.w6{width:589.874821px;}
.w5{width:592.016372px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:4.131000px;}
.x4d{left:5.385000px;}
.x43{left:6.471000px;}
.x13{left:7.731000px;}
.x3b{left:9.805125px;}
.x38{left:12.013216px;}
.x4f{left:13.125000px;}
.x4b{left:14.220000px;}
.x44{left:15.831000px;}
.x52{left:22.305000px;}
.x45{left:25.365000px;}
.x50{left:27.165000px;}
.x55{left:30.600000px;}
.x3d{left:32.751000px;}
.x20{left:34.481878px;}
.x4a{left:36.540000px;}
.x3a{left:38.247442px;}
.x53{left:40.350000px;}
.x46{left:41.745000px;}
.x39{left:46.405913px;}
.x3f{left:56.145000px;}
.x21{left:60.370235px;}
.x22{left:62.168041px;}
.x31{left:64.464681px;}
.x28{left:79.644858px;}
.x2a{left:93.128660px;}
.x29{left:96.005302px;}
.xf{left:98.685000px;}
.x4{left:106.416000px;}
.x12{left:113.250000px;}
.x2b{left:119.233453px;}
.x2c{left:121.031308px;}
.x17{left:122.256000px;}
.x34{left:137.870298px;}
.x10{left:147.945000px;}
.x8{left:149.076000px;}
.x1a{left:150.772637px;}
.x25{left:151.822803px;}
.xa{left:153.030000px;}
.x2e{left:156.322229px;}
.x19{left:167.070000px;}
.x33{left:172.330453px;}
.x3c{left:186.870000px;}
.x3e{left:202.545000px;}
.xc{left:207.210000px;}
.x1{left:213.870000px;}
.x47{left:221.805000px;}
.xe{left:224.130000px;}
.x30{left:227.975359px;}
.x24{left:241.590000px;}
.x2d{left:256.710000px;}
.x15{left:260.850000px;}
.x2f{left:272.557766px;}
.x48{left:285.555000px;}
.x35{left:297.970536px;}
.x3{left:309.135000px;}
.x1b{left:315.439383px;}
.x1c{left:324.787960px;}
.x37{left:326.712175px;}
.x40{left:351.435000px;}
.x49{left:353.055000px;}
.x9{left:357.735000px;}
.x36{left:361.142343px;}
.x42{left:426.135000px;}
.x26{left:436.158533px;}
.x27{left:441.761838px;}
.x2{left:446.475000px;}
.x11{left:452.235000px;}
.x1d{left:466.349919px;}
.x1e{left:482.530143px;}
.x1f{left:484.327950px;}
.x4c{left:494.580000px;}
.x4e{left:564.960000px;}
.x51{left:633.360000px;}
.x6{left:698.730000px;}
.x54{left:728.250000px;}
.x18{left:730.230000px;}
.xb{left:735.990000px;}
.x32{left:742.830000px;}
.x16{left:744.270000px;}
.xd{left:746.430000px;}
.x23{left:748.410000px;}
.x5{left:758.490000px;}
.x14{left:778.110000px;}
.x7{left:786.750000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.272533pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls2b{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.183467pt;}
.ls20{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.391040pt;}
.lsc{letter-spacing:0.409067pt;}
.ls19{letter-spacing:0.544000pt;}
.ls5{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.592640pt;}
.ls1b{letter-spacing:0.613119pt;}
.ls25{letter-spacing:1.232000pt;}
.ls7{letter-spacing:1.232640pt;}
.ls1d{letter-spacing:1.494276pt;}
.ls1c{letter-spacing:1.563406pt;}
.ls1e{letter-spacing:1.627218pt;}
.ls27{letter-spacing:2.512000pt;}
.ls11{letter-spacing:2.512640pt;}
.ls14{letter-spacing:3.152640pt;}
.ls8{letter-spacing:4.432640pt;}
.ls15{letter-spacing:5.072640pt;}
.lsb{letter-spacing:5.712640pt;}
.ls6{letter-spacing:6.992640pt;}
.ls1f{letter-spacing:7.776000pt;}
.ls24{letter-spacing:8.251307pt;}
.lse{letter-spacing:8.272640pt;}
.ls17{letter-spacing:8.912640pt;}
.lsf{letter-spacing:9.552640pt;}
.ls29{letter-spacing:10.832640pt;}
.ls13{letter-spacing:12.121172pt;}
.ls1a{letter-spacing:12.752640pt;}
.ls28{letter-spacing:12.912640pt;}
.ls18{letter-spacing:14.032640pt;}
.ls12{letter-spacing:15.312640pt;}
.ls10{letter-spacing:16.592640pt;}
.lsa{letter-spacing:22.992640pt;}
.ws5{word-spacing:-15.176427pt;}
.wsf{word-spacing:-14.950827pt;}
.ws0{word-spacing:-14.767360pt;}
.wsc{word-spacing:-14.719893pt;}
.ws1{word-spacing:-14.672427pt;}
.wse{word-spacing:-14.494827pt;}
.wsd{word-spacing:-13.344000pt;}
.ws7{word-spacing:-12.034585pt;}
.wsb{word-spacing:-12.029204pt;}
.wsa{word-spacing:-12.028227pt;}
.ws8{word-spacing:-12.005655pt;}
.ws9{word-spacing:-11.999313pt;}
.ws2{word-spacing:-11.920640pt;}
.ws10{word-spacing:-11.759573pt;}
.ws6{word-spacing:-10.608000pt;}
.ws3{word-spacing:-9.607680pt;}
.ws4{word-spacing:0.000000pt;}
._1f{margin-left:-6.519999pt;}
._17{margin-left:-5.000001pt;}
._19{margin-left:-3.913386pt;}
._15{margin-left:-2.994127pt;}
._3{margin-left:-1.933227pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.854424pt;}
._f{width:2.998191pt;}
._a{width:4.307210pt;}
._7{width:5.259199pt;}
._6{width:6.214934pt;}
._9{width:7.238400pt;}
._8{width:8.406403pt;}
._10{width:9.455466pt;}
._18{width:10.358400pt;}
._13{width:11.268268pt;}
._14{width:12.230924pt;}
._1a{width:13.864532pt;}
._c{width:15.889708pt;}
._e{width:17.144377pt;}
._d{width:18.432534pt;}
._4{width:19.442132pt;}
._5{width:20.471470pt;}
._1b{width:21.850342pt;}
._12{width:23.499204pt;}
._11{width:24.488532pt;}
._16{width:25.610668pt;}
._21{width:26.554129pt;}
._b{width:29.056534pt;}
._22{width:31.997334pt;}
._1c{width:33.104000pt;}
._2e{width:37.848360pt;}
._2d{width:40.636747pt;}
._2c{width:41.826936pt;}
._2b{width:43.346079pt;}
._1d{width:55.520000pt;}
._1e{width:56.842021pt;}
._20{width:124.943883pt;}
._26{width:182.254826pt;}
._25{width:184.751360pt;}
._2a{width:229.059577pt;}
._29{width:232.240906pt;}
._23{width:237.340107pt;}
._24{width:238.423839pt;}
._27{width:243.077173pt;}
._28{width:243.980107pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:52.113531pt;}
.fsd{font-size:52.246473pt;}
.fs9{font-size:53.094304pt;}
.fsc{font-size:53.098617pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:53.122369pt;}
.fsa{font-size:53.222242pt;}
.fsb{font-size:53.226565pt;}
.fs7{font-size:53.250375pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1c4{bottom:2.400000pt;}
.y171{bottom:2.560000pt;}
.y16f{bottom:2.720000pt;}
.y172{bottom:2.880000pt;}
.y183{bottom:3.040000pt;}
.yc8{bottom:3.186667pt;}
.y7{bottom:3.192000pt;}
.yb9{bottom:3.200000pt;}
.yb6{bottom:3.360000pt;}
.y1c2{bottom:14.720000pt;}
.y175{bottom:16.320000pt;}
.y176{bottom:16.480000pt;}
.y177{bottom:16.640000pt;}
.y181{bottom:16.800000pt;}
.yc7{bottom:17.906667pt;}
.yb8{bottom:17.920000pt;}
.y1c1{bottom:27.040000pt;}
.y103{bottom:31.856583pt;}
.yc6{bottom:32.466667pt;}
.ybe{bottom:32.640000pt;}
.yc4{bottom:32.680000pt;}
.y146{bottom:33.102794pt;}
.y1be{bottom:37.760000pt;}
.y1c0{bottom:39.360000pt;}
.y14e{bottom:43.538820pt;}
.yca{bottom:47.200000pt;}
.ybd{bottom:47.360000pt;}
.yc3{bottom:47.400000pt;}
.y102{bottom:48.200673pt;}
.y5{bottom:51.232000pt;}
.y14a{bottom:52.512405pt;}
.ybc{bottom:61.920000pt;}
.yc2{bottom:61.960000pt;}
.y101{bottom:64.512778pt;}
.y6{bottom:65.960000pt;}
.y4{bottom:68.512000pt;}
.y126{bottom:73.890294pt;}
.ybb{bottom:76.640000pt;}
.yc1{bottom:76.680000pt;}
.yc0{bottom:91.240000pt;}
.y147{bottom:101.003269pt;}
.y62{bottom:108.992000pt;}
.y85{bottom:110.912000pt;}
.y16d{bottom:111.232000pt;}
.y14f{bottom:111.439288pt;}
.yd0{bottom:117.952000pt;}
.y1b6{bottom:118.112000pt;}
.y1b1{bottom:118.272000pt;}
.y3b{bottom:120.192000pt;}
.y190{bottom:120.352000pt;}
.y14b{bottom:120.412869pt;}
.y13f{bottom:120.992000pt;}
.y109{bottom:121.952000pt;}
.y123{bottom:122.752000pt;}
.y1a5{bottom:122.912000pt;}
.ye1{bottom:123.552000pt;}
.y9d{bottom:125.952000pt;}
.yf2{bottom:127.552000pt;}
.yb2{bottom:129.472000pt;}
.y61{bottom:131.872000pt;}
.ycf{bottom:132.832000pt;}
.y153{bottom:133.302976pt;}
.y16c{bottom:134.266667pt;}
.y108{bottom:136.826667pt;}
.y84{bottom:138.586667pt;}
.y1b0{bottom:141.146667pt;}
.y18f{bottom:143.386667pt;}
.y13e{bottom:143.866667pt;}
.yce{bottom:144.026667pt;}
.y122{bottom:145.786667pt;}
.y1a0{bottom:145.946667pt;}
.ye0{bottom:146.586667pt;}
.y3a{bottom:147.706667pt;}
.y107{bottom:148.026667pt;}
.y9c{bottom:148.986667pt;}
.yf1{bottom:150.586667pt;}
.yb1{bottom:152.346667pt;}
.yfe{bottom:153.018940pt;}
.y60{bottom:154.906667pt;}
.y16b{bottom:157.146667pt;}
.y152{bottom:157.498544pt;}
.y83{bottom:164.186667pt;}
.y127{bottom:165.310818pt;}
.y18e{bottom:166.426667pt;}
.y125{bottom:166.656927pt;}
.y13d{bottom:166.746667pt;}
.y121{bottom:168.666667pt;}
.y148{bottom:168.905071pt;}
.ydf{bottom:169.626667pt;}
.y9b{bottom:172.026667pt;}
.yf0{bottom:173.466667pt;}
.y39{bottom:175.386667pt;}
.y5f{bottom:177.946667pt;}
.y150{bottom:179.341093pt;}
.y16a{bottom:180.186667pt;}
.y82{bottom:187.066667pt;}
.y14c{bottom:188.314677pt;}
.y18d{bottom:189.306667pt;}
.y13c{bottom:189.786667pt;}
.y120{bottom:191.706667pt;}
.y144{bottom:191.866667pt;}
.yde{bottom:192.666667pt;}
.y9a{bottom:195.066667pt;}
.yef{bottom:196.506667pt;}
.yb0{bottom:198.426667pt;}
.y5e{bottom:200.986667pt;}
.y38{bottom:202.906667pt;}
.y169{bottom:203.226667pt;}
.y81{bottom:210.106667pt;}
.y99{bottom:210.426667pt;}
.y18c{bottom:212.346667pt;}
.y13b{bottom:212.826667pt;}
.y11f{bottom:214.746667pt;}
.y1a4{bottom:214.906667pt;}
.ydd{bottom:215.546667pt;}
.yfb{bottom:219.431203pt;}
.yee{bottom:219.546667pt;}
.y37{bottom:220.826667pt;}
.yaf{bottom:221.466667pt;}
.y5d{bottom:223.866667pt;}
.y98{bottom:225.306667pt;}
.y168{bottom:226.266667pt;}
.ydc{bottom:230.586667pt;}
.y80{bottom:233.146667pt;}
.y18b{bottom:235.386667pt;}
.y36{bottom:235.706667pt;}
.yfa{bottom:235.751931pt;}
.y13a{bottom:235.866667pt;}
.y97{bottom:236.506667pt;}
.y149{bottom:236.838786pt;}
.y11e{bottom:237.626667pt;}
.y1a3{bottom:237.786667pt;}
.yf8{bottom:238.125303pt;}
.ydb{bottom:241.786667pt;}
.yed{bottom:242.426667pt;}
.yae{bottom:244.346667pt;}
.y5c{bottom:246.906667pt;}
.y151{bottom:247.274807pt;}
.y35{bottom:248.506667pt;}
.y100{bottom:248.804921pt;}
.y167{bottom:249.146667pt;}
.yf9{bottom:252.072663pt;}
.y128{bottom:253.022189pt;}
.yf7{bottom:254.446031pt;}
.y7f{bottom:256.066667pt;}
.y14d{bottom:256.208509pt;}
.y1af{bottom:256.226667pt;}
.y18a{bottom:258.306667pt;}
.y139{bottom:258.786667pt;}
.y11d{bottom:260.706667pt;}
.y34{bottom:263.746667pt;}
.yff{bottom:265.117027pt;}
.yec{bottom:265.506667pt;}
.yad{bottom:267.426667pt;}
.y5b{bottom:269.986667pt;}
.yf6{bottom:270.766761pt;}
.y166{bottom:272.226667pt;}
.y189{bottom:273.346667pt;}
.y33{bottom:279.106667pt;}
.y138{bottom:281.826667pt;}
.y11c{bottom:283.746667pt;}
.y19f{bottom:283.906667pt;}
.y188{bottom:284.546667pt;}
.y106{bottom:286.360079pt;}
.yeb{bottom:288.546667pt;}
.yac{bottom:290.466667pt;}
.y5a{bottom:292.866667pt;}
.y32{bottom:294.466667pt;}
.y165{bottom:295.266667pt;}
.y7e{bottom:302.146667pt;}
.y105{bottom:302.672185pt;}
.y137{bottom:304.866667pt;}
.y11b{bottom:306.786667pt;}
.y19e{bottom:306.946667pt;}
.y31{bottom:309.826667pt;}
.yea{bottom:311.586667pt;}
.yab{bottom:313.506667pt;}
.y59{bottom:315.906667pt;}
.y164{bottom:318.306667pt;}
.y104{bottom:319.010944pt;}
.y30{bottom:325.186667pt;}
.y136{bottom:327.906667pt;}
.yf5{bottom:329.169388pt;}
.y11a{bottom:329.666667pt;}
.y19d{bottom:329.826667pt;}
.ye9{bottom:334.466667pt;}
.yaa{bottom:336.386667pt;}
.y58{bottom:338.946667pt;}
.y2f{bottom:340.546667pt;}
.y163{bottom:341.186667pt;}
.yf4{bottom:345.516785pt;}
.y7d{bottom:348.066667pt;}
.y135{bottom:350.786667pt;}
.y119{bottom:352.706667pt;}
.y19c{bottom:352.866667pt;}
.y2e{bottom:355.746667pt;}
.ye8{bottom:357.506667pt;}
.ya9{bottom:359.586667pt;}
.y57{bottom:361.986667pt;}
.y162{bottom:364.226667pt;}
.y2d{bottom:371.106667pt;}
.y134{bottom:373.826667pt;}
.y143{bottom:375.746667pt;}
.y118{bottom:375.906667pt;}
.ye7{bottom:380.706667pt;}
.ya8{bottom:382.466667pt;}
.y56{bottom:384.866667pt;}
.y2c{bottom:386.466667pt;}
.y161{bottom:387.266667pt;}
.y7c{bottom:394.146667pt;}
.y133{bottom:396.866667pt;}
.y142{bottom:398.786667pt;}
.y117{bottom:398.946667pt;}
.y2b{bottom:401.826667pt;}
.ye6{bottom:403.586667pt;}
.ya7{bottom:405.506667pt;}
.y55{bottom:407.906667pt;}
.y160{bottom:410.306667pt;}
.y2a{bottom:417.186667pt;}
.y1b5{bottom:417.346667pt;}
.y132{bottom:419.906667pt;}
.y141{bottom:421.666667pt;}
.y116{bottom:421.826667pt;}
.ye5{bottom:426.466667pt;}
.ya6{bottom:428.386667pt;}
.y54{bottom:430.946667pt;}
.y29{bottom:433.186667pt;}
.y7b{bottom:440.066667pt;}
.y1b4{bottom:440.226667pt;}
.ye4{bottom:441.346667pt;}
.y131{bottom:442.946667pt;}
.y115{bottom:444.706667pt;}
.y1a2{bottom:444.866667pt;}
.y1d2{bottom:450.466667pt;}
.y28{bottom:450.786667pt;}
.ya5{bottom:451.426667pt;}
.ye3{bottom:452.706667pt;}
.y53{bottom:453.986667pt;}
.y15f{bottom:456.386667pt;}
.y7a{bottom:463.106667pt;}
.y130{bottom:465.826667pt;}
.y27{bottom:466.146667pt;}
.y114{bottom:467.746667pt;}
.y19b{bottom:467.906667pt;}
.ya4{bottom:474.466667pt;}
.y1d1{bottom:475.906667pt;}
.y52{bottom:476.866667pt;}
.y15e{bottom:479.426667pt;}
.y26{bottom:481.506667pt;}
.y79{bottom:486.146667pt;}
.y12f{bottom:488.866667pt;}
.y113{bottom:490.786667pt;}
.y19a{bottom:490.946667pt;}
.y25{bottom:496.866667pt;}
.ya3{bottom:497.506667pt;}
.y51{bottom:499.906667pt;}
.y1d0{bottom:501.026667pt;}
.y15d{bottom:502.333333pt;}
.y78{bottom:509.213333pt;}
.y12e{bottom:511.933333pt;}
.y24{bottom:512.253333pt;}
.y112{bottom:513.693333pt;}
.y199{bottom:513.853333pt;}
.y1cf{bottom:516.413333pt;}
.yfd{bottom:519.773333pt;}
.ya2{bottom:520.573333pt;}
.y50{bottom:522.973333pt;}
.y15c{bottom:525.213333pt;}
.y23{bottom:527.613333pt;}
.ycd{bottom:528.413333pt;}
.y1ae{bottom:532.093333pt;}
.y77{bottom:532.253333pt;}
.y1ce{bottom:532.573333pt;}
.y12d{bottom:534.813333pt;}
.y111{bottom:536.733333pt;}
.y198{bottom:536.893333pt;}
.y22{bottom:542.813333pt;}
.ya1{bottom:543.613333pt;}
.ycc{bottom:545.533333pt;}
.y4f{bottom:546.013333pt;}
.y15b{bottom:548.253333pt;}
.y96{bottom:550.493333pt;}
.y1cd{bottom:552.253333pt;}
.y1ad{bottom:555.133333pt;}
.y76{bottom:555.293333pt;}
.ycb{bottom:557.373333pt;}
.yfc{bottom:557.693333pt;}
.y12c{bottom:557.853333pt;}
.y21{bottom:558.173333pt;}
.y110{bottom:559.773333pt;}
.y140{bottom:559.933333pt;}
.ya0{bottom:566.493333pt;}
.y4e{bottom:568.893333pt;}
.y15a{bottom:571.453333pt;}
.y1cc{bottom:571.773333pt;}
.y20{bottom:573.533333pt;}
.yf3{bottom:573.832131pt;}
.y75{bottom:578.173333pt;}
.y12b{bottom:580.893333pt;}
.y9f{bottom:581.373333pt;}
.yda{bottom:582.813333pt;}
.y10f{bottom:582.973333pt;}
.y1f{bottom:588.893333pt;}
.y1cb{bottom:591.453333pt;}
.y4d{bottom:591.933333pt;}
.y9e{bottom:592.573333pt;}
.y159{bottom:594.173333pt;}
.y12a{bottom:595.773333pt;}
.y95{bottom:596.733333pt;}
.y1b3{bottom:598.653333pt;}
.y74{bottom:601.213333pt;}
.y1ac{bottom:601.373333pt;}
.y1e{bottom:604.253333pt;}
.yd9{bottom:605.693333pt;}
.y197{bottom:605.853333pt;}
.y129{bottom:606.973333pt;}
.y1ca{bottom:610.973333pt;}
.y124{bottom:611.887237pt;}
.y4c{bottom:614.973333pt;}
.y158{bottom:617.213333pt;}
.y1d{bottom:619.613333pt;}
.y94{bottom:619.773333pt;}
.y1ab{bottom:624.093333pt;}
.y73{bottom:624.253333pt;}
.y187{bottom:625.853333pt;}
.y1b2{bottom:626.493333pt;}
.yd8{bottom:628.733333pt;}
.y1b7{bottom:628.893333pt;}
.y1c9{bottom:630.653333pt;}
.yc9{bottom:631.293333pt;}
.y1c{bottom:634.813333pt;}
.y4b{bottom:638.013333pt;}
.y157{bottom:640.253333pt;}
.y93{bottom:642.653333pt;}
.y186{bottom:644.253333pt;}
.y1aa{bottom:647.133333pt;}
.y72{bottom:647.293333pt;}
.y1b{bottom:650.173333pt;}
.yd7{bottom:651.773333pt;}
.y196{bottom:651.933333pt;}
.y4a{bottom:660.893333pt;}
.y185{bottom:662.653333pt;}
.y92{bottom:665.533333pt;}
.y1a{bottom:666.173333pt;}
.y1c8{bottom:669.853333pt;}
.y71{bottom:670.173333pt;}
.y1a9{bottom:670.333333pt;}
.y156{bottom:674.013333pt;}
.yd6{bottom:674.813333pt;}
.y195{bottom:674.973333pt;}
.y184{bottom:679.613333pt;}
.y49{bottom:683.933333pt;}
.y19{bottom:684.573333pt;}
.y155{bottom:687.773333pt;}
.y91{bottom:688.573333pt;}
.y1c7{bottom:689.373333pt;}
.yc5{bottom:690.666667pt;}
.y182{bottom:691.453333pt;}
.y70{bottom:693.213333pt;}
.yd5{bottom:697.693333pt;}
.y194{bottom:697.853333pt;}
.y154{bottom:698.973333pt;}
.y18{bottom:701.853333pt;}
.y145{bottom:703.917328pt;}
.y48{bottom:706.973333pt;}
.y1c6{bottom:709.053333pt;}
.y90{bottom:711.453333pt;}
.y17{bottom:714.013333pt;}
.y1a8{bottom:716.093333pt;}
.y6f{bottom:718.173333pt;}
.y180{bottom:719.773333pt;}
.yd4{bottom:720.733333pt;}
.y10e{bottom:720.893333pt;}
.y16{bottom:726.493333pt;}
.y1c5{bottom:728.573333pt;}
.y47{bottom:729.853333pt;}
.y8f{bottom:734.653333pt;}
.ybf{bottom:735.133333pt;}
.y15{bottom:739.133333pt;}
.y6e{bottom:743.773333pt;}
.y193{bottom:743.933333pt;}
.y17f{bottom:748.093333pt;}
.y1c3{bottom:748.253333pt;}
.y46{bottom:752.893333pt;}
.y8e{bottom:757.733333pt;}
.y14{bottom:758.533333pt;}
.y1a7{bottom:762.373333pt;}
.y17e{bottom:762.533333pt;}
.y6d{bottom:766.693333pt;}
.y10d{bottom:766.853333pt;}
.y1bf{bottom:767.813333pt;}
.y13{bottom:769.893333pt;}
.y45{bottom:775.973333pt;}
.y17d{bottom:777.093333pt;}
.y8d{bottom:780.613333pt;}
.y1a6{bottom:787.173333pt;}
.y12{bottom:789.093333pt;}
.y6c{bottom:789.733333pt;}
.y1a1{bottom:789.893333pt;}
.y44{bottom:799.013333pt;}
.y8c{bottom:803.493333pt;}
.y11{bottom:804.453333pt;}
.y17c{bottom:805.253333pt;}
.y6b{bottom:812.773333pt;}
.yd3{bottom:812.933333pt;}
.y10{bottom:816.453333pt;}
.y17b{bottom:819.813333pt;}
.y43{bottom:821.893333pt;}
.y1bd{bottom:824.293333pt;}
.y8b{bottom:826.533333pt;}
.yf{bottom:834.853333pt;}
.y6a{bottom:835.813333pt;}
.yd2{bottom:835.973333pt;}
.yba{bottom:838.373333pt;}
.y42{bottom:844.933333pt;}
.y17a{bottom:847.973333pt;}
.y8a{bottom:849.573333pt;}
.ye{bottom:854.533333pt;}
.y69{bottom:858.693333pt;}
.yd1{bottom:858.853333pt;}
.y41{bottom:867.973333pt;}
.y89{bottom:872.773333pt;}
.y179{bottom:876.293333pt;}
.yd{bottom:879.013333pt;}
.y68{bottom:881.733333pt;}
.y192{bottom:881.893333pt;}
.y1bc{bottom:886.373333pt;}
.y40{bottom:891.013333pt;}
.y88{bottom:895.493333pt;}
.yc{bottom:903.493333pt;}
.y178{bottom:904.613333pt;}
.y67{bottom:904.773333pt;}
.ye2{bottom:904.933333pt;}
.y1bb{bottom:909.413333pt;}
.y3f{bottom:913.893333pt;}
.y87{bottom:918.533333pt;}
.y174{bottom:919.013333pt;}
.y1ba{bottom:925.733333pt;}
.yb7{bottom:927.013333pt;}
.y66{bottom:927.813333pt;}
.y191{bottom:927.973333pt;}
.yb{bottom:928.133333pt;}
.y3e{bottom:939.013333pt;}
.y86{bottom:941.733333pt;}
.y1b9{bottom:944.133333pt;}
.y173{bottom:947.333333pt;}
.y65{bottom:950.693333pt;}
.y10c{bottom:950.853333pt;}
.ya{bottom:952.613333pt;}
.yb5{bottom:956.933333pt;}
.y170{bottom:961.733333pt;}
.y3d{bottom:966.533333pt;}
.y1b8{bottom:971.173333pt;}
.y64{bottom:973.733333pt;}
.y10b{bottom:973.893333pt;}
.y9{bottom:975.973333pt;}
.y16e{bottom:976.133333pt;}
.yb4{bottom:976.293333pt;}
.y3c{bottom:994.213333pt;}
.y8{bottom:994.373333pt;}
.yb3{bottom:994.693333pt;}
.y63{bottom:996.773333pt;}
.y10a{bottom:996.933333pt;}
.y3{bottom:1049.600000pt;}
.y2{bottom:1058.880000pt;}
.y1{bottom:1068.000000pt;}
.h36{height:12.160000pt;}
.h34{height:12.180000pt;}
.h35{height:12.320000pt;}
.h2a{height:13.746667pt;}
.h2e{height:13.780000pt;}
.h29{height:13.906667pt;}
.h11{height:14.706667pt;}
.h6{height:15.352000pt;}
.h3{height:23.296875pt;}
.h2{height:23.328125pt;}
.ha{height:25.194375pt;}
.h2c{height:27.506667pt;}
.h2d{height:27.666667pt;}
.h2f{height:27.680000pt;}
.h13{height:29.266667pt;}
.hb{height:31.217812pt;}
.hc{height:31.259687pt;}
.h31{height:31.322500pt;}
.h14{height:34.464000pt;}
.h10{height:34.992188pt;}
.h23{height:35.404688pt;}
.h28{height:35.437201pt;}
.h27{height:35.527602pt;}
.h26{height:37.417515pt;}
.h25{height:37.512968pt;}
.h1e{height:38.121711pt;}
.h22{height:38.124807pt;}
.h1c{height:38.141861pt;}
.h1f{height:38.213570pt;}
.h21{height:38.216674pt;}
.h1b{height:38.233769pt;}
.h33{height:38.336562pt;}
.he{height:38.672812pt;}
.h5{height:38.724688pt;}
.hd{height:38.802500pt;}
.h12{height:39.600000pt;}
.h4{height:42.656250pt;}
.h2b{height:42.914062pt;}
.h17{height:43.826667pt;}
.h7{height:46.593750pt;}
.hf{height:47.491563pt;}
.h30{height:47.506667pt;}
.h32{height:49.106667pt;}
.h9{height:52.337813pt;}
.h18{height:58.560000pt;}
.h8{height:61.969687pt;}
.h19{height:73.280000pt;}
.h15{height:87.986667pt;}
.h16{height:102.580000pt;}
.h20{height:276.848604pt;}
.h24{height:300.118194pt;}
.h1d{height:350.710269pt;}
.h1a{height:360.976191pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:22.226667pt;}
.we{width:28.312000pt;}
.w17{width:54.546667pt;}
.w10{width:56.658667pt;}
.w11{width:60.000000pt;}
.w15{width:60.786667pt;}
.w13{width:60.832000pt;}
.w14{width:62.546667pt;}
.w12{width:64.960000pt;}
.wf{width:74.232000pt;}
.w16{width:84.338667pt;}
.w9{width:91.512000pt;}
.wa{width:131.538667pt;}
.wc{width:284.178667pt;}
.w3{width:313.458667pt;}
.w4{width:313.506667pt;}
.wd{width:323.106667pt;}
.wb{width:388.693333pt;}
.w7{width:516.292728pt;}
.w8{width:522.939105pt;}
.w6{width:524.333175pt;}
.w5{width:526.236775pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:3.672000pt;}
.x4d{left:4.786667pt;}
.x43{left:5.752000pt;}
.x13{left:6.872000pt;}
.x3b{left:8.715667pt;}
.x38{left:10.678414pt;}
.x4f{left:11.666667pt;}
.x4b{left:12.640000pt;}
.x44{left:14.072000pt;}
.x52{left:19.826667pt;}
.x45{left:22.546667pt;}
.x50{left:24.146667pt;}
.x55{left:27.200000pt;}
.x3d{left:29.112000pt;}
.x20{left:30.650558pt;}
.x4a{left:32.480000pt;}
.x3a{left:33.997726pt;}
.x53{left:35.866667pt;}
.x46{left:37.106667pt;}
.x39{left:41.249701pt;}
.x3f{left:49.906667pt;}
.x21{left:53.662431pt;}
.x22{left:55.260481pt;}
.x31{left:57.301939pt;}
.x28{left:70.795430pt;}
.x2a{left:82.781031pt;}
.x29{left:85.338046pt;}
.xf{left:87.720000pt;}
.x4{left:94.592000pt;}
.x12{left:100.666667pt;}
.x2b{left:105.985291pt;}
.x2c{left:107.583385pt;}
.x17{left:108.672000pt;}
.x34{left:122.551376pt;}
.x10{left:131.506667pt;}
.x8{left:132.512000pt;}
.x1a{left:134.020122pt;}
.x25{left:134.953603pt;}
.xa{left:136.026667pt;}
.x2e{left:138.953092pt;}
.x19{left:148.506667pt;}
.x33{left:153.182625pt;}
.x3c{left:166.106667pt;}
.x3e{left:180.040000pt;}
.xc{left:184.186667pt;}
.x1{left:190.106667pt;}
.x47{left:197.160000pt;}
.xe{left:199.226667pt;}
.x30{left:202.644764pt;}
.x24{left:214.746667pt;}
.x2d{left:228.186667pt;}
.x15{left:231.866667pt;}
.x2f{left:242.273570pt;}
.x48{left:253.826667pt;}
.x35{left:264.862698pt;}
.x3{left:274.786667pt;}
.x1b{left:280.390563pt;}
.x1c{left:288.700409pt;}
.x37{left:290.410822pt;}
.x40{left:312.386667pt;}
.x49{left:313.826667pt;}
.x9{left:317.986667pt;}
.x36{left:321.015416pt;}
.x42{left:378.786667pt;}
.x26{left:387.696474pt;}
.x27{left:392.677189pt;}
.x2{left:396.866667pt;}
.x11{left:401.986667pt;}
.x1d{left:414.533261pt;}
.x1e{left:428.915683pt;}
.x1f{left:430.513734pt;}
.x4c{left:439.626667pt;}
.x4e{left:502.186667pt;}
.x51{left:562.986667pt;}
.x6{left:621.093333pt;}
.x54{left:647.333333pt;}
.x18{left:649.093333pt;}
.xb{left:654.213333pt;}
.x32{left:660.293333pt;}
.x16{left:661.573333pt;}
.xd{left:663.493333pt;}
.x23{left:665.253333pt;}
.x5{left:674.213333pt;}
.x14{left:691.653333pt;}
.x7{left:699.333333pt;}
}




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