
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_7bbad63dfe1b3d66db09dcd3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f70f449f3a5d27110680b842.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0ad09fb487e7f52b86f2496.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_41491dee4493bd838e92ac16.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b8ed32ecc176f44a51406be4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ed83a4e7d5e6233a33b6f77.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_a2b62facb4a0ebb822d2c1e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.060547;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_9a906d152fee5cd1c8efe264.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_2ce8be0ed8a3f73f56c89a11.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_db9b813e0b548e2b3bdec19e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-73.440000px;}
.v6{vertical-align:-51.120000px;}
.v3{vertical-align:-23.760000px;}
.vb{vertical-align:-9.360000px;}
.v8{vertical-align:-7.920000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:7.920000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.v7{vertical-align:31.680000px;}
.va{vertical-align:35.400000px;}
.v4{vertical-align:51.120000px;}
.ls18{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.804000px;}
.lsa{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.085200px;}
.ls17{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.292200px;}
.ls12{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:5.220000px;}
.lsb{letter-spacing:10.980000px;}
.lsd{letter-spacing:11.700000px;}
.ls15{letter-spacing:12.024000px;}
.lsc{letter-spacing:12.396000px;}
.ls1d{letter-spacing:14.580000px;}
.ls19{letter-spacing:20.340000px;}
.ls13{letter-spacing:21.204000px;}
.ls1c{letter-spacing:31.626720px;}
.ls14{letter-spacing:44.647200px;}
.ls25{letter-spacing:44.748000px;}
.ls1f{letter-spacing:46.349280px;}
.ls24{letter-spacing:48.348000px;}
.ls23{letter-spacing:52.668000px;}
.ls1b{letter-spacing:61.146720px;}
.ls22{letter-spacing:69.228000px;}
.ls1e{letter-spacing:70.805280px;}
.ls21{letter-spacing:72.108000px;}
.ls20{letter-spacing:72.252000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws10{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws13{word-spacing:-13.860000px;}
.wse{word-spacing:-13.824000px;}
.ws5{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.482000px;}
.ws14{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.798000px;}
.ws12{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.ws9{word-spacing:-10.905000px;}
.wsb{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.wsa{word-spacing:-9.808800px;}
.ws3{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-4.356480px;}
._5{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._1{width:1.234560px;}
._a{width:2.235840px;}
._4{width:3.417120px;}
._6{width:5.344560px;}
._7{width:6.966000px;}
._8{width:8.100000px;}
._10{width:9.396000px;}
._9{width:10.759440px;}
._b{width:11.773920px;}
._17{width:15.340320px;}
._12{width:16.396560px;}
._11{width:17.604000px;}
._18{width:18.862560px;}
._d{width:20.034000px;}
._c{width:21.060000px;}
._14{width:22.264560px;}
._13{width:23.490000px;}
._e{width:25.164000px;}
._f{width:26.431440px;}
._16{width:27.438240px;}
._15{width:29.376000px;}
._23{width:30.616560px;}
._1a{width:31.734000px;}
._22{width:32.742000px;}
._24{width:33.829440px;}
._2c{width:34.833120px;}
._26{width:36.126000px;}
._1b{width:37.692000px;}
._1c{width:38.833440px;}
._2b{width:40.500000px;}
._25{width:42.552000px;}
._29{width:44.334000px;}
._2a{width:45.594000px;}
._28{width:46.759680px;}
._27{width:48.384000px;}
._31{width:55.026000px;}
._32{width:56.113440px;}
._3c{width:64.422000px;}
._2f{width:65.556000px;}
._30{width:66.805440px;}
._36{width:76.626000px;}
._2e{width:80.082000px;}
._3b{width:115.511040px;}
._1d{width:116.591760px;}
._2d{width:129.114000px;}
._1f{width:135.756000px;}
._1e{width:136.836000px;}
._33{width:156.978000px;}
._34{width:158.220000px;}
._21{width:162.427680px;}
._20{width:202.374960px;}
._3a{width:203.820480px;}
._3d{width:312.984000px;}
._38{width:334.434000px;}
._39{width:335.664000px;}
._35{width:717.552000px;}
._3e{width:766.254000px;}
._37{width:964.602000px;}
._2{width:1625.460000px;}
._3{width:1927.132800px;}
.fc7{color:transparent;}
.fc6{color:rgb(15,17,21);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:3.045000px;}
.y1d{bottom:3.420000px;}
.y9c{bottom:3.600000px;}
.ya0{bottom:3.780000px;}
.ya7{bottom:3.825000px;}
.y136{bottom:5.565000px;}
.y131{bottom:5.580000px;}
.y12f{bottom:5.760000px;}
.y134{bottom:5.790000px;}
.y20{bottom:10.260000px;}
.yd5{bottom:16.545000px;}
.ydb{bottom:16.560000px;}
.yd9{bottom:16.590000px;}
.yd2{bottom:16.725000px;}
.y9b{bottom:18.000000px;}
.y99{bottom:18.720000px;}
.y108{bottom:21.060000px;}
.y12e{bottom:23.580000px;}
.y1c{bottom:27.180000px;}
.y1f{bottom:29.160000px;}
.yd1{bottom:33.465000px;}
.y98{bottom:36.000000px;}
.y1b{bottom:45.030000px;}
.ycf{bottom:48.045000px;}
.y48{bottom:58.500000px;}
.yce{bottom:61.725000px;}
.y1a{bottom:62.850000px;}
.y7{bottom:76.860000px;}
.y95{bottom:77.760000px;}
.y19{bottom:80.670000px;}
.y193{bottom:81.360000px;}
.yde{bottom:90.540000px;}
.y20b{bottom:93.240000px;}
.y1eb{bottom:93.420000px;}
.y146{bottom:94.500000px;}
.y104{bottom:95.040000px;}
.y94{bottom:95.580000px;}
.y18{bottom:98.490000px;}
.y192{bottom:99.180000px;}
.y227{bottom:99.540000px;}
.yf6{bottom:103.860000px;}
.y44{bottom:107.100000px;}
.y178{bottom:108.000000px;}
.y1be{bottom:108.360000px;}
.y82{bottom:109.980000px;}
.y20a{bottom:110.700000px;}
.y1ea{bottom:111.240000px;}
.y145{bottom:112.320000px;}
.y103{bottom:112.860000px;}
.y93{bottom:113.400000px;}
.y6b{bottom:115.380000px;}
.y39{bottom:116.100000px;}
.y17{bottom:116.490000px;}
.y226{bottom:117.360000px;}
.ydd{bottom:118.620000px;}
.yf5{bottom:121.680000px;}
.y43{bottom:124.920000px;}
.y191{bottom:125.640000px;}
.y177{bottom:125.820000px;}
.y1bd{bottom:126.180000px;}
.y81{bottom:127.800000px;}
.y209{bottom:128.880000px;}
.y1e9{bottom:129.060000px;}
.y144{bottom:130.140000px;}
.y102{bottom:130.680000px;}
.y92{bottom:131.220000px;}
.y38{bottom:133.920000px;}
.y16{bottom:134.310000px;}
.y6a{bottom:135.180000px;}
.yf4{bottom:139.500000px;}
.y42{bottom:142.920000px;}
.y176{bottom:143.640000px;}
.y1bc{bottom:144.000000px;}
.ydc{bottom:146.700000px;}
.y1e8{bottom:146.880000px;}
.y143{bottom:147.960000px;}
.y101{bottom:148.500000px;}
.y91{bottom:149.040000px;}
.y37{bottom:151.920000px;}
.y15{bottom:152.130000px;}
.y190{bottom:152.820000px;}
.y225{bottom:153.000000px;}
.y80{bottom:154.620000px;}
.yf3{bottom:157.500000px;}
.y41{bottom:160.740000px;}
.y175{bottom:161.640000px;}
.y1bb{bottom:161.820000px;}
.y1e7{bottom:164.700000px;}
.y100{bottom:166.500000px;}
.y90{bottom:166.860000px;}
.y36{bottom:169.740000px;}
.y14{bottom:169.950000px;}
.y18f{bottom:170.640000px;}
.y224{bottom:170.820000px;}
.yda{bottom:174.960000px;}
.yf2{bottom:175.320000px;}
.y40{bottom:178.560000px;}
.y174{bottom:179.460000px;}
.y1ba{bottom:179.640000px;}
.y7f{bottom:181.440000px;}
.y208{bottom:182.520000px;}
.y1e6{bottom:182.700000px;}
.yff{bottom:184.320000px;}
.y8f{bottom:184.860000px;}
.y35{bottom:187.560000px;}
.y18e{bottom:188.640000px;}
.yf1{bottom:193.140000px;}
.y3f{bottom:196.380000px;}
.y142{bottom:196.920000px;}
.y173{bottom:197.280000px;}
.y1b9{bottom:197.640000px;}
.y207{bottom:200.340000px;}
.y1e5{bottom:200.520000px;}
.yfe{bottom:202.140000px;}
.yd8{bottom:203.040000px;}
.y34{bottom:205.380000px;}
.y18d{bottom:206.490000px;}
.y223{bottom:206.670000px;}
.y7e{bottom:207.210000px;}
.yf0{bottom:210.990000px;}
.y8e{bottom:211.710000px;}
.y7d{bottom:214.050000px;}
.y3e{bottom:214.230000px;}
.y172{bottom:215.130000px;}
.y1b8{bottom:215.490000px;}
.y141{bottom:215.505000px;}
.y206{bottom:218.190000px;}
.y1e4{bottom:218.370000px;}
.yfd{bottom:219.990000px;}
.y33{bottom:223.230000px;}
.y18c{bottom:224.310000px;}
.y222{bottom:224.490000px;}
.yef{bottom:228.810000px;}
.yd7{bottom:231.165000px;}
.y3d{bottom:232.050000px;}
.y171{bottom:232.950000px;}
.y1b7{bottom:233.310000px;}
.y140{bottom:234.225000px;}
.y205{bottom:236.010000px;}
.y1e3{bottom:236.190000px;}
.yfc{bottom:237.810000px;}
.y8d{bottom:239.970000px;}
.y32{bottom:241.050000px;}
.y18b{bottom:242.130000px;}
.y221{bottom:242.310000px;}
.y7c{bottom:244.650000px;}
.yee{bottom:246.630000px;}
.y3c{bottom:250.050000px;}
.y170{bottom:250.950000px;}
.y1b6{bottom:251.130000px;}
.y13f{bottom:252.765000px;}
.y204{bottom:253.830000px;}
.y1e2{bottom:254.010000px;}
.yfb{bottom:255.630000px;}
.y31{bottom:259.050000px;}
.yd6{bottom:259.245000px;}
.y18a{bottom:259.950000px;}
.y220{bottom:260.130000px;}
.y7b{bottom:262.470000px;}
.yed{bottom:264.630000px;}
.y3b{bottom:267.870000px;}
.y16f{bottom:268.770000px;}
.y1b5{bottom:268.950000px;}
.y8c{bottom:271.290000px;}
.y13e{bottom:271.305000px;}
.y1e1{bottom:271.830000px;}
.yfa{bottom:273.630000px;}
.y30{bottom:276.870000px;}
.y189{bottom:277.950000px;}
.yec{bottom:282.450000px;}
.y3a{bottom:285.690000px;}
.y16e{bottom:286.590000px;}
.y1b4{bottom:286.950000px;}
.yd4{bottom:287.505000px;}
.y8b{bottom:289.110000px;}
.y7a{bottom:289.290000px;}
.y203{bottom:289.650000px;}
.y1e0{bottom:289.830000px;}
.y13d{bottom:290.025000px;}
.yf9{bottom:291.450000px;}
.y2f{bottom:294.690000px;}
.y188{bottom:295.770000px;}
.y21f{bottom:295.950000px;}
.yeb{bottom:300.270000px;}
.y16d{bottom:304.410000px;}
.y1b3{bottom:304.770000px;}
.y79{bottom:307.110000px;}
.y202{bottom:307.470000px;}
.y1df{bottom:307.650000px;}
.y13c{bottom:308.565000px;}
.yf8{bottom:309.270000px;}
.y2e{bottom:312.510000px;}
.y187{bottom:313.590000px;}
.y21e{bottom:313.770000px;}
.ycd{bottom:315.585000px;}
.y16c{bottom:322.230000px;}
.y1b2{bottom:322.590000px;}
.y8a{bottom:324.930000px;}
.y78{bottom:325.110000px;}
.y1de{bottom:325.470000px;}
.yea{bottom:326.730000px;}
.yf7{bottom:327.090000px;}
.y13b{bottom:327.105000px;}
.y2d{bottom:330.330000px;}
.y186{bottom:331.410000px;}
.y21d{bottom:331.590000px;}
.y16b{bottom:340.050000px;}
.y1b1{bottom:340.410000px;}
.y89{bottom:342.750000px;}
.y77{bottom:342.930000px;}
.y201{bottom:343.110000px;}
.y1dd{bottom:343.290000px;}
.yd0{bottom:343.845000px;}
.y13a{bottom:345.825000px;}
.y2c{bottom:348.330000px;}
.y185{bottom:349.230000px;}
.y21c{bottom:349.410000px;}
.ye9{bottom:353.550000px;}
.y16a{bottom:358.050000px;}
.y1b0{bottom:358.230000px;}
.y76{bottom:360.750000px;}
.y1dc{bottom:361.110000px;}
.y139{bottom:364.365000px;}
.y2b{bottom:366.150000px;}
.y184{bottom:367.050000px;}
.y21b{bottom:367.230000px;}
.y88{bottom:369.210000px;}
.y169{bottom:375.870000px;}
.y1af{bottom:376.050000px;}
.ye8{bottom:378.390000px;}
.y75{bottom:378.570000px;}
.y200{bottom:378.930000px;}
.y1db{bottom:379.110000px;}
.y138{bottom:382.905000px;}
.y2a{bottom:383.970000px;}
.y183{bottom:385.050000px;}
.y168{bottom:393.690000px;}
.y1ae{bottom:394.050000px;}
.y87{bottom:396.030000px;}
.y74{bottom:396.390000px;}
.y1ff{bottom:396.750000px;}
.y1da{bottom:396.930000px;}
.y137{bottom:401.625000px;}
.y29{bottom:401.790000px;}
.y182{bottom:402.870000px;}
.y21a{bottom:403.050000px;}
.ycc{bottom:403.230000px;}
.y167{bottom:411.510000px;}
.y1ad{bottom:411.870000px;}
.y86{bottom:413.850000px;}
.y73{bottom:414.210000px;}
.y1fe{bottom:414.570000px;}
.y1d9{bottom:414.750000px;}
.y28{bottom:419.610000px;}
.y135{bottom:420.165000px;}
.y181{bottom:420.690000px;}
.y219{bottom:420.870000px;}
.y166{bottom:429.330000px;}
.y1ac{bottom:429.690000px;}
.ybf{bottom:430.410000px;}
.y72{bottom:432.210000px;}
.y1fd{bottom:432.390000px;}
.y1d8{bottom:432.570000px;}
.y27{bottom:437.430000px;}
.y180{bottom:438.510000px;}
.y218{bottom:438.690000px;}
.y133{bottom:438.705000px;}
.y85{bottom:441.255000px;}
.y165{bottom:447.195000px;}
.y1ab{bottom:447.555000px;}
.ybe{bottom:448.275000px;}
.ycb{bottom:448.635000px;}
.y71{bottom:450.075000px;}
.y1fc{bottom:450.255000px;}
.y1d7{bottom:450.435000px;}
.y26{bottom:455.475000px;}
.y17f{bottom:456.375000px;}
.y217{bottom:456.555000px;}
.y132{bottom:457.455000px;}
.y84{bottom:459.075000px;}
.y1aa{bottom:465.375000px;}
.ybd{bottom:466.095000px;}
.yca{bottom:466.455000px;}
.y1d6{bottom:468.255000px;}
.y25{bottom:473.295000px;}
.y164{bottom:474.195000px;}
.y216{bottom:474.375000px;}
.y130{bottom:475.995000px;}
.y70{bottom:476.535000px;}
.y83{bottom:476.895000px;}
.y1a9{bottom:483.195000px;}
.yc9{bottom:484.275000px;}
.y1fb{bottom:486.075000px;}
.y1d5{bottom:486.255000px;}
.y24{bottom:491.115000px;}
.y163{bottom:492.015000px;}
.y17e{bottom:492.195000px;}
.ybc{bottom:492.555000px;}
.y12d{bottom:494.535000px;}
.y1a8{bottom:501.195000px;}
.yc8{bottom:502.095000px;}
.y1fa{bottom:503.895000px;}
.y1d4{bottom:504.075000px;}
.y6f{bottom:508.755000px;}
.y23{bottom:508.935000px;}
.y162{bottom:509.835000px;}
.y17d{bottom:510.015000px;}
.y215{bottom:510.195000px;}
.y1a7{bottom:519.015000px;}
.ybb{bottom:519.735000px;}
.yc7{bottom:519.915000px;}
.y1f9{bottom:521.715000px;}
.y1d3{bottom:521.895000px;}
.y22{bottom:526.755000px;}
.y161{bottom:527.655000px;}
.y17c{bottom:527.835000px;}
.y214{bottom:528.015000px;}
.y6e{bottom:531.795000px;}
.y1a6{bottom:536.835000px;}
.yba{bottom:537.735000px;}
.y1f8{bottom:539.535000px;}
.y1d2{bottom:539.715000px;}
.y12c{bottom:545.295000px;}
.y17b{bottom:545.655000px;}
.y213{bottom:545.835000px;}
.y160{bottom:554.115000px;}
.y1a5{bottom:554.655000px;}
.yb9{bottom:555.555000px;}
.yc6{bottom:555.735000px;}
.y1d1{bottom:557.535000px;}
.y21{bottom:560.775000px;}
.y17a{bottom:563.475000px;}
.y212{bottom:563.655000px;}
.y123{bottom:572.475000px;}
.yb8{bottom:573.375000px;}
.yc5{bottom:573.555000px;}
.y1f7{bottom:575.355000px;}
.y1d0{bottom:575.535000px;}
.y15f{bottom:581.475000px;}
.y1e{bottom:587.235000px;}
.y122{bottom:590.295000px;}
.y1a4{bottom:590.475000px;}
.yb7{bottom:591.195000px;}
.yc4{bottom:591.375000px;}
.y1f6{bottom:593.175000px;}
.y1cf{bottom:593.355000px;}
.y12b{bottom:599.295000px;}
.y211{bottom:599.475000px;}
.y121{bottom:608.295000px;}
.yb6{bottom:609.015000px;}
.yc3{bottom:609.195000px;}
.y1f5{bottom:610.995000px;}
.y1ce{bottom:611.175000px;}
.y15e{bottom:617.115000px;}
.y12a{bottom:617.295000px;}
.y120{bottom:626.115000px;}
.yb5{bottom:627.015000px;}
.y1f4{bottom:628.815000px;}
.y1cd{bottom:628.995000px;}
.y15d{bottom:634.935000px;}
.y129{bottom:635.115000px;}
.y13{bottom:638.355000px;}
.y11f{bottom:643.935000px;}
.yb4{bottom:644.835000px;}
.yc2{bottom:645.015000px;}
.y1f3{bottom:646.635000px;}
.y1cc{bottom:646.815000px;}
.y15c{bottom:652.755000px;}
.y128{bottom:652.935000px;}
.y11e{bottom:661.755000px;}
.yc1{bottom:662.835000px;}
.y1cb{bottom:664.635000px;}
.y15b{bottom:670.575000px;}
.y127{bottom:670.755000px;}
.yb3{bottom:671.295000px;}
.y11d{bottom:679.605000px;}
.yc0{bottom:680.685000px;}
.y1f2{bottom:682.485000px;}
.y1ca{bottom:682.665000px;}
.y210{bottom:688.245000px;}
.y126{bottom:688.605000px;}
.y11c{bottom:697.605000px;}
.yb2{bottom:698.505000px;}
.y1c9{bottom:700.485000px;}
.y22a{bottom:706.245000px;}
.y15a{bottom:706.425000px;}
.y125{bottom:706.605000px;}
.y1f1{bottom:710.745000px;}
.y1a3{bottom:715.425000px;}
.yb1{bottom:716.325000px;}
.y1c8{bottom:718.305000px;}
.y11b{bottom:724.065000px;}
.y159{bottom:724.245000px;}
.y124{bottom:724.425000px;}
.y1a2{bottom:733.245000px;}
.yb0{bottom:734.145000px;}
.y1c7{bottom:736.125000px;}
.y1f0{bottom:741.705000px;}
.y158{bottom:742.065000px;}
.y20f{bottom:742.245000px;}
.y1a1{bottom:751.065000px;}
.y11a{bottom:751.245000px;}
.y1c6{bottom:753.945000px;}
.y157{bottom:759.885000px;}
.y20e{bottom:760.065000px;}
.yaf{bottom:761.145000px;}
.y1ef{bottom:768.525000px;}
.y1a0{bottom:768.885000px;}
.y1c5{bottom:771.765000px;}
.y119{bottom:773.205000px;}
.y156{bottom:777.885000px;}
.yae{bottom:783.105000px;}
.y19f{bottom:786.885000px;}
.y1c4{bottom:789.765000px;}
.y118{bottom:791.205000px;}
.y20d{bottom:795.525000px;}
.y155{bottom:795.705000px;}
.y1ee{bottom:795.885000px;}
.yad{bottom:801.105000px;}
.y19e{bottom:804.705000px;}
.y1c3{bottom:807.585000px;}
.y5c{bottom:809.025000px;}
.y117{bottom:809.205000px;}
.y154{bottom:813.525000px;}
.y1ed{bottom:813.705000px;}
.yac{bottom:819.105000px;}
.y5d{bottom:821.805000px;}
.y19d{bottom:822.525000px;}
.y1c2{bottom:825.405000px;}
.y116{bottom:827.205000px;}
.y153{bottom:831.345000px;}
.y1ec{bottom:831.525000px;}
.y12{bottom:832.965000px;}
.y5a{bottom:833.505000px;}
.y6d{bottom:836.745000px;}
.yab{bottom:837.105000px;}
.y19c{bottom:840.345000px;}
.y1c1{bottom:843.225000px;}
.y115{bottom:845.205000px;}
.y5b{bottom:846.285000px;}
.y152{bottom:849.165000px;}
.y69{bottom:849.345000px;}
.y6c{bottom:851.685000px;}
.yaa{bottom:855.105000px;}
.y11{bottom:856.725000px;}
.y59{bottom:857.985000px;}
.y19b{bottom:858.165000px;}
.y1c0{bottom:861.045000px;}
.y114{bottom:863.205000px;}
.y151{bottom:866.985000px;}
.y68{bottom:867.165000px;}
.ya9{bottom:873.105000px;}
.y10{bottom:874.725000px;}
.y58{bottom:875.985000px;}
.y113{bottom:881.205000px;}
.y67{bottom:884.985000px;}
.y1bf{bottom:889.485000px;}
.ya8{bottom:891.105000px;}
.y19a{bottom:893.985000px;}
.y112{bottom:899.205000px;}
.y57{bottom:902.445000px;}
.y20c{bottom:902.625000px;}
.y150{bottom:902.805000px;}
.y66{bottom:902.985000px;}
.yf{bottom:904.425000px;}
.ya6{bottom:909.105000px;}
.y199{bottom:911.850000px;}
.y111{bottom:917.250000px;}
.y14f{bottom:920.670000px;}
.y65{bottom:920.850000px;}
.ya5{bottom:927.150000px;}
.ye{bottom:928.410000px;}
.y56{bottom:929.670000px;}
.ye7{bottom:933.810000px;}
.y110{bottom:935.250000px;}
.y14e{bottom:938.490000px;}
.y64{bottom:938.670000px;}
.ya4{bottom:945.150000px;}
.y55{bottom:947.490000px;}
.yd{bottom:952.170000px;}
.y10f{bottom:953.250000px;}
.ye6{bottom:955.950000px;}
.y14d{bottom:956.310000px;}
.y63{bottom:956.490000px;}
.ya3{bottom:963.150000px;}
.y54{bottom:965.310000px;}
.yc{bottom:969.810000px;}
.y10e{bottom:971.250000px;}
.y62{bottom:974.310000px;}
.ya2{bottom:981.150000px;}
.y53{bottom:983.310000px;}
.ye5{bottom:984.030000px;}
.y10d{bottom:989.250000px;}
.y14c{bottom:992.130000px;}
.y61{bottom:992.310000px;}
.yb{bottom:996.630000px;}
.ya1{bottom:999.150000px;}
.y52{bottom:1001.130000px;}
.y10c{bottom:1007.250000px;}
.y14b{bottom:1009.950000px;}
.y60{bottom:1010.130000px;}
.ye4{bottom:1012.110000px;}
.y9f{bottom:1017.150000px;}
.y51{bottom:1018.950000px;}
.ya{bottom:1024.530000px;}
.y10b{bottom:1025.250000px;}
.y14a{bottom:1027.770000px;}
.y5f{bottom:1027.950000px;}
.y9e{bottom:1035.150000px;}
.y50{bottom:1036.770000px;}
.ye3{bottom:1040.190000px;}
.y10a{bottom:1043.250000px;}
.y229{bottom:1045.410000px;}
.y149{bottom:1045.590000px;}
.y5e{bottom:1045.770000px;}
.y9d{bottom:1053.150000px;}
.y198{bottom:1054.590000px;}
.y9{bottom:1056.930000px;}
.y109{bottom:1061.250000px;}
.y148{bottom:1063.410000px;}
.y4f{bottom:1063.590000px;}
.ye2{bottom:1070.430000px;}
.y97{bottom:1071.150000px;}
.y197{bottom:1072.410000px;}
.y107{bottom:1079.250000px;}
.y4e{bottom:1081.410000px;}
.y8{bottom:1087.350000px;}
.y9a{bottom:1089.150000px;}
.y179{bottom:1090.050000px;}
.y196{bottom:1090.410000px;}
.ye1{bottom:1098.690000px;}
.y4d{bottom:1099.410000px;}
.y147{bottom:1107.870000px;}
.y195{bottom:1108.230000px;}
.y6{bottom:1113.270000px;}
.y228{bottom:1116.870000px;}
.y4c{bottom:1117.230000px;}
.y194{bottom:1126.050000px;}
.ye0{bottom:1126.770000px;}
.y106{bottom:1128.750000px;}
.y5{bottom:1132.530000px;}
.y96{bottom:1133.790000px;}
.y4b{bottom:1135.050000px;}
.y105{bottom:1148.760000px;}
.y4{bottom:1150.920000px;}
.y4a{bottom:1152.900000px;}
.ydf{bottom:1154.880000px;}
.y3{bottom:1166.220000px;}
.y49{bottom:1170.720000px;}
.y2{bottom:1181.520000px;}
.y47{bottom:1183.860000px;}
.y46{bottom:1189.260000px;}
.y45{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h14{height:10.363359px;}
.h13{height:15.240234px;}
.h1d{height:17.085000px;}
.h1f{height:17.265000px;}
.h21{height:17.280000px;}
.h20{height:17.302500px;}
.h2f{height:17.805000px;}
.h31{height:17.856000px;}
.h30{height:18.021000px;}
.h17{height:18.140625px;}
.h26{height:27.345000px;}
.h2a{height:27.358500px;}
.h29{height:27.360000px;}
.h2b{height:27.390000px;}
.h28{height:27.396000px;}
.h25{height:27.525000px;}
.h2c{height:29.505000px;}
.h1c{height:31.485000px;}
.h2d{height:34.545000px;}
.hb{height:35.332031px;}
.h2e{height:35.805000px;}
.h16{height:37.705078px;}
.h11{height:38.100586px;}
.h12{height:40.843828px;}
.h24{height:44.265000px;}
.h6{height:47.344922px;}
.h1b{height:49.485000px;}
.h27{height:49.583118px;}
.he{height:50.385000px;}
.h22{height:52.971680px;}
.h7{height:52.998047px;}
.hc{height:54.421875px;}
.h32{height:55.503491px;}
.h1a{height:58.651172px;}
.ha{height:60.041250px;}
.h1e{height:61.423863px;}
.h18{height:64.447031px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.hf{height:66.757500px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.h23{height:72.525000px;}
.h10{height:72.562500px;}
.h19{height:80.358047px;}
.h9{height:84.898125px;}
.h15{height:86.452031px;}
.hd{height:188.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:53.085000px;}
.w12{width:53.100000px;}
.wc{width:54.889500px;}
.w7{width:56.520000px;}
.w17{width:59.025000px;}
.w11{width:59.061000px;}
.w3{width:61.365000px;}
.wa{width:61.725000px;}
.wb{width:61.761000px;}
.w8{width:61.776000px;}
.w14{width:64.965000px;}
.w16{width:65.001000px;}
.w13{width:65.016000px;}
.w1e{width:66.045000px;}
.wd{width:66.765000px;}
.w15{width:71.085000px;}
.w9{width:71.445000px;}
.w4{width:96.681000px;}
.w1d{width:120.585000px;}
.w19{width:120.589500px;}
.w1a{width:120.600000px;}
.w1c{width:120.621000px;}
.w1b{width:120.636000px;}
.w22{width:120.801000px;}
.w1f{width:126.561000px;}
.w20{width:127.476000px;}
.w21{width:127.605000px;}
.we{width:166.515000px;}
.w10{width:178.575000px;}
.w5{width:191.190000px;}
.w6{width:196.575000px;}
.wf{width:202.530000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x43{left:10.470000px;}
.x3e{left:15.285000px;}
.x24{left:21.225000px;}
.x51{left:22.305000px;}
.x4c{left:26.085000px;}
.x31{left:28.069500px;}
.x44{left:29.505000px;}
.x50{left:32.925000px;}
.x47{left:34.365000px;}
.x4b{left:36.345000px;}
.x4f{left:40.170000px;}
.x4e{left:41.250000px;}
.x4a{left:42.330000px;}
.x45{left:44.310000px;}
.x4d{left:45.750000px;}
.x48{left:47.190000px;}
.x25{left:48.225000px;}
.x40{left:50.220000px;}
.x46{left:51.840000px;}
.x5{left:54.000000px;}
.xf{left:55.440000px;}
.x49{left:58.170000px;}
.x8{left:72.901500px;}
.x53{left:74.520000px;}
.x57{left:80.100000px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.x54{left:107.136000px;}
.x28{left:110.386500px;}
.x36{left:143.506500px;}
.x3d{left:160.785000px;}
.x29{left:166.005000px;}
.x1c{left:172.665000px;}
.x26{left:191.910000px;}
.x13{left:206.670000px;}
.xd{left:225.390000px;}
.x3f{left:227.565000px;}
.x3c{left:230.790000px;}
.x2a{left:233.505000px;}
.x1d{left:234.765000px;}
.x1b{left:236.190000px;}
.x1a{left:237.990000px;}
.x35{left:248.430000px;}
.x27{left:252.570000px;}
.x1{left:259.950000px;}
.x37{left:264.855000px;}
.x3b{left:276.195000px;}
.x32{left:281.055000px;}
.x2d{left:293.295000px;}
.x52{left:307.695000px;}
.x2{left:320.475000px;}
.x1e{left:332.175000px;}
.x4{left:335.055000px;}
.x34{left:345.675000px;}
.x19{left:347.115000px;}
.x3{left:353.055000px;}
.x11{left:354.495000px;}
.x12{left:364.035000px;}
.x17{left:382.215000px;}
.x38{left:386.175000px;}
.x20{left:389.415000px;}
.x15{left:395.355000px;}
.x2b{left:400.935000px;}
.xe{left:446.505000px;}
.x21{left:451.920000px;}
.x2e{left:466.680000px;}
.xc{left:473.505000px;}
.x41{left:483.240000px;}
.x55{left:494.025000px;}
.x58{left:499.605000px;}
.x39{left:507.720000px;}
.xb{left:514.725000px;}
.x1f{left:524.100000px;}
.x56{left:526.605000px;}
.x2f{left:532.380000px;}
.x22{left:586.560000px;}
.x2c{left:604.200000px;}
.x42{left:611.580000px;}
.x3a{left:629.070000px;}
.x23{left:649.050000px;}
.x30{left:669.930000px;}
.x33{left:721.590000px;}
.x14{left:730.050000px;}
.x18{left:761.550000px;}
.x16{left:764.250000px;}
.x10{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v6{vertical-align:-45.440000pt;}
.v3{vertical-align:-21.120000pt;}
.vb{vertical-align:-8.320000pt;}
.v8{vertical-align:-7.040000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.040000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.v7{vertical-align:28.160000pt;}
.va{vertical-align:31.466667pt;}
.v4{vertical-align:45.440000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.714667pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.259733pt;}
.ls12{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:4.640000pt;}
.lsb{letter-spacing:9.760000pt;}
.lsd{letter-spacing:10.400000pt;}
.ls15{letter-spacing:10.688000pt;}
.lsc{letter-spacing:11.018667pt;}
.ls1d{letter-spacing:12.960000pt;}
.ls19{letter-spacing:18.080000pt;}
.ls13{letter-spacing:18.848000pt;}
.ls1c{letter-spacing:28.112640pt;}
.ls14{letter-spacing:39.686400pt;}
.ls25{letter-spacing:39.776000pt;}
.ls1f{letter-spacing:41.199360pt;}
.ls24{letter-spacing:42.976000pt;}
.ls23{letter-spacing:46.816000pt;}
.ls1b{letter-spacing:54.352640pt;}
.ls22{letter-spacing:61.536000pt;}
.ls1e{letter-spacing:62.938027pt;}
.ls21{letter-spacing:64.096000pt;}
.ls20{letter-spacing:64.224000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws13{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.288000pt;}
.ws5{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.984000pt;}
.ws14{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.376000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws9{word-spacing:-9.693333pt;}
.wsb{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.wsa{word-spacing:-8.718933pt;}
.ws3{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-3.872427pt;}
._5{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.097387pt;}
._a{width:1.987413pt;}
._4{width:3.037440pt;}
._6{width:4.750720pt;}
._7{width:6.192000pt;}
._8{width:7.200000pt;}
._10{width:8.352000pt;}
._9{width:9.563947pt;}
._b{width:10.465707pt;}
._17{width:13.635840pt;}
._12{width:14.574720pt;}
._11{width:15.648000pt;}
._18{width:16.766720pt;}
._d{width:17.808000pt;}
._c{width:18.720000pt;}
._14{width:19.790720pt;}
._13{width:20.880000pt;}
._e{width:22.368000pt;}
._f{width:23.494613pt;}
._16{width:24.389547pt;}
._15{width:26.112000pt;}
._23{width:27.214720pt;}
._1a{width:28.208000pt;}
._22{width:29.104000pt;}
._24{width:30.070613pt;}
._2c{width:30.962773pt;}
._26{width:32.112000pt;}
._1b{width:33.504000pt;}
._1c{width:34.518613pt;}
._2b{width:36.000000pt;}
._25{width:37.824000pt;}
._29{width:39.408000pt;}
._2a{width:40.528000pt;}
._28{width:41.564160pt;}
._27{width:43.008000pt;}
._31{width:48.912000pt;}
._32{width:49.878613pt;}
._3c{width:57.264000pt;}
._2f{width:58.272000pt;}
._30{width:59.382613pt;}
._36{width:68.112000pt;}
._2e{width:71.184000pt;}
._3b{width:102.676480pt;}
._1d{width:103.637120pt;}
._2d{width:114.768000pt;}
._1f{width:120.672000pt;}
._1e{width:121.632000pt;}
._33{width:139.536000pt;}
._34{width:140.640000pt;}
._21{width:144.380160pt;}
._20{width:179.888853pt;}
._3a{width:181.173760pt;}
._3d{width:278.208000pt;}
._38{width:297.274667pt;}
._39{width:298.368000pt;}
._35{width:637.824000pt;}
._3e{width:681.114667pt;}
._37{width:857.424000pt;}
._2{width:1444.853333pt;}
._3{width:1713.006933pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:2.706667pt;}
.y1d{bottom:3.040000pt;}
.y9c{bottom:3.200000pt;}
.ya0{bottom:3.360000pt;}
.ya7{bottom:3.400000pt;}
.y136{bottom:4.946667pt;}
.y131{bottom:4.960000pt;}
.y12f{bottom:5.120000pt;}
.y134{bottom:5.146667pt;}
.y20{bottom:9.120000pt;}
.yd5{bottom:14.706667pt;}
.ydb{bottom:14.720000pt;}
.yd9{bottom:14.746667pt;}
.yd2{bottom:14.866667pt;}
.y9b{bottom:16.000000pt;}
.y99{bottom:16.640000pt;}
.y108{bottom:18.720000pt;}
.y12e{bottom:20.960000pt;}
.y1c{bottom:24.160000pt;}
.y1f{bottom:25.920000pt;}
.yd1{bottom:29.746667pt;}
.y98{bottom:32.000000pt;}
.y1b{bottom:40.026667pt;}
.ycf{bottom:42.706667pt;}
.y48{bottom:52.000000pt;}
.yce{bottom:54.866667pt;}
.y1a{bottom:55.866667pt;}
.y7{bottom:68.320000pt;}
.y95{bottom:69.120000pt;}
.y19{bottom:71.706667pt;}
.y193{bottom:72.320000pt;}
.yde{bottom:80.480000pt;}
.y20b{bottom:82.880000pt;}
.y1eb{bottom:83.040000pt;}
.y146{bottom:84.000000pt;}
.y104{bottom:84.480000pt;}
.y94{bottom:84.960000pt;}
.y18{bottom:87.546667pt;}
.y192{bottom:88.160000pt;}
.y227{bottom:88.480000pt;}
.yf6{bottom:92.320000pt;}
.y44{bottom:95.200000pt;}
.y178{bottom:96.000000pt;}
.y1be{bottom:96.320000pt;}
.y82{bottom:97.760000pt;}
.y20a{bottom:98.400000pt;}
.y1ea{bottom:98.880000pt;}
.y145{bottom:99.840000pt;}
.y103{bottom:100.320000pt;}
.y93{bottom:100.800000pt;}
.y6b{bottom:102.560000pt;}
.y39{bottom:103.200000pt;}
.y17{bottom:103.546667pt;}
.y226{bottom:104.320000pt;}
.ydd{bottom:105.440000pt;}
.yf5{bottom:108.160000pt;}
.y43{bottom:111.040000pt;}
.y191{bottom:111.680000pt;}
.y177{bottom:111.840000pt;}
.y1bd{bottom:112.160000pt;}
.y81{bottom:113.600000pt;}
.y209{bottom:114.560000pt;}
.y1e9{bottom:114.720000pt;}
.y144{bottom:115.680000pt;}
.y102{bottom:116.160000pt;}
.y92{bottom:116.640000pt;}
.y38{bottom:119.040000pt;}
.y16{bottom:119.386667pt;}
.y6a{bottom:120.160000pt;}
.yf4{bottom:124.000000pt;}
.y42{bottom:127.040000pt;}
.y176{bottom:127.680000pt;}
.y1bc{bottom:128.000000pt;}
.ydc{bottom:130.400000pt;}
.y1e8{bottom:130.560000pt;}
.y143{bottom:131.520000pt;}
.y101{bottom:132.000000pt;}
.y91{bottom:132.480000pt;}
.y37{bottom:135.040000pt;}
.y15{bottom:135.226667pt;}
.y190{bottom:135.840000pt;}
.y225{bottom:136.000000pt;}
.y80{bottom:137.440000pt;}
.yf3{bottom:140.000000pt;}
.y41{bottom:142.880000pt;}
.y175{bottom:143.680000pt;}
.y1bb{bottom:143.840000pt;}
.y1e7{bottom:146.400000pt;}
.y100{bottom:148.000000pt;}
.y90{bottom:148.320000pt;}
.y36{bottom:150.880000pt;}
.y14{bottom:151.066667pt;}
.y18f{bottom:151.680000pt;}
.y224{bottom:151.840000pt;}
.yda{bottom:155.520000pt;}
.yf2{bottom:155.840000pt;}
.y40{bottom:158.720000pt;}
.y174{bottom:159.520000pt;}
.y1ba{bottom:159.680000pt;}
.y7f{bottom:161.280000pt;}
.y208{bottom:162.240000pt;}
.y1e6{bottom:162.400000pt;}
.yff{bottom:163.840000pt;}
.y8f{bottom:164.320000pt;}
.y35{bottom:166.720000pt;}
.y18e{bottom:167.680000pt;}
.yf1{bottom:171.680000pt;}
.y3f{bottom:174.560000pt;}
.y142{bottom:175.040000pt;}
.y173{bottom:175.360000pt;}
.y1b9{bottom:175.680000pt;}
.y207{bottom:178.080000pt;}
.y1e5{bottom:178.240000pt;}
.yfe{bottom:179.680000pt;}
.yd8{bottom:180.480000pt;}
.y34{bottom:182.560000pt;}
.y18d{bottom:183.546667pt;}
.y223{bottom:183.706667pt;}
.y7e{bottom:184.186667pt;}
.yf0{bottom:187.546667pt;}
.y8e{bottom:188.186667pt;}
.y7d{bottom:190.266667pt;}
.y3e{bottom:190.426667pt;}
.y172{bottom:191.226667pt;}
.y1b8{bottom:191.546667pt;}
.y141{bottom:191.560000pt;}
.y206{bottom:193.946667pt;}
.y1e4{bottom:194.106667pt;}
.yfd{bottom:195.546667pt;}
.y33{bottom:198.426667pt;}
.y18c{bottom:199.386667pt;}
.y222{bottom:199.546667pt;}
.yef{bottom:203.386667pt;}
.yd7{bottom:205.480000pt;}
.y3d{bottom:206.266667pt;}
.y171{bottom:207.066667pt;}
.y1b7{bottom:207.386667pt;}
.y140{bottom:208.200000pt;}
.y205{bottom:209.786667pt;}
.y1e3{bottom:209.946667pt;}
.yfc{bottom:211.386667pt;}
.y8d{bottom:213.306667pt;}
.y32{bottom:214.266667pt;}
.y18b{bottom:215.226667pt;}
.y221{bottom:215.386667pt;}
.y7c{bottom:217.466667pt;}
.yee{bottom:219.226667pt;}
.y3c{bottom:222.266667pt;}
.y170{bottom:223.066667pt;}
.y1b6{bottom:223.226667pt;}
.y13f{bottom:224.680000pt;}
.y204{bottom:225.626667pt;}
.y1e2{bottom:225.786667pt;}
.yfb{bottom:227.226667pt;}
.y31{bottom:230.266667pt;}
.yd6{bottom:230.440000pt;}
.y18a{bottom:231.066667pt;}
.y220{bottom:231.226667pt;}
.y7b{bottom:233.306667pt;}
.yed{bottom:235.226667pt;}
.y3b{bottom:238.106667pt;}
.y16f{bottom:238.906667pt;}
.y1b5{bottom:239.066667pt;}
.y8c{bottom:241.146667pt;}
.y13e{bottom:241.160000pt;}
.y1e1{bottom:241.626667pt;}
.yfa{bottom:243.226667pt;}
.y30{bottom:246.106667pt;}
.y189{bottom:247.066667pt;}
.yec{bottom:251.066667pt;}
.y3a{bottom:253.946667pt;}
.y16e{bottom:254.746667pt;}
.y1b4{bottom:255.066667pt;}
.yd4{bottom:255.560000pt;}
.y8b{bottom:256.986667pt;}
.y7a{bottom:257.146667pt;}
.y203{bottom:257.466667pt;}
.y1e0{bottom:257.626667pt;}
.y13d{bottom:257.800000pt;}
.yf9{bottom:259.066667pt;}
.y2f{bottom:261.946667pt;}
.y188{bottom:262.906667pt;}
.y21f{bottom:263.066667pt;}
.yeb{bottom:266.906667pt;}
.y16d{bottom:270.586667pt;}
.y1b3{bottom:270.906667pt;}
.y79{bottom:272.986667pt;}
.y202{bottom:273.306667pt;}
.y1df{bottom:273.466667pt;}
.y13c{bottom:274.280000pt;}
.yf8{bottom:274.906667pt;}
.y2e{bottom:277.786667pt;}
.y187{bottom:278.746667pt;}
.y21e{bottom:278.906667pt;}
.ycd{bottom:280.520000pt;}
.y16c{bottom:286.426667pt;}
.y1b2{bottom:286.746667pt;}
.y8a{bottom:288.826667pt;}
.y78{bottom:288.986667pt;}
.y1de{bottom:289.306667pt;}
.yea{bottom:290.426667pt;}
.yf7{bottom:290.746667pt;}
.y13b{bottom:290.760000pt;}
.y2d{bottom:293.626667pt;}
.y186{bottom:294.586667pt;}
.y21d{bottom:294.746667pt;}
.y16b{bottom:302.266667pt;}
.y1b1{bottom:302.586667pt;}
.y89{bottom:304.666667pt;}
.y77{bottom:304.826667pt;}
.y201{bottom:304.986667pt;}
.y1dd{bottom:305.146667pt;}
.yd0{bottom:305.640000pt;}
.y13a{bottom:307.400000pt;}
.y2c{bottom:309.626667pt;}
.y185{bottom:310.426667pt;}
.y21c{bottom:310.586667pt;}
.ye9{bottom:314.266667pt;}
.y16a{bottom:318.266667pt;}
.y1b0{bottom:318.426667pt;}
.y76{bottom:320.666667pt;}
.y1dc{bottom:320.986667pt;}
.y139{bottom:323.880000pt;}
.y2b{bottom:325.466667pt;}
.y184{bottom:326.266667pt;}
.y21b{bottom:326.426667pt;}
.y88{bottom:328.186667pt;}
.y169{bottom:334.106667pt;}
.y1af{bottom:334.266667pt;}
.ye8{bottom:336.346667pt;}
.y75{bottom:336.506667pt;}
.y200{bottom:336.826667pt;}
.y1db{bottom:336.986667pt;}
.y138{bottom:340.360000pt;}
.y2a{bottom:341.306667pt;}
.y183{bottom:342.266667pt;}
.y168{bottom:349.946667pt;}
.y1ae{bottom:350.266667pt;}
.y87{bottom:352.026667pt;}
.y74{bottom:352.346667pt;}
.y1ff{bottom:352.666667pt;}
.y1da{bottom:352.826667pt;}
.y137{bottom:357.000000pt;}
.y29{bottom:357.146667pt;}
.y182{bottom:358.106667pt;}
.y21a{bottom:358.266667pt;}
.ycc{bottom:358.426667pt;}
.y167{bottom:365.786667pt;}
.y1ad{bottom:366.106667pt;}
.y86{bottom:367.866667pt;}
.y73{bottom:368.186667pt;}
.y1fe{bottom:368.506667pt;}
.y1d9{bottom:368.666667pt;}
.y28{bottom:372.986667pt;}
.y135{bottom:373.480000pt;}
.y181{bottom:373.946667pt;}
.y219{bottom:374.106667pt;}
.y166{bottom:381.626667pt;}
.y1ac{bottom:381.946667pt;}
.ybf{bottom:382.586667pt;}
.y72{bottom:384.186667pt;}
.y1fd{bottom:384.346667pt;}
.y1d8{bottom:384.506667pt;}
.y27{bottom:388.826667pt;}
.y180{bottom:389.786667pt;}
.y218{bottom:389.946667pt;}
.y133{bottom:389.960000pt;}
.y85{bottom:392.226667pt;}
.y165{bottom:397.506667pt;}
.y1ab{bottom:397.826667pt;}
.ybe{bottom:398.466667pt;}
.ycb{bottom:398.786667pt;}
.y71{bottom:400.066667pt;}
.y1fc{bottom:400.226667pt;}
.y1d7{bottom:400.386667pt;}
.y26{bottom:404.866667pt;}
.y17f{bottom:405.666667pt;}
.y217{bottom:405.826667pt;}
.y132{bottom:406.626667pt;}
.y84{bottom:408.066667pt;}
.y1aa{bottom:413.666667pt;}
.ybd{bottom:414.306667pt;}
.yca{bottom:414.626667pt;}
.y1d6{bottom:416.226667pt;}
.y25{bottom:420.706667pt;}
.y164{bottom:421.506667pt;}
.y216{bottom:421.666667pt;}
.y130{bottom:423.106667pt;}
.y70{bottom:423.586667pt;}
.y83{bottom:423.906667pt;}
.y1a9{bottom:429.506667pt;}
.yc9{bottom:430.466667pt;}
.y1fb{bottom:432.066667pt;}
.y1d5{bottom:432.226667pt;}
.y24{bottom:436.546667pt;}
.y163{bottom:437.346667pt;}
.y17e{bottom:437.506667pt;}
.ybc{bottom:437.826667pt;}
.y12d{bottom:439.586667pt;}
.y1a8{bottom:445.506667pt;}
.yc8{bottom:446.306667pt;}
.y1fa{bottom:447.906667pt;}
.y1d4{bottom:448.066667pt;}
.y6f{bottom:452.226667pt;}
.y23{bottom:452.386667pt;}
.y162{bottom:453.186667pt;}
.y17d{bottom:453.346667pt;}
.y215{bottom:453.506667pt;}
.y1a7{bottom:461.346667pt;}
.ybb{bottom:461.986667pt;}
.yc7{bottom:462.146667pt;}
.y1f9{bottom:463.746667pt;}
.y1d3{bottom:463.906667pt;}
.y22{bottom:468.226667pt;}
.y161{bottom:469.026667pt;}
.y17c{bottom:469.186667pt;}
.y214{bottom:469.346667pt;}
.y6e{bottom:472.706667pt;}
.y1a6{bottom:477.186667pt;}
.yba{bottom:477.986667pt;}
.y1f8{bottom:479.586667pt;}
.y1d2{bottom:479.746667pt;}
.y12c{bottom:484.706667pt;}
.y17b{bottom:485.026667pt;}
.y213{bottom:485.186667pt;}
.y160{bottom:492.546667pt;}
.y1a5{bottom:493.026667pt;}
.yb9{bottom:493.826667pt;}
.yc6{bottom:493.986667pt;}
.y1d1{bottom:495.586667pt;}
.y21{bottom:498.466667pt;}
.y17a{bottom:500.866667pt;}
.y212{bottom:501.026667pt;}
.y123{bottom:508.866667pt;}
.yb8{bottom:509.666667pt;}
.yc5{bottom:509.826667pt;}
.y1f7{bottom:511.426667pt;}
.y1d0{bottom:511.586667pt;}
.y15f{bottom:516.866667pt;}
.y1e{bottom:521.986667pt;}
.y122{bottom:524.706667pt;}
.y1a4{bottom:524.866667pt;}
.yb7{bottom:525.506667pt;}
.yc4{bottom:525.666667pt;}
.y1f6{bottom:527.266667pt;}
.y1cf{bottom:527.426667pt;}
.y12b{bottom:532.706667pt;}
.y211{bottom:532.866667pt;}
.y121{bottom:540.706667pt;}
.yb6{bottom:541.346667pt;}
.yc3{bottom:541.506667pt;}
.y1f5{bottom:543.106667pt;}
.y1ce{bottom:543.266667pt;}
.y15e{bottom:548.546667pt;}
.y12a{bottom:548.706667pt;}
.y120{bottom:556.546667pt;}
.yb5{bottom:557.346667pt;}
.y1f4{bottom:558.946667pt;}
.y1cd{bottom:559.106667pt;}
.y15d{bottom:564.386667pt;}
.y129{bottom:564.546667pt;}
.y13{bottom:567.426667pt;}
.y11f{bottom:572.386667pt;}
.yb4{bottom:573.186667pt;}
.yc2{bottom:573.346667pt;}
.y1f3{bottom:574.786667pt;}
.y1cc{bottom:574.946667pt;}
.y15c{bottom:580.226667pt;}
.y128{bottom:580.386667pt;}
.y11e{bottom:588.226667pt;}
.yc1{bottom:589.186667pt;}
.y1cb{bottom:590.786667pt;}
.y15b{bottom:596.066667pt;}
.y127{bottom:596.226667pt;}
.yb3{bottom:596.706667pt;}
.y11d{bottom:604.093333pt;}
.yc0{bottom:605.053333pt;}
.y1f2{bottom:606.653333pt;}
.y1ca{bottom:606.813333pt;}
.y210{bottom:611.773333pt;}
.y126{bottom:612.093333pt;}
.y11c{bottom:620.093333pt;}
.yb2{bottom:620.893333pt;}
.y1c9{bottom:622.653333pt;}
.y22a{bottom:627.773333pt;}
.y15a{bottom:627.933333pt;}
.y125{bottom:628.093333pt;}
.y1f1{bottom:631.773333pt;}
.y1a3{bottom:635.933333pt;}
.yb1{bottom:636.733333pt;}
.y1c8{bottom:638.493333pt;}
.y11b{bottom:643.613333pt;}
.y159{bottom:643.773333pt;}
.y124{bottom:643.933333pt;}
.y1a2{bottom:651.773333pt;}
.yb0{bottom:652.573333pt;}
.y1c7{bottom:654.333333pt;}
.y1f0{bottom:659.293333pt;}
.y158{bottom:659.613333pt;}
.y20f{bottom:659.773333pt;}
.y1a1{bottom:667.613333pt;}
.y11a{bottom:667.773333pt;}
.y1c6{bottom:670.173333pt;}
.y157{bottom:675.453333pt;}
.y20e{bottom:675.613333pt;}
.yaf{bottom:676.573333pt;}
.y1ef{bottom:683.133333pt;}
.y1a0{bottom:683.453333pt;}
.y1c5{bottom:686.013333pt;}
.y119{bottom:687.293333pt;}
.y156{bottom:691.453333pt;}
.yae{bottom:696.093333pt;}
.y19f{bottom:699.453333pt;}
.y1c4{bottom:702.013333pt;}
.y118{bottom:703.293333pt;}
.y20d{bottom:707.133333pt;}
.y155{bottom:707.293333pt;}
.y1ee{bottom:707.453333pt;}
.yad{bottom:712.093333pt;}
.y19e{bottom:715.293333pt;}
.y1c3{bottom:717.853333pt;}
.y5c{bottom:719.133333pt;}
.y117{bottom:719.293333pt;}
.y154{bottom:723.133333pt;}
.y1ed{bottom:723.293333pt;}
.yac{bottom:728.093333pt;}
.y5d{bottom:730.493333pt;}
.y19d{bottom:731.133333pt;}
.y1c2{bottom:733.693333pt;}
.y116{bottom:735.293333pt;}
.y153{bottom:738.973333pt;}
.y1ec{bottom:739.133333pt;}
.y12{bottom:740.413333pt;}
.y5a{bottom:740.893333pt;}
.y6d{bottom:743.773333pt;}
.yab{bottom:744.093333pt;}
.y19c{bottom:746.973333pt;}
.y1c1{bottom:749.533333pt;}
.y115{bottom:751.293333pt;}
.y5b{bottom:752.253333pt;}
.y152{bottom:754.813333pt;}
.y69{bottom:754.973333pt;}
.y6c{bottom:757.053333pt;}
.yaa{bottom:760.093333pt;}
.y11{bottom:761.533333pt;}
.y59{bottom:762.653333pt;}
.y19b{bottom:762.813333pt;}
.y1c0{bottom:765.373333pt;}
.y114{bottom:767.293333pt;}
.y151{bottom:770.653333pt;}
.y68{bottom:770.813333pt;}
.ya9{bottom:776.093333pt;}
.y10{bottom:777.533333pt;}
.y58{bottom:778.653333pt;}
.y113{bottom:783.293333pt;}
.y67{bottom:786.653333pt;}
.y1bf{bottom:790.653333pt;}
.ya8{bottom:792.093333pt;}
.y19a{bottom:794.653333pt;}
.y112{bottom:799.293333pt;}
.y57{bottom:802.173333pt;}
.y20c{bottom:802.333333pt;}
.y150{bottom:802.493333pt;}
.y66{bottom:802.653333pt;}
.yf{bottom:803.933333pt;}
.ya6{bottom:808.093333pt;}
.y199{bottom:810.533333pt;}
.y111{bottom:815.333333pt;}
.y14f{bottom:818.373333pt;}
.y65{bottom:818.533333pt;}
.ya5{bottom:824.133333pt;}
.ye{bottom:825.253333pt;}
.y56{bottom:826.373333pt;}
.ye7{bottom:830.053333pt;}
.y110{bottom:831.333333pt;}
.y14e{bottom:834.213333pt;}
.y64{bottom:834.373333pt;}
.ya4{bottom:840.133333pt;}
.y55{bottom:842.213333pt;}
.yd{bottom:846.373333pt;}
.y10f{bottom:847.333333pt;}
.ye6{bottom:849.733333pt;}
.y14d{bottom:850.053333pt;}
.y63{bottom:850.213333pt;}
.ya3{bottom:856.133333pt;}
.y54{bottom:858.053333pt;}
.yc{bottom:862.053333pt;}
.y10e{bottom:863.333333pt;}
.y62{bottom:866.053333pt;}
.ya2{bottom:872.133333pt;}
.y53{bottom:874.053333pt;}
.ye5{bottom:874.693333pt;}
.y10d{bottom:879.333333pt;}
.y14c{bottom:881.893333pt;}
.y61{bottom:882.053333pt;}
.yb{bottom:885.893333pt;}
.ya1{bottom:888.133333pt;}
.y52{bottom:889.893333pt;}
.y10c{bottom:895.333333pt;}
.y14b{bottom:897.733333pt;}
.y60{bottom:897.893333pt;}
.ye4{bottom:899.653333pt;}
.y9f{bottom:904.133333pt;}
.y51{bottom:905.733333pt;}
.ya{bottom:910.693333pt;}
.y10b{bottom:911.333333pt;}
.y14a{bottom:913.573333pt;}
.y5f{bottom:913.733333pt;}
.y9e{bottom:920.133333pt;}
.y50{bottom:921.573333pt;}
.ye3{bottom:924.613333pt;}
.y10a{bottom:927.333333pt;}
.y229{bottom:929.253333pt;}
.y149{bottom:929.413333pt;}
.y5e{bottom:929.573333pt;}
.y9d{bottom:936.133333pt;}
.y198{bottom:937.413333pt;}
.y9{bottom:939.493333pt;}
.y109{bottom:943.333333pt;}
.y148{bottom:945.253333pt;}
.y4f{bottom:945.413333pt;}
.ye2{bottom:951.493333pt;}
.y97{bottom:952.133333pt;}
.y197{bottom:953.253333pt;}
.y107{bottom:959.333333pt;}
.y4e{bottom:961.253333pt;}
.y8{bottom:966.533333pt;}
.y9a{bottom:968.133333pt;}
.y179{bottom:968.933333pt;}
.y196{bottom:969.253333pt;}
.ye1{bottom:976.613333pt;}
.y4d{bottom:977.253333pt;}
.y147{bottom:984.773333pt;}
.y195{bottom:985.093333pt;}
.y6{bottom:989.573333pt;}
.y228{bottom:992.773333pt;}
.y4c{bottom:993.093333pt;}
.y194{bottom:1000.933333pt;}
.ye0{bottom:1001.573333pt;}
.y106{bottom:1003.333333pt;}
.y5{bottom:1006.693333pt;}
.y96{bottom:1007.813333pt;}
.y4b{bottom:1008.933333pt;}
.y105{bottom:1021.120000pt;}
.y4{bottom:1023.040000pt;}
.y4a{bottom:1024.800000pt;}
.ydf{bottom:1026.560000pt;}
.y3{bottom:1036.640000pt;}
.y49{bottom:1040.640000pt;}
.y2{bottom:1050.240000pt;}
.y47{bottom:1052.320000pt;}
.y46{bottom:1057.120000pt;}
.y45{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h14{height:9.211875pt;}
.h13{height:13.546875pt;}
.h1d{height:15.186667pt;}
.h1f{height:15.346667pt;}
.h21{height:15.360000pt;}
.h20{height:15.380000pt;}
.h2f{height:15.826667pt;}
.h31{height:15.872000pt;}
.h30{height:16.018667pt;}
.h17{height:16.125000pt;}
.h26{height:24.306667pt;}
.h2a{height:24.318667pt;}
.h29{height:24.320000pt;}
.h2b{height:24.346667pt;}
.h28{height:24.352000pt;}
.h25{height:24.466667pt;}
.h2c{height:26.226667pt;}
.h1c{height:27.986667pt;}
.h2d{height:30.706667pt;}
.hb{height:31.406250pt;}
.h2e{height:31.826667pt;}
.h16{height:33.515625pt;}
.h11{height:33.867188pt;}
.h12{height:36.305625pt;}
.h24{height:39.346667pt;}
.h6{height:42.084375pt;}
.h1b{height:43.986667pt;}
.h27{height:44.073883pt;}
.he{height:44.786667pt;}
.h22{height:47.085938pt;}
.h7{height:47.109375pt;}
.hc{height:48.375000pt;}
.h32{height:49.336436pt;}
.h1a{height:52.134375pt;}
.ha{height:53.370000pt;}
.h1e{height:54.598989pt;}
.h18{height:57.286250pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.hf{height:59.340000pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.h23{height:64.466667pt;}
.h10{height:64.500000pt;}
.h19{height:71.429375pt;}
.h9{height:75.465000pt;}
.h15{height:76.846250pt;}
.hd{height:167.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:47.186667pt;}
.w12{width:47.200000pt;}
.wc{width:48.790667pt;}
.w7{width:50.240000pt;}
.w17{width:52.466667pt;}
.w11{width:52.498667pt;}
.w3{width:54.546667pt;}
.wa{width:54.866667pt;}
.wb{width:54.898667pt;}
.w8{width:54.912000pt;}
.w14{width:57.746667pt;}
.w16{width:57.778667pt;}
.w13{width:57.792000pt;}
.w1e{width:58.706667pt;}
.wd{width:59.346667pt;}
.w15{width:63.186667pt;}
.w9{width:63.506667pt;}
.w4{width:85.938667pt;}
.w1d{width:107.186667pt;}
.w19{width:107.190667pt;}
.w1a{width:107.200000pt;}
.w1c{width:107.218667pt;}
.w1b{width:107.232000pt;}
.w22{width:107.378667pt;}
.w1f{width:112.498667pt;}
.w20{width:113.312000pt;}
.w21{width:113.426667pt;}
.we{width:148.013333pt;}
.w10{width:158.733333pt;}
.w5{width:169.946667pt;}
.w6{width:174.733333pt;}
.wf{width:180.026667pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x43{left:9.306667pt;}
.x3e{left:13.586667pt;}
.x24{left:18.866667pt;}
.x51{left:19.826667pt;}
.x4c{left:23.186667pt;}
.x31{left:24.950667pt;}
.x44{left:26.226667pt;}
.x50{left:29.266667pt;}
.x47{left:30.546667pt;}
.x4b{left:32.306667pt;}
.x4f{left:35.706667pt;}
.x4e{left:36.666667pt;}
.x4a{left:37.626667pt;}
.x45{left:39.386667pt;}
.x4d{left:40.666667pt;}
.x48{left:41.946667pt;}
.x25{left:42.866667pt;}
.x40{left:44.640000pt;}
.x46{left:46.080000pt;}
.x5{left:48.000000pt;}
.xf{left:49.280000pt;}
.x49{left:51.706667pt;}
.x8{left:64.801333pt;}
.x53{left:66.240000pt;}
.x57{left:71.200000pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.x54{left:95.232000pt;}
.x28{left:98.121333pt;}
.x36{left:127.561333pt;}
.x3d{left:142.920000pt;}
.x29{left:147.560000pt;}
.x1c{left:153.480000pt;}
.x26{left:170.586667pt;}
.x13{left:183.706667pt;}
.xd{left:200.346667pt;}
.x3f{left:202.280000pt;}
.x3c{left:205.146667pt;}
.x2a{left:207.560000pt;}
.x1d{left:208.680000pt;}
.x1b{left:209.946667pt;}
.x1a{left:211.546667pt;}
.x35{left:220.826667pt;}
.x27{left:224.506667pt;}
.x1{left:231.066667pt;}
.x37{left:235.426667pt;}
.x3b{left:245.506667pt;}
.x32{left:249.826667pt;}
.x2d{left:260.706667pt;}
.x52{left:273.506667pt;}
.x2{left:284.866667pt;}
.x1e{left:295.266667pt;}
.x4{left:297.826667pt;}
.x34{left:307.266667pt;}
.x19{left:308.546667pt;}
.x3{left:313.826667pt;}
.x11{left:315.106667pt;}
.x12{left:323.586667pt;}
.x17{left:339.746667pt;}
.x38{left:343.266667pt;}
.x20{left:346.146667pt;}
.x15{left:351.426667pt;}
.x2b{left:356.386667pt;}
.xe{left:396.893333pt;}
.x21{left:401.706667pt;}
.x2e{left:414.826667pt;}
.xc{left:420.893333pt;}
.x41{left:429.546667pt;}
.x55{left:439.133333pt;}
.x58{left:444.093333pt;}
.x39{left:451.306667pt;}
.xb{left:457.533333pt;}
.x1f{left:465.866667pt;}
.x56{left:468.093333pt;}
.x2f{left:473.226667pt;}
.x22{left:521.386667pt;}
.x2c{left:537.066667pt;}
.x42{left:543.626667pt;}
.x3a{left:559.173333pt;}
.x23{left:576.933333pt;}
.x30{left:595.493333pt;}
.x33{left:641.413333pt;}
.x14{left:648.933333pt;}
.x18{left:676.933333pt;}
.x16{left:679.333333pt;}
.x10{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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