
    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_da8f955881b80a7a12953c44.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_95d9d826eddae4e5783af395.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d1283f5b7eb49374a6e83881.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_eb38e9690417b6acc11be730.woff')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_846a39dc492b582f949bb2a4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_8b9bb621f3bb846ac051fc6e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_82a89a7ffcbeab44f958bd3e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090820;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_08438cb0ea7eb1285ad70fc4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090820;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_97c14eefb79fa53e387669f0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_e5a3d83bb7e0fbc20e55aee3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9c42ce46e97ad09581fe51c0.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v3{vertical-align:-23.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:36.000000px;}
.lsb{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.954000px;}
.ls3{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.498000px;}
.ls7{letter-spacing:-0.486600px;}
.ls19{letter-spacing:-0.423600px;}
.ls15{letter-spacing:-0.313800px;}
.lsf{letter-spacing:-0.057600px;}
.ls18{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.354000px;}
.ls14{letter-spacing:0.371400px;}
.lsa{letter-spacing:0.466560px;}
.ls0{letter-spacing:0.498240px;}
.lsc{letter-spacing:0.507000px;}
.lse{letter-spacing:0.610560px;}
.ls16{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.720000px;}
.ls11{letter-spacing:9.734400px;}
.ls10{letter-spacing:16.741440px;}
.ls1a{letter-spacing:46.546560px;}
.ls9{letter-spacing:46.558560px;}
.ls12{letter-spacing:46.690560px;}
.ls6{letter-spacing:82.690560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-15.627000px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.099840px;}
.ws4{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.613000px;}
.ws5{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.305600px;}
.wsb{word-spacing:-13.248000px;}
.ws2{word-spacing:-13.182000px;}
.wsf{word-spacing:-9.799200px;}
.ws8{word-spacing:-9.187200px;}
.wsa{word-spacing:-0.328320px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:0.996840px;}
.ws7{word-spacing:3.683520px;}
.wsc{word-spacing:4.031760px;}
.wse{word-spacing:5.076120px;}
.ws13{word-spacing:175.056000px;}
.ws12{word-spacing:657.137280px;}
._1d{margin-left:-9.118560px;}
._16{margin-left:-8.118240px;}
._1a{margin-left:-6.229440px;}
._15{margin-left:-4.345920px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.741600px;}
._9{width:5.467680px;}
._10{width:6.602400px;}
._e{width:7.741440px;}
._d{width:9.253440px;}
._f{width:10.281600px;}
._12{width:11.301120px;}
._11{width:12.467520px;}
._14{width:13.798080px;}
._1b{width:15.301440px;}
._13{width:16.422720px;}
._c{width:17.491200px;}
._b{width:19.128960px;}
._a{width:20.260800px;}
._17{width:23.708160px;}
._18{width:24.978240px;}
._19{width:26.715840px;}
._1c{width:58.166400px;}
._1e{width:205.716000px;}
._5{width:393.960000px;}
._4{width:1101.360000px;}
._7{width:1303.056000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc9{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:54.864000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y33{bottom:3.240000px;}
.yf9{bottom:5.400000px;}
.yfb{bottom:5.430000px;}
.yfe{bottom:5.760000px;}
.yf7{bottom:6.120000px;}
.y14e{bottom:6.480000px;}
.y14d{bottom:6.840000px;}
.y154{bottom:7.200000px;}
.y16e{bottom:11.520000px;}
.y171{bottom:11.880000px;}
.y177{bottom:11.910000px;}
.yf6{bottom:12.960000px;}
.y13c{bottom:12.990000px;}
.y106{bottom:13.320000px;}
.y179{bottom:13.680000px;}
.y17a{bottom:15.840000px;}
.y173{bottom:18.360000px;}
.y32{bottom:20.514000px;}
.y4f{bottom:20.520000px;}
.y14b{bottom:24.480000px;}
.yf4{bottom:24.840000px;}
.y174{bottom:25.200000px;}
.y4e{bottom:37.440000px;}
.ye{bottom:43.560000px;}
.y31{bottom:46.794000px;}
.y4d{bottom:54.720000px;}
.y134{bottom:60.660000px;}
.y30{bottom:64.119000px;}
.yc{bottom:68.400000px;}
.y4c{bottom:72.000000px;}
.y13a{bottom:80.070000px;}
.y2f{bottom:81.399000px;}
.y137{bottom:85.290000px;}
.y4b{bottom:89.325000px;}
.ya{bottom:94.716000px;}
.y4a{bottom:106.605000px;}
.y2e{bottom:107.679000px;}
.y136{bottom:110.595000px;}
.y49{bottom:123.885000px;}
.y2d{bottom:124.959000px;}
.y164{bottom:131.436000px;}
.y11d{bottom:131.796000px;}
.yf1{bottom:132.156000px;}
.y131{bottom:133.596000px;}
.y1d4{bottom:135.036000px;}
.y20{bottom:135.756000px;}
.yaa{bottom:140.436000px;}
.y48{bottom:141.165000px;}
.y18f{bottom:141.516000px;}
.y135{bottom:141.870000px;}
.y2c{bottom:142.239000px;}
.y133{bottom:147.270000px;}
.y1f3{bottom:147.996000px;}
.ycf{bottom:148.356000px;}
.y139{bottom:149.190000px;}
.y163{bottom:151.230000px;}
.y11c{bottom:151.590000px;}
.yf0{bottom:151.950000px;}
.y1d3{bottom:152.310000px;}
.y1b0{bottom:153.750000px;}
.y6a{bottom:156.270000px;}
.ya9{bottom:156.990000px;}
.y47{bottom:158.445000px;}
.y2b{bottom:159.519000px;}
.y18e{bottom:161.310000px;}
.y130{bottom:168.510000px;}
.y1d2{bottom:169.590000px;}
.y162{bottom:171.030000px;}
.yef{bottom:172.110000px;}
.y1af{bottom:173.550000px;}
.y46{bottom:175.725000px;}
.y69{bottom:176.070000px;}
.y1f2{bottom:179.670000px;}
.yce{bottom:180.390000px;}
.y11b{bottom:183.270000px;}
.y12f{bottom:185.070000px;}
.y138{bottom:185.760000px;}
.y2a{bottom:185.799000px;}
.y1d1{bottom:186.870000px;}
.y161{bottom:190.830000px;}
.yee{bottom:191.910000px;}
.y18d{bottom:192.990000px;}
.y45{bottom:193.005000px;}
.y1ae{bottom:193.350000px;}
.y68{bottom:196.230000px;}
.y1f1{bottom:199.515000px;}
.y29{bottom:203.109000px;}
.y11a{bottom:203.475000px;}
.y1d0{bottom:203.835000px;}
.y44{bottom:210.285000px;}
.y160{bottom:210.675000px;}
.yed{bottom:211.755000px;}
.ycd{bottom:212.115000px;}
.y18c{bottom:212.835000px;}
.y1ad{bottom:213.195000px;}
.y67{bottom:216.075000px;}
.y1f0{bottom:219.315000px;}
.y28{bottom:220.029000px;}
.y1cf{bottom:221.115000px;}
.y119{bottom:223.275000px;}
.y43{bottom:227.595000px;}
.yec{bottom:231.555000px;}
.ycc{bottom:231.915000px;}
.y18b{bottom:232.635000px;}
.y1ac{bottom:232.995000px;}
.y66{bottom:235.875000px;}
.y27{bottom:237.309000px;}
.y1ce{bottom:238.395000px;}
.y15f{bottom:242.715000px;}
.y42{bottom:244.515000px;}
.y96{bottom:246.675000px;}
.y13b{bottom:247.935000px;}
.y1ef{bottom:251.355000px;}
.y18a{bottom:252.435000px;}
.y26{bottom:254.589000px;}
.y118{bottom:254.955000px;}
.y65{bottom:255.675000px;}
.y41{bottom:261.795000px;}
.y15e{bottom:262.515000px;}
.yeb{bottom:263.235000px;}
.ycb{bottom:263.955000px;}
.y1ab{bottom:264.675000px;}
.y95{bottom:268.275000px;}
.y1ee{bottom:271.155000px;}
.y1cd{bottom:272.955000px;}
.y117{bottom:274.755000px;}
.y64{bottom:275.475000px;}
.y40{bottom:279.075000px;}
.y25{bottom:280.869000px;}
.y15d{bottom:282.315000px;}
.yea{bottom:283.035000px;}
.y189{bottom:284.475000px;}
.y1aa{bottom:284.835000px;}
.y94{bottom:285.555000px;}
.y1cc{bottom:290.235000px;}
.y116{bottom:294.555000px;}
.y63{bottom:295.275000px;}
.yca{bottom:295.635000px;}
.y3f{bottom:296.355000px;}
.y24{bottom:298.149000px;}
.y15c{bottom:302.115000px;}
.y93{bottom:302.835000px;}
.y188{bottom:304.275000px;}
.y1a9{bottom:304.635000px;}
.y1cb{bottom:307.515000px;}
.y3e{bottom:313.635000px;}
.y62{bottom:315.075000px;}
.y23{bottom:315.474000px;}
.y92{bottom:320.115000px;}
.y15b{bottom:321.915000px;}
.y1ed{bottom:322.635000px;}
.ye9{bottom:322.995000px;}
.y187{bottom:324.105000px;}
.y1a8{bottom:324.465000px;}
.y1ca{bottom:324.825000px;}
.y115{bottom:326.625000px;}
.y3d{bottom:330.915000px;}
.y22{bottom:332.754000px;}
.yc9{bottom:333.465000px;}
.y61{bottom:334.905000px;}
.y91{bottom:337.425000px;}
.y1c9{bottom:342.105000px;}
.y186{bottom:343.905000px;}
.y1a7{bottom:344.265000px;}
.y114{bottom:346.425000px;}
.y3c{bottom:348.240000px;}
.y21{bottom:350.034000px;}
.y60{bottom:354.705000px;}
.y1c8{bottom:359.385000px;}
.y15a{bottom:359.745000px;}
.y1a6{bottom:364.065000px;}
.y3b{bottom:365.520000px;}
.y113{bottom:366.225000px;}
.yc8{bottom:371.625000px;}
.y90{bottom:371.985000px;}
.y5f{bottom:374.505000px;}
.y185{bottom:375.945000px;}
.y1c7{bottom:376.665000px;}
.y3a{bottom:382.800000px;}
.y1a5{bottom:383.865000px;}
.y112{bottom:386.025000px;}
.y1c6{bottom:393.585000px;}
.ye8{bottom:394.305000px;}
.y5e{bottom:394.665000px;}
.y184{bottom:395.745000px;}
.y8f{bottom:397.905000px;}
.y39{bottom:400.080000px;}
.y1ec{bottom:406.185000px;}
.yc7{bottom:409.785000px;}
.y1c5{bottom:410.865000px;}
.y159{bottom:412.665000px;}
.y5d{bottom:414.465000px;}
.y183{bottom:415.545000px;}
.y1a4{bottom:415.905000px;}
.y111{bottom:417.705000px;}
.y8e{bottom:424.185000px;}
.y1eb{bottom:425.985000px;}
.ye7{bottom:426.345000px;}
.y1c4{bottom:428.145000px;}
.y5c{bottom:434.265000px;}
.y182{bottom:435.345000px;}
.y1a3{bottom:435.705000px;}
.y158{bottom:437.505000px;}
.y110{bottom:437.865000px;}
.y1c3{bottom:445.425000px;}
.y8d{bottom:446.145000px;}
.yc6{bottom:447.945000px;}
.y5b{bottom:454.110000px;}
.y181{bottom:455.190000px;}
.y1a2{bottom:455.550000px;}
.y1ea{bottom:458.070000px;}
.y157{bottom:462.750000px;}
.y8c{bottom:463.470000px;}
.ye6{bottom:465.990000px;}
.y5a{bottom:473.910000px;}
.y180{bottom:474.990000px;}
.y1a1{bottom:475.350000px;}
.y10f{bottom:475.710000px;}
.y1e9{bottom:477.870000px;}
.y1c2{bottom:480.030000px;}
.y8b{bottom:480.750000px;}
.y12e{bottom:482.190000px;}
.yc5{bottom:483.270000px;}
.y156{bottom:487.590000px;}
.yc4{bottom:490.830000px;}
.y59{bottom:493.710000px;}
.y1a0{bottom:495.150000px;}
.y1c1{bottom:497.310000px;}
.y8a{bottom:497.670000px;}
.ye5{bottom:503.790000px;}
.y17f{bottom:505.590000px;}
.y10e{bottom:507.390000px;}
.y155{bottom:512.790000px;}
.y58{bottom:513.510000px;}
.ya8{bottom:513.870000px;}
.y1f{bottom:514.230000px;}
.y1c0{bottom:514.590000px;}
.y89{bottom:514.950000px;}
.y10d{bottom:522.150000px;}
.y17e{bottom:524.310000px;}
.yc3{bottom:526.110000px;}
.y19f{bottom:526.830000px;}
.y1e8{bottom:529.350000px;}
.y1bf{bottom:531.870000px;}
.y88{bottom:532.230000px;}
.y57{bottom:533.310000px;}
.y12d{bottom:533.670000px;}
.ya7{bottom:534.030000px;}
.ye4{bottom:534.390000px;}
.y153{bottom:537.990000px;}
.y1e{bottom:540.510000px;}
.y10c{bottom:545.550000px;}
.yc2{bottom:545.910000px;}
.y19e{bottom:546.630000px;}
.y1e7{bottom:549.150000px;}
.y87{bottom:549.510000px;}
.y56{bottom:553.110000px;}
.ya6{bottom:553.830000px;}
.y17d{bottom:557.070000px;}
.y1be{bottom:563.550000px;}
.y152{bottom:563.910000px;}
.yc1{bottom:565.710000px;}
.y1d{bottom:566.790000px;}
.y10b{bottom:568.590000px;}
.y55{bottom:572.910000px;}
.ya5{bottom:573.630000px;}
.ye3{bottom:578.340000px;}
.y1e6{bottom:581.220000px;}
.y1bd{bottom:583.380000px;}
.y17c{bottom:583.740000px;}
.y86{bottom:584.100000px;}
.y12c{bottom:585.540000px;}
.y19d{bottom:586.620000px;}
.y151{bottom:586.980000px;}
.y10a{bottom:591.300000px;}
.y1c{bottom:593.100000px;}
.ya4{bottom:593.460000px;}
.y1e5{bottom:601.020000px;}
.y85{bottom:601.380000px;}
.yc0{bottom:602.460000px;}
.y1bc{bottom:603.180000px;}
.y12b{bottom:605.340000px;}
.y19c{bottom:606.420000px;}
.y150{bottom:612.180000px;}
.y54{bottom:612.900000px;}
.ya3{bottom:613.260000px;}
.y109{bottom:613.620000px;}
.ye2{bottom:615.420000px;}
.y84{bottom:618.660000px;}
.y1b{bottom:619.380000px;}
.y1e4{bottom:620.820000px;}
.ye1{bottom:622.980000px;}
.y17b{bottom:623.700000px;}
.y12a{bottom:625.140000px;}
.y53{bottom:632.700000px;}
.ya2{bottom:633.060000px;}
.ybf{bottom:634.500000px;}
.y83{bottom:635.940000px;}
.y1a{bottom:636.660000px;}
.y14f{bottom:637.020000px;}
.y19b{bottom:638.100000px;}
.y1e3{bottom:640.620000px;}
.y1bb{bottom:642.780000px;}
.y129{bottom:644.940000px;}
.y52{bottom:652.500000px;}
.ya1{bottom:652.860000px;}
.y19{bottom:653.220000px;}
.y19a{bottom:657.900000px;}
.ye0{bottom:658.620000px;}
.y108{bottom:660.060000px;}
.y82{bottom:662.220000px;}
.y178{bottom:663.660000px;}
.ybe{bottom:666.180000px;}
.ya0{bottom:672.660000px;}
.y1ba{bottom:674.820000px;}
.y18{bottom:676.620000px;}
.y128{bottom:676.980000px;}
.y199{bottom:677.700000px;}
.ydf{bottom:678.420000px;}
.y107{bottom:682.380000px;}
.ybd{bottom:685.980000px;}
.y51{bottom:687.420000px;}
.y81{bottom:691.380000px;}
.y9f{bottom:692.460000px;}
.y176{bottom:694.260000px;}
.y1b9{bottom:694.620000px;}
.y17{bottom:695.700000px;}
.y127{bottom:696.780000px;}
.y198{bottom:697.500000px;}
.yde{bottom:698.220000px;}
.y105{bottom:704.730000px;}
.ybc{bottom:705.810000px;}
.y9e{bottom:712.290000px;}
.y1b8{bottom:714.450000px;}
.y50{bottom:715.530000px;}
.y126{bottom:716.610000px;}
.y197{bottom:717.690000px;}
.ydd{bottom:718.050000px;}
.y80{bottom:720.570000px;}
.y175{bottom:720.930000px;}
.y16{bottom:723.090000px;}
.ybb{bottom:725.610000px;}
.y1e2{bottom:732.090000px;}
.y9d{bottom:732.450000px;}
.y1b7{bottom:734.250000px;}
.y125{bottom:736.410000px;}
.y14c{bottom:737.490000px;}
.y7f{bottom:737.850000px;}
.y38{bottom:740.370000px;}
.y104{bottom:743.250000px;}
.yba{bottom:745.770000px;}
.y172{bottom:747.570000px;}
.y196{bottom:749.370000px;}
.y15{bottom:750.810000px;}
.y9c{bottom:754.050000px;}
.y7e{bottom:755.130000px;}
.ydc{bottom:757.650000px;}
.y1e1{bottom:763.770000px;}
.y103{bottom:765.570000px;}
.y124{bottom:768.090000px;}
.y195{bottom:769.170000px;}
.y7d{bottom:772.410000px;}
.y1b6{bottom:773.850000px;}
.yb9{bottom:776.370000px;}
.ydb{bottom:777.450000px;}
.y14{bottom:778.530000px;}
.y1e0{bottom:783.570000px;}
.y170{bottom:787.530000px;}
.y123{bottom:788.250000px;}
.y9b{bottom:788.970000px;}
.y7c{bottom:789.690000px;}
.y14a{bottom:790.770000px;}
.y1b5{bottom:794.010000px;}
.y13{bottom:805.890000px;}
.y7b{bottom:806.970000px;}
.yb8{bottom:808.050000px;}
.y194{bottom:808.770000px;}
.yda{bottom:809.490000px;}
.y102{bottom:812.010000px;}
.y1b4{bottom:813.810000px;}
.y16f{bottom:814.170000px;}
.y1df{bottom:815.610000px;}
.y9a{bottom:817.770000px;}
.y149{bottom:822.810000px;}
.y7a{bottom:824.250000px;}
.y122{bottom:826.050000px;}
.y193{bottom:828.615000px;}
.y12{bottom:833.655000px;}
.y101{bottom:834.375000px;}
.y99{bottom:835.095000px;}
.y1de{bottom:835.455000px;}
.yb7{bottom:839.775000px;}
.y16d{bottom:840.855000px;}
.yd9{bottom:841.215000px;}
.y79{bottom:841.575000px;}
.y148{bottom:842.655000px;}
.y121{bottom:845.895000px;}
.y98{bottom:854.895000px;}
.y100{bottom:856.695000px;}
.y78{bottom:858.855000px;}
.yb6{bottom:859.935000px;}
.y192{bottom:860.655000px;}
.y11{bottom:861.375000px;}
.y147{bottom:862.455000px;}
.y120{bottom:865.695000px;}
.y1dd{bottom:867.135000px;}
.y16c{bottom:867.495000px;}
.y1b3{bottom:868.575000px;}
.yd8{bottom:872.895000px;}
.y97{bottom:874.695000px;}
.yff{bottom:879.015000px;}
.yb5{bottom:879.735000px;}
.y77{bottom:880.455000px;}
.y146{bottom:882.255000px;}
.y1dc{bottom:886.935000px;}
.y10{bottom:888.735000px;}
.y11f{bottom:898.095000px;}
.yb4{bottom:899.535000px;}
.y191{bottom:900.255000px;}
.yfd{bottom:901.695000px;}
.y16b{bottom:905.295000px;}
.yd7{bottom:908.175000px;}
.y145{bottom:913.935000px;}
.y76{bottom:915.375000px;}
.yd6{bottom:915.735000px;}
.yf{bottom:916.455000px;}
.y1db{bottom:918.975000px;}
.y190{bottom:920.055000px;}
.yb3{bottom:921.135000px;}
.y16a{bottom:922.575000px;}
.yfc{bottom:924.735000px;}
.y11e{bottom:926.535000px;}
.y132{bottom:927.000000px;}
.y1b2{bottom:931.935000px;}
.y144{bottom:933.735000px;}
.y1da{bottom:938.775000px;}
.y169{bottom:939.855000px;}
.y9{bottom:942.375000px;}
.y75{bottom:944.175000px;}
.yfa{bottom:947.055000px;}
.yd5{bottom:951.015000px;}
.y1b1{bottom:952.095000px;}
.yb2{bottom:953.205000px;}
.y143{bottom:953.925000px;}
.y8{bottom:959.685000px;}
.y74{bottom:964.005000px;}
.yf8{bottom:969.405000px;}
.y1d9{bottom:970.485000px;}
.y168{bottom:971.925000px;}
.yb1{bottom:973.005000px;}
.y7{bottom:973.725000px;}
.yd4{bottom:983.085000px;}
.y73{bottom:983.805000px;}
.y1d8{bottom:990.645000px;}
.yf3{bottom:991.725000px;}
.yb0{bottom:992.805000px;}
.y72{bottom:1003.605000px;}
.y142{bottom:1005.405000px;}
.y167{bottom:1011.525000px;}
.yaf{bottom:1012.605000px;}
.yd3{bottom:1014.765000px;}
.yf5{bottom:1015.125000px;}
.y1d7{bottom:1022.325000px;}
.y71{bottom:1023.405000px;}
.y141{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.y166{bottom:1031.325000px;}
.yae{bottom:1032.405000px;}
.y1d6{bottom:1042.125000px;}
.y70{bottom:1043.205000px;}
.y140{bottom:1045.005000px;}
.yd2{bottom:1046.445000px;}
.y165{bottom:1051.125000px;}
.y5{bottom:1052.205000px;}
.y6f{bottom:1063.005000px;}
.y13f{bottom:1064.805000px;}
.yf2{bottom:1070.925000px;}
.yad{bottom:1072.005000px;}
.y4{bottom:1072.725000px;}
.y1d5{bottom:1073.805000px;}
.yd1{bottom:1078.530000px;}
.y6e{bottom:1082.850000px;}
.y13e{bottom:1084.650000px;}
.yac{bottom:1091.850000px;}
.y3{bottom:1094.010000px;}
.y6d{bottom:1103.010000px;}
.y13d{bottom:1104.810000px;}
.yd0{bottom:1110.210000px;}
.yab{bottom:1113.810000px;}
.y2{bottom:1114.530000px;}
.y6c{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y6b{bottom:1142.610000px;}
.y37{bottom:1166.370000px;}
.y36{bottom:1180.410000px;}
.y35{bottom:1201.290000px;}
.y34{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h26{height:19.440000px;}
.h14{height:21.600000px;}
.h15{height:21.636000px;}
.h16{height:22.320000px;}
.h23{height:22.356000px;}
.h13{height:22.680000px;}
.h22{height:24.120000px;}
.h21{height:24.156000px;}
.h20{height:24.480000px;}
.h25{height:24.516000px;}
.h24{height:25.200000px;}
.h27{height:25.560000px;}
.h28{height:25.596000px;}
.h29{height:25.920000px;}
.h2b{height:25.956000px;}
.h2c{height:29.880000px;}
.h1f{height:34.560000px;}
.h12{height:36.720000px;}
.h17{height:37.800000px;}
.h2d{height:38.880000px;}
.h2a{height:39.240000px;}
.hb{height:41.696016px;}
.h5{height:41.707969px;}
.h2{height:43.794844px;}
.he{height:44.031094px;}
.h2e{height:46.098281px;}
.h19{height:46.866094px;}
.h7{height:48.013594px;}
.h3{height:52.136719px;}
.h4{height:53.067656px;}
.h1a{height:54.426094px;}
.h1b{height:54.569320px;}
.h1e{height:59.760000px;}
.h11{height:60.120000px;}
.h1d{height:63.175781px;}
.h9{height:69.863203px;}
.hf{height:72.336094px;}
.ha{height:72.689766px;}
.h10{height:83.307656px;}
.h18{height:229.680000px;}
.h1c{height:278.640000px;}
.hc{height:373.065000px;}
.hd{height:414.105000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:92.196000px;}
.w11{width:95.076000px;}
.wb{width:95.796000px;}
.w12{width:137.592000px;}
.w9{width:188.715000px;}
.w10{width:233.385000px;}
.w15{width:249.225000px;}
.w14{width:301.065000px;}
.w8{width:304.710000px;}
.w7{width:339.270000px;}
.wd{width:339.480000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.we{width:389.520000px;}
.wf{width:423.900000px;}
.wc{width:494.490000px;}
.w13{width:658.005000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2c{left:4.680000px;}
.x9{left:8.640000px;}
.x2f{left:28.080000px;}
.x31{left:30.240000px;}
.x2e{left:33.840000px;}
.x2b{left:35.280000px;}
.x2d{left:38.160000px;}
.x29{left:40.320000px;}
.x30{left:42.120000px;}
.x44{left:43.605000px;}
.x42{left:45.390000px;}
.x43{left:48.990000px;}
.x28{left:50.040000px;}
.x41{left:57.270000px;}
.x3c{left:66.960000px;}
.x39{left:72.645000px;}
.x4b{left:91.110000px;}
.x49{left:92.190000px;}
.x4c{left:94.710000px;}
.x47{left:97.590000px;}
.x26{left:99.390000px;}
.x4d{left:100.475987px;}
.x4a{left:104.115000px;}
.x7{left:106.235987px;}
.xc{left:107.315987px;}
.x18{left:111.275987px;}
.xf{left:114.515987px;}
.x38{left:117.285000px;}
.x14{left:133.271987px;}
.xe{left:135.431987px;}
.x37{left:141.015000px;}
.x15{left:149.471987px;}
.xb{left:159.194987px;}
.x46{left:171.075000px;}
.x11{left:180.794987px;}
.x3d{left:190.590000px;}
.x24{left:191.594987px;}
.x25{left:199.515000px;}
.x1e{left:212.474987px;}
.x35{left:230.864987px;}
.x10{left:238.784987px;}
.x3b{left:250.560000px;}
.x2{left:254.264987px;}
.x3a{left:262.875000px;}
.xd{left:265.064987px;}
.x1a{left:272.264987px;}
.x6{left:274.064987px;}
.x36{left:276.480000px;}
.x3e{left:281.264987px;}
.x33{left:298.544987px;}
.xa{left:304.350000px;}
.x1b{left:319.109987px;}
.x1c{left:333.869987px;}
.x13{left:339.984000px;}
.x45{left:342.509987px;}
.x17{left:350.069987px;}
.x1f{left:354.389987px;}
.x5{left:362.669987px;}
.x22{left:371.309987px;}
.x4{left:379.949987px;}
.x20{left:391.109987px;}
.x3{left:398.339987px;}
.x1d{left:410.579987px;}
.x23{left:427.499987px;}
.x21{left:434.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x48{left:472.860000px;}
.x27{left:505.290000px;}
.x3f{left:542.370000px;}
.x2a{left:598.215000px;}
.x16{left:607.214987px;}
.x32{left:616.214987px;}
.x40{left:638.175000px;}
.x34{left:642.134987px;}
.x19{left:717.764987px;}
.x1{left:786.929987px;}
@media print{
.v3{vertical-align:-21.226667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:32.000000pt;}
.lsb{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.848000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls7{letter-spacing:-0.432533pt;}
.ls19{letter-spacing:-0.376533pt;}
.ls15{letter-spacing:-0.278933pt;}
.lsf{letter-spacing:-0.051200pt;}
.ls18{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.314667pt;}
.ls14{letter-spacing:0.330133pt;}
.lsa{letter-spacing:0.414720pt;}
.ls0{letter-spacing:0.442880pt;}
.lsc{letter-spacing:0.450667pt;}
.lse{letter-spacing:0.542720pt;}
.ls16{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls11{letter-spacing:8.652800pt;}
.ls10{letter-spacing:14.881280pt;}
.ls1a{letter-spacing:41.374720pt;}
.ls9{letter-spacing:41.385387pt;}
.ls12{letter-spacing:41.502720pt;}
.ls6{letter-spacing:73.502720pt;}
.ws6{word-spacing:-13.890667pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.422080pt;}
.ws4{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.592000pt;}
.ws9{word-spacing:-11.827200pt;}
.wsb{word-spacing:-11.776000pt;}
.ws2{word-spacing:-11.717333pt;}
.wsf{word-spacing:-8.710400pt;}
.ws8{word-spacing:-8.166400pt;}
.wsa{word-spacing:-0.291840pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:0.886080pt;}
.ws7{word-spacing:3.274240pt;}
.wsc{word-spacing:3.583787pt;}
.wse{word-spacing:4.512107pt;}
.ws13{word-spacing:155.605333pt;}
.ws12{word-spacing:584.122027pt;}
._1d{margin-left:-8.105387pt;}
._16{margin-left:-7.216213pt;}
._1a{margin-left:-5.537280pt;}
._15{margin-left:-3.863040pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.325867pt;}
._9{width:4.860160pt;}
._10{width:5.868800pt;}
._e{width:6.881280pt;}
._d{width:8.225280pt;}
._f{width:9.139200pt;}
._12{width:10.045440pt;}
._11{width:11.082240pt;}
._14{width:12.264960pt;}
._1b{width:13.601280pt;}
._13{width:14.597973pt;}
._c{width:15.547733pt;}
._b{width:17.003520pt;}
._a{width:18.009600pt;}
._17{width:21.073920pt;}
._18{width:22.202880pt;}
._19{width:23.747413pt;}
._1c{width:51.703467pt;}
._1e{width:182.858667pt;}
._5{width:350.186667pt;}
._4{width:978.986667pt;}
._7{width:1158.272000pt;}
._3{width:1414.378667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:48.768000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y33{bottom:2.880000pt;}
.yf9{bottom:4.800000pt;}
.yfb{bottom:4.826667pt;}
.yfe{bottom:5.120000pt;}
.yf7{bottom:5.440000pt;}
.y14e{bottom:5.760000pt;}
.y14d{bottom:6.080000pt;}
.y154{bottom:6.400000pt;}
.y16e{bottom:10.240000pt;}
.y171{bottom:10.560000pt;}
.y177{bottom:10.586667pt;}
.yf6{bottom:11.520000pt;}
.y13c{bottom:11.546667pt;}
.y106{bottom:11.840000pt;}
.y179{bottom:12.160000pt;}
.y17a{bottom:14.080000pt;}
.y173{bottom:16.320000pt;}
.y32{bottom:18.234667pt;}
.y4f{bottom:18.240000pt;}
.y14b{bottom:21.760000pt;}
.yf4{bottom:22.080000pt;}
.y174{bottom:22.400000pt;}
.y4e{bottom:33.280000pt;}
.ye{bottom:38.720000pt;}
.y31{bottom:41.594667pt;}
.y4d{bottom:48.640000pt;}
.y134{bottom:53.920000pt;}
.y30{bottom:56.994667pt;}
.yc{bottom:60.800000pt;}
.y4c{bottom:64.000000pt;}
.y13a{bottom:71.173333pt;}
.y2f{bottom:72.354667pt;}
.y137{bottom:75.813333pt;}
.y4b{bottom:79.400000pt;}
.ya{bottom:84.192000pt;}
.y4a{bottom:94.760000pt;}
.y2e{bottom:95.714667pt;}
.y136{bottom:98.306667pt;}
.y49{bottom:110.120000pt;}
.y2d{bottom:111.074667pt;}
.y164{bottom:116.832000pt;}
.y11d{bottom:117.152000pt;}
.yf1{bottom:117.472000pt;}
.y131{bottom:118.752000pt;}
.y1d4{bottom:120.032000pt;}
.y20{bottom:120.672000pt;}
.yaa{bottom:124.832000pt;}
.y48{bottom:125.480000pt;}
.y18f{bottom:125.792000pt;}
.y135{bottom:126.106667pt;}
.y2c{bottom:126.434667pt;}
.y133{bottom:130.906667pt;}
.y1f3{bottom:131.552000pt;}
.ycf{bottom:131.872000pt;}
.y139{bottom:132.613333pt;}
.y163{bottom:134.426667pt;}
.y11c{bottom:134.746667pt;}
.yf0{bottom:135.066667pt;}
.y1d3{bottom:135.386667pt;}
.y1b0{bottom:136.666667pt;}
.y6a{bottom:138.906667pt;}
.ya9{bottom:139.546667pt;}
.y47{bottom:140.840000pt;}
.y2b{bottom:141.794667pt;}
.y18e{bottom:143.386667pt;}
.y130{bottom:149.786667pt;}
.y1d2{bottom:150.746667pt;}
.y162{bottom:152.026667pt;}
.yef{bottom:152.986667pt;}
.y1af{bottom:154.266667pt;}
.y46{bottom:156.200000pt;}
.y69{bottom:156.506667pt;}
.y1f2{bottom:159.706667pt;}
.yce{bottom:160.346667pt;}
.y11b{bottom:162.906667pt;}
.y12f{bottom:164.506667pt;}
.y138{bottom:165.120000pt;}
.y2a{bottom:165.154667pt;}
.y1d1{bottom:166.106667pt;}
.y161{bottom:169.626667pt;}
.yee{bottom:170.586667pt;}
.y18d{bottom:171.546667pt;}
.y45{bottom:171.560000pt;}
.y1ae{bottom:171.866667pt;}
.y68{bottom:174.426667pt;}
.y1f1{bottom:177.346667pt;}
.y29{bottom:180.541333pt;}
.y11a{bottom:180.866667pt;}
.y1d0{bottom:181.186667pt;}
.y44{bottom:186.920000pt;}
.y160{bottom:187.266667pt;}
.yed{bottom:188.226667pt;}
.ycd{bottom:188.546667pt;}
.y18c{bottom:189.186667pt;}
.y1ad{bottom:189.506667pt;}
.y67{bottom:192.066667pt;}
.y1f0{bottom:194.946667pt;}
.y28{bottom:195.581333pt;}
.y1cf{bottom:196.546667pt;}
.y119{bottom:198.466667pt;}
.y43{bottom:202.306667pt;}
.yec{bottom:205.826667pt;}
.ycc{bottom:206.146667pt;}
.y18b{bottom:206.786667pt;}
.y1ac{bottom:207.106667pt;}
.y66{bottom:209.666667pt;}
.y27{bottom:210.941333pt;}
.y1ce{bottom:211.906667pt;}
.y15f{bottom:215.746667pt;}
.y42{bottom:217.346667pt;}
.y96{bottom:219.266667pt;}
.y13b{bottom:220.386667pt;}
.y1ef{bottom:223.426667pt;}
.y18a{bottom:224.386667pt;}
.y26{bottom:226.301333pt;}
.y118{bottom:226.626667pt;}
.y65{bottom:227.266667pt;}
.y41{bottom:232.706667pt;}
.y15e{bottom:233.346667pt;}
.yeb{bottom:233.986667pt;}
.ycb{bottom:234.626667pt;}
.y1ab{bottom:235.266667pt;}
.y95{bottom:238.466667pt;}
.y1ee{bottom:241.026667pt;}
.y1cd{bottom:242.626667pt;}
.y117{bottom:244.226667pt;}
.y64{bottom:244.866667pt;}
.y40{bottom:248.066667pt;}
.y25{bottom:249.661333pt;}
.y15d{bottom:250.946667pt;}
.yea{bottom:251.586667pt;}
.y189{bottom:252.866667pt;}
.y1aa{bottom:253.186667pt;}
.y94{bottom:253.826667pt;}
.y1cc{bottom:257.986667pt;}
.y116{bottom:261.826667pt;}
.y63{bottom:262.466667pt;}
.yca{bottom:262.786667pt;}
.y3f{bottom:263.426667pt;}
.y24{bottom:265.021333pt;}
.y15c{bottom:268.546667pt;}
.y93{bottom:269.186667pt;}
.y188{bottom:270.466667pt;}
.y1a9{bottom:270.786667pt;}
.y1cb{bottom:273.346667pt;}
.y3e{bottom:278.786667pt;}
.y62{bottom:280.066667pt;}
.y23{bottom:280.421333pt;}
.y92{bottom:284.546667pt;}
.y15b{bottom:286.146667pt;}
.y1ed{bottom:286.786667pt;}
.ye9{bottom:287.106667pt;}
.y187{bottom:288.093333pt;}
.y1a8{bottom:288.413333pt;}
.y1ca{bottom:288.733333pt;}
.y115{bottom:290.333333pt;}
.y3d{bottom:294.146667pt;}
.y22{bottom:295.781333pt;}
.yc9{bottom:296.413333pt;}
.y61{bottom:297.693333pt;}
.y91{bottom:299.933333pt;}
.y1c9{bottom:304.093333pt;}
.y186{bottom:305.693333pt;}
.y1a7{bottom:306.013333pt;}
.y114{bottom:307.933333pt;}
.y3c{bottom:309.546667pt;}
.y21{bottom:311.141333pt;}
.y60{bottom:315.293333pt;}
.y1c8{bottom:319.453333pt;}
.y15a{bottom:319.773333pt;}
.y1a6{bottom:323.613333pt;}
.y3b{bottom:324.906667pt;}
.y113{bottom:325.533333pt;}
.yc8{bottom:330.333333pt;}
.y90{bottom:330.653333pt;}
.y5f{bottom:332.893333pt;}
.y185{bottom:334.173333pt;}
.y1c7{bottom:334.813333pt;}
.y3a{bottom:340.266667pt;}
.y1a5{bottom:341.213333pt;}
.y112{bottom:343.133333pt;}
.y1c6{bottom:349.853333pt;}
.ye8{bottom:350.493333pt;}
.y5e{bottom:350.813333pt;}
.y184{bottom:351.773333pt;}
.y8f{bottom:353.693333pt;}
.y39{bottom:355.626667pt;}
.y1ec{bottom:361.053333pt;}
.yc7{bottom:364.253333pt;}
.y1c5{bottom:365.213333pt;}
.y159{bottom:366.813333pt;}
.y5d{bottom:368.413333pt;}
.y183{bottom:369.373333pt;}
.y1a4{bottom:369.693333pt;}
.y111{bottom:371.293333pt;}
.y8e{bottom:377.053333pt;}
.y1eb{bottom:378.653333pt;}
.ye7{bottom:378.973333pt;}
.y1c4{bottom:380.573333pt;}
.y5c{bottom:386.013333pt;}
.y182{bottom:386.973333pt;}
.y1a3{bottom:387.293333pt;}
.y158{bottom:388.893333pt;}
.y110{bottom:389.213333pt;}
.y1c3{bottom:395.933333pt;}
.y8d{bottom:396.573333pt;}
.yc6{bottom:398.173333pt;}
.y5b{bottom:403.653333pt;}
.y181{bottom:404.613333pt;}
.y1a2{bottom:404.933333pt;}
.y1ea{bottom:407.173333pt;}
.y157{bottom:411.333333pt;}
.y8c{bottom:411.973333pt;}
.ye6{bottom:414.213333pt;}
.y5a{bottom:421.253333pt;}
.y180{bottom:422.213333pt;}
.y1a1{bottom:422.533333pt;}
.y10f{bottom:422.853333pt;}
.y1e9{bottom:424.773333pt;}
.y1c2{bottom:426.693333pt;}
.y8b{bottom:427.333333pt;}
.y12e{bottom:428.613333pt;}
.yc5{bottom:429.573333pt;}
.y156{bottom:433.413333pt;}
.yc4{bottom:436.293333pt;}
.y59{bottom:438.853333pt;}
.y1a0{bottom:440.133333pt;}
.y1c1{bottom:442.053333pt;}
.y8a{bottom:442.373333pt;}
.ye5{bottom:447.813333pt;}
.y17f{bottom:449.413333pt;}
.y10e{bottom:451.013333pt;}
.y155{bottom:455.813333pt;}
.y58{bottom:456.453333pt;}
.ya8{bottom:456.773333pt;}
.y1f{bottom:457.093333pt;}
.y1c0{bottom:457.413333pt;}
.y89{bottom:457.733333pt;}
.y10d{bottom:464.133333pt;}
.y17e{bottom:466.053333pt;}
.yc3{bottom:467.653333pt;}
.y19f{bottom:468.293333pt;}
.y1e8{bottom:470.533333pt;}
.y1bf{bottom:472.773333pt;}
.y88{bottom:473.093333pt;}
.y57{bottom:474.053333pt;}
.y12d{bottom:474.373333pt;}
.ya7{bottom:474.693333pt;}
.ye4{bottom:475.013333pt;}
.y153{bottom:478.213333pt;}
.y1e{bottom:480.453333pt;}
.y10c{bottom:484.933333pt;}
.yc2{bottom:485.253333pt;}
.y19e{bottom:485.893333pt;}
.y1e7{bottom:488.133333pt;}
.y87{bottom:488.453333pt;}
.y56{bottom:491.653333pt;}
.ya6{bottom:492.293333pt;}
.y17d{bottom:495.173333pt;}
.y1be{bottom:500.933333pt;}
.y152{bottom:501.253333pt;}
.yc1{bottom:502.853333pt;}
.y1d{bottom:503.813333pt;}
.y10b{bottom:505.413333pt;}
.y55{bottom:509.253333pt;}
.ya5{bottom:509.893333pt;}
.ye3{bottom:514.080000pt;}
.y1e6{bottom:516.640000pt;}
.y1bd{bottom:518.560000pt;}
.y17c{bottom:518.880000pt;}
.y86{bottom:519.200000pt;}
.y12c{bottom:520.480000pt;}
.y19d{bottom:521.440000pt;}
.y151{bottom:521.760000pt;}
.y10a{bottom:525.600000pt;}
.y1c{bottom:527.200000pt;}
.ya4{bottom:527.520000pt;}
.y1e5{bottom:534.240000pt;}
.y85{bottom:534.560000pt;}
.yc0{bottom:535.520000pt;}
.y1bc{bottom:536.160000pt;}
.y12b{bottom:538.080000pt;}
.y19c{bottom:539.040000pt;}
.y150{bottom:544.160000pt;}
.y54{bottom:544.800000pt;}
.ya3{bottom:545.120000pt;}
.y109{bottom:545.440000pt;}
.ye2{bottom:547.040000pt;}
.y84{bottom:549.920000pt;}
.y1b{bottom:550.560000pt;}
.y1e4{bottom:551.840000pt;}
.ye1{bottom:553.760000pt;}
.y17b{bottom:554.400000pt;}
.y12a{bottom:555.680000pt;}
.y53{bottom:562.400000pt;}
.ya2{bottom:562.720000pt;}
.ybf{bottom:564.000000pt;}
.y83{bottom:565.280000pt;}
.y1a{bottom:565.920000pt;}
.y14f{bottom:566.240000pt;}
.y19b{bottom:567.200000pt;}
.y1e3{bottom:569.440000pt;}
.y1bb{bottom:571.360000pt;}
.y129{bottom:573.280000pt;}
.y52{bottom:580.000000pt;}
.ya1{bottom:580.320000pt;}
.y19{bottom:580.640000pt;}
.y19a{bottom:584.800000pt;}
.ye0{bottom:585.440000pt;}
.y108{bottom:586.720000pt;}
.y82{bottom:588.640000pt;}
.y178{bottom:589.920000pt;}
.ybe{bottom:592.160000pt;}
.ya0{bottom:597.920000pt;}
.y1ba{bottom:599.840000pt;}
.y18{bottom:601.440000pt;}
.y128{bottom:601.760000pt;}
.y199{bottom:602.400000pt;}
.ydf{bottom:603.040000pt;}
.y107{bottom:606.560000pt;}
.ybd{bottom:609.760000pt;}
.y51{bottom:611.040000pt;}
.y81{bottom:614.560000pt;}
.y9f{bottom:615.520000pt;}
.y176{bottom:617.120000pt;}
.y1b9{bottom:617.440000pt;}
.y17{bottom:618.400000pt;}
.y127{bottom:619.360000pt;}
.y198{bottom:620.000000pt;}
.yde{bottom:620.640000pt;}
.y105{bottom:626.426667pt;}
.ybc{bottom:627.386667pt;}
.y9e{bottom:633.146667pt;}
.y1b8{bottom:635.066667pt;}
.y50{bottom:636.026667pt;}
.y126{bottom:636.986667pt;}
.y197{bottom:637.946667pt;}
.ydd{bottom:638.266667pt;}
.y80{bottom:640.506667pt;}
.y175{bottom:640.826667pt;}
.y16{bottom:642.746667pt;}
.ybb{bottom:644.986667pt;}
.y1e2{bottom:650.746667pt;}
.y9d{bottom:651.066667pt;}
.y1b7{bottom:652.666667pt;}
.y125{bottom:654.586667pt;}
.y14c{bottom:655.546667pt;}
.y7f{bottom:655.866667pt;}
.y38{bottom:658.106667pt;}
.y104{bottom:660.666667pt;}
.yba{bottom:662.906667pt;}
.y172{bottom:664.506667pt;}
.y196{bottom:666.106667pt;}
.y15{bottom:667.386667pt;}
.y9c{bottom:670.266667pt;}
.y7e{bottom:671.226667pt;}
.ydc{bottom:673.466667pt;}
.y1e1{bottom:678.906667pt;}
.y103{bottom:680.506667pt;}
.y124{bottom:682.746667pt;}
.y195{bottom:683.706667pt;}
.y7d{bottom:686.586667pt;}
.y1b6{bottom:687.866667pt;}
.yb9{bottom:690.106667pt;}
.ydb{bottom:691.066667pt;}
.y14{bottom:692.026667pt;}
.y1e0{bottom:696.506667pt;}
.y170{bottom:700.026667pt;}
.y123{bottom:700.666667pt;}
.y9b{bottom:701.306667pt;}
.y7c{bottom:701.946667pt;}
.y14a{bottom:702.906667pt;}
.y1b5{bottom:705.786667pt;}
.y13{bottom:716.346667pt;}
.y7b{bottom:717.306667pt;}
.yb8{bottom:718.266667pt;}
.y194{bottom:718.906667pt;}
.yda{bottom:719.546667pt;}
.y102{bottom:721.786667pt;}
.y1b4{bottom:723.386667pt;}
.y16f{bottom:723.706667pt;}
.y1df{bottom:724.986667pt;}
.y9a{bottom:726.906667pt;}
.y149{bottom:731.386667pt;}
.y7a{bottom:732.666667pt;}
.y122{bottom:734.266667pt;}
.y193{bottom:736.546667pt;}
.y12{bottom:741.026667pt;}
.y101{bottom:741.666667pt;}
.y99{bottom:742.306667pt;}
.y1de{bottom:742.626667pt;}
.yb7{bottom:746.466667pt;}
.y16d{bottom:747.426667pt;}
.yd9{bottom:747.746667pt;}
.y79{bottom:748.066667pt;}
.y148{bottom:749.026667pt;}
.y121{bottom:751.906667pt;}
.y98{bottom:759.906667pt;}
.y100{bottom:761.506667pt;}
.y78{bottom:763.426667pt;}
.yb6{bottom:764.386667pt;}
.y192{bottom:765.026667pt;}
.y11{bottom:765.666667pt;}
.y147{bottom:766.626667pt;}
.y120{bottom:769.506667pt;}
.y1dd{bottom:770.786667pt;}
.y16c{bottom:771.106667pt;}
.y1b3{bottom:772.066667pt;}
.yd8{bottom:775.906667pt;}
.y97{bottom:777.506667pt;}
.yff{bottom:781.346667pt;}
.yb5{bottom:781.986667pt;}
.y77{bottom:782.626667pt;}
.y146{bottom:784.226667pt;}
.y1dc{bottom:788.386667pt;}
.y10{bottom:789.986667pt;}
.y11f{bottom:798.306667pt;}
.yb4{bottom:799.586667pt;}
.y191{bottom:800.226667pt;}
.yfd{bottom:801.506667pt;}
.y16b{bottom:804.706667pt;}
.yd7{bottom:807.266667pt;}
.y145{bottom:812.386667pt;}
.y76{bottom:813.666667pt;}
.yd6{bottom:813.986667pt;}
.yf{bottom:814.626667pt;}
.y1db{bottom:816.866667pt;}
.y190{bottom:817.826667pt;}
.yb3{bottom:818.786667pt;}
.y16a{bottom:820.066667pt;}
.yfc{bottom:821.986667pt;}
.y11e{bottom:823.586667pt;}
.y132{bottom:824.000000pt;}
.y1b2{bottom:828.386667pt;}
.y144{bottom:829.986667pt;}
.y1da{bottom:834.466667pt;}
.y169{bottom:835.426667pt;}
.y9{bottom:837.666667pt;}
.y75{bottom:839.266667pt;}
.yfa{bottom:841.826667pt;}
.yd5{bottom:845.346667pt;}
.y1b1{bottom:846.306667pt;}
.yb2{bottom:847.293333pt;}
.y143{bottom:847.933333pt;}
.y8{bottom:853.053333pt;}
.y74{bottom:856.893333pt;}
.yf8{bottom:861.693333pt;}
.y1d9{bottom:862.653333pt;}
.y168{bottom:863.933333pt;}
.yb1{bottom:864.893333pt;}
.y7{bottom:865.533333pt;}
.yd4{bottom:873.853333pt;}
.y73{bottom:874.493333pt;}
.y1d8{bottom:880.573333pt;}
.yf3{bottom:881.533333pt;}
.yb0{bottom:882.493333pt;}
.y72{bottom:892.093333pt;}
.y142{bottom:893.693333pt;}
.y167{bottom:899.133333pt;}
.yaf{bottom:900.093333pt;}
.yd3{bottom:902.013333pt;}
.yf5{bottom:902.333333pt;}
.y1d7{bottom:908.733333pt;}
.y71{bottom:909.693333pt;}
.y141{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.y166{bottom:916.733333pt;}
.yae{bottom:917.693333pt;}
.y1d6{bottom:926.333333pt;}
.y70{bottom:927.293333pt;}
.y140{bottom:928.893333pt;}
.yd2{bottom:930.173333pt;}
.y165{bottom:934.333333pt;}
.y5{bottom:935.293333pt;}
.y6f{bottom:944.893333pt;}
.y13f{bottom:946.493333pt;}
.yf2{bottom:951.933333pt;}
.yad{bottom:952.893333pt;}
.y4{bottom:953.533333pt;}
.y1d5{bottom:954.493333pt;}
.yd1{bottom:958.693333pt;}
.y6e{bottom:962.533333pt;}
.y13e{bottom:964.133333pt;}
.yac{bottom:970.533333pt;}
.y3{bottom:972.453333pt;}
.y6d{bottom:980.453333pt;}
.y13d{bottom:982.053333pt;}
.yd0{bottom:986.853333pt;}
.yab{bottom:990.053333pt;}
.y2{bottom:990.693333pt;}
.y6c{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y6b{bottom:1015.653333pt;}
.y37{bottom:1036.773333pt;}
.y36{bottom:1049.253333pt;}
.y35{bottom:1067.813333pt;}
.y34{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h26{height:17.280000pt;}
.h14{height:19.200000pt;}
.h15{height:19.232000pt;}
.h16{height:19.840000pt;}
.h23{height:19.872000pt;}
.h13{height:20.160000pt;}
.h22{height:21.440000pt;}
.h21{height:21.472000pt;}
.h20{height:21.760000pt;}
.h25{height:21.792000pt;}
.h24{height:22.400000pt;}
.h27{height:22.720000pt;}
.h28{height:22.752000pt;}
.h29{height:23.040000pt;}
.h2b{height:23.072000pt;}
.h2c{height:26.560000pt;}
.h1f{height:30.720000pt;}
.h12{height:32.640000pt;}
.h17{height:33.600000pt;}
.h2d{height:34.560000pt;}
.h2a{height:34.880000pt;}
.hb{height:37.063125pt;}
.h5{height:37.073750pt;}
.h2{height:38.928750pt;}
.he{height:39.138750pt;}
.h2e{height:40.976250pt;}
.h19{height:41.658750pt;}
.h7{height:42.678750pt;}
.h3{height:46.343750pt;}
.h4{height:47.171250pt;}
.h1a{height:48.378750pt;}
.h1b{height:48.506062pt;}
.h1e{height:53.120000pt;}
.h11{height:53.440000pt;}
.h1d{height:56.156250pt;}
.h9{height:62.100625pt;}
.hf{height:64.298750pt;}
.ha{height:64.613125pt;}
.h10{height:74.051250pt;}
.h18{height:204.160000pt;}
.h1c{height:247.680000pt;}
.hc{height:331.613333pt;}
.hd{height:368.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:81.952000pt;}
.w11{width:84.512000pt;}
.wb{width:85.152000pt;}
.w12{width:122.304000pt;}
.w9{width:167.746667pt;}
.w10{width:207.453333pt;}
.w15{width:221.533333pt;}
.w14{width:267.613333pt;}
.w8{width:270.853333pt;}
.w7{width:301.573333pt;}
.wd{width:301.760000pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.we{width:346.240000pt;}
.wf{width:376.800000pt;}
.wc{width:439.546667pt;}
.w13{width:584.893333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2c{left:4.160000pt;}
.x9{left:7.680000pt;}
.x2f{left:24.960000pt;}
.x31{left:26.880000pt;}
.x2e{left:30.080000pt;}
.x2b{left:31.360000pt;}
.x2d{left:33.920000pt;}
.x29{left:35.840000pt;}
.x30{left:37.440000pt;}
.x44{left:38.760000pt;}
.x42{left:40.346667pt;}
.x43{left:43.546667pt;}
.x28{left:44.480000pt;}
.x41{left:50.906667pt;}
.x3c{left:59.520000pt;}
.x39{left:64.573333pt;}
.x4b{left:80.986667pt;}
.x49{left:81.946667pt;}
.x4c{left:84.186667pt;}
.x47{left:86.746667pt;}
.x26{left:88.346667pt;}
.x4d{left:89.311988pt;}
.x4a{left:92.546667pt;}
.x7{left:94.431988pt;}
.xc{left:95.391988pt;}
.x18{left:98.911988pt;}
.xf{left:101.791988pt;}
.x38{left:104.253333pt;}
.x14{left:118.463988pt;}
.xe{left:120.383988pt;}
.x37{left:125.346667pt;}
.x15{left:132.863988pt;}
.xb{left:141.506655pt;}
.x46{left:152.066667pt;}
.x11{left:160.706655pt;}
.x3d{left:169.413333pt;}
.x24{left:170.306655pt;}
.x25{left:177.346667pt;}
.x1e{left:188.866655pt;}
.x35{left:205.213322pt;}
.x10{left:212.253322pt;}
.x3b{left:222.720000pt;}
.x2{left:226.013322pt;}
.x3a{left:233.666667pt;}
.xd{left:235.613322pt;}
.x1a{left:242.013322pt;}
.x6{left:243.613322pt;}
.x36{left:245.760000pt;}
.x3e{left:250.013322pt;}
.x33{left:265.373322pt;}
.xa{left:270.533333pt;}
.x1b{left:283.653322pt;}
.x1c{left:296.773322pt;}
.x13{left:302.208000pt;}
.x45{left:304.453322pt;}
.x17{left:311.173322pt;}
.x1f{left:315.013322pt;}
.x5{left:322.373322pt;}
.x22{left:330.053322pt;}
.x4{left:337.733322pt;}
.x20{left:347.653322pt;}
.x3{left:354.079988pt;}
.x1d{left:364.959988pt;}
.x23{left:379.999988pt;}
.x21{left:386.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x48{left:420.320000pt;}
.x27{left:449.146667pt;}
.x3f{left:482.106667pt;}
.x2a{left:531.746667pt;}
.x16{left:539.746655pt;}
.x32{left:547.746655pt;}
.x40{left:567.266667pt;}
.x34{left:570.786655pt;}
.x19{left:638.013322pt;}
.x1{left:699.493322pt;}
}




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