
    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_640378e08e22eb5f6888f48a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.138184;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_a018bf416ea1883a18088418.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_a0cf7b2240118bd72a1eb028.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.200000px;}
.v1{vertical-align:22.680600px;}
.v3{vertical-align:32.400000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.576000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.576000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:203.425800px;}
.ws5{word-spacing:232.369800px;}
._e{margin-left:-2160.286200px;}
._3{margin-left:-10.540200px;}
._6{margin-left:-7.992000px;}
._4{margin-left:-6.504000px;}
._0{margin-left:-5.232000px;}
._5{margin-left:-4.192200px;}
._7{margin-left:-3.186000px;}
._1{margin-left:-1.771800px;}
._b{width:1.503600px;}
._a{width:2.538000px;}
._c{width:4.326000px;}
._9{width:5.670000px;}
._8{width:6.966000px;}
._10{width:8.388000px;}
._11{width:10.320000px;}
._16{width:11.940000px;}
._17{width:13.500000px;}
._14{width:17.071800px;}
._15{width:18.688200px;}
._18{width:23.760000px;}
._f{width:25.020000px;}
._12{width:51.792000px;}
._d{width:52.944000px;}
._22{width:68.330400px;}
._1b{width:81.091200px;}
._25{width:84.368400px;}
._2c{width:90.370800px;}
._2d{width:109.377600px;}
._38{width:115.317600px;}
._29{width:124.929600px;}
._35{width:130.329600px;}
._32{width:142.317600px;}
._1a{width:144.079800px;}
._21{width:153.066000px;}
._3a{width:161.271600px;}
._26{width:166.887600px;}
._3b{width:178.765800px;}
._2b{width:182.385600px;}
._41{width:188.379600px;}
._36{width:191.342400px;}
._2e{width:200.367600px;}
._28{width:202.848600px;}
._39{width:205.071000px;}
._1d{width:207.334800px;}
._19{width:217.676400px;}
._2f{width:220.620000px;}
._3c{width:224.289600px;}
._37{width:233.361600px;}
._23{width:234.907800px;}
._20{width:237.931800px;}
._1e{width:245.751600px;}
._40{width:263.270400px;}
._2a{width:268.601400px;}
._31{width:273.372600px;}
._34{width:285.937800px;}
._3e{width:309.393600px;}
._3d{width:315.387600px;}
._24{width:351.351600px;}
._1c{width:359.883600px;}
._1f{width:412.411200px;}
._27{width:424.352400px;}
._13{width:454.480200px;}
._33{width:475.328400px;}
._3f{width:490.340400px;}
._30{width:529.328400px;}
._2{width:702.288000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:36.000600px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:50.400600px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:76.534650px;}
.y1{bottom:76.534950px;}
.yb3{bottom:76.535400px;}
.yb5{bottom:77.054250px;}
.y24{bottom:77.054700px;}
.y85{bottom:77.055000px;}
.ye9{bottom:113.902200px;}
.y119{bottom:115.071150px;}
.y4a{bottom:119.055000px;}
.y22{bottom:119.055150px;}
.y14c{bottom:121.454550px;}
.y77{bottom:121.454850px;}
.yb1{bottom:121.455300px;}
.y83{bottom:122.811000px;}
.y135{bottom:123.828150px;}
.yc9{bottom:125.881950px;}
.y132{bottom:126.741300px;}
.y7f{bottom:128.479500px;}
.y7c{bottom:129.085050px;}
.y12f{bottom:129.716700px;}
.y12b{bottom:130.828800px;}
.ye8{bottom:131.976900px;}
.y49{bottom:133.514850px;}
.y21{bottom:133.515000px;}
.yf1{bottom:134.315700px;}
.y118{bottom:137.512200px;}
.y14b{bottom:139.529250px;}
.y76{bottom:139.529700px;}
.yb0{bottom:139.530000px;}
.y7b{bottom:147.159900px;}
.y48{bottom:147.974700px;}
.y20{bottom:147.974850px;}
.y12a{bottom:148.903650px;}
.ye7{bottom:150.051750px;}
.yf0{bottom:152.390550px;}
.y117{bottom:156.566250px;}
.y14a{bottom:157.604100px;}
.y75{bottom:157.604400px;}
.yaf{bottom:157.604850px;}
.y1f{bottom:162.434550px;}
.y7a{bottom:165.234750px;}
.y129{bottom:166.978350px;}
.ye6{bottom:168.126600px;}
.yef{bottom:170.465400px;}
.y116{bottom:175.620450px;}
.y149{bottom:175.678950px;}
.y74{bottom:175.679250px;}
.yae{bottom:175.679700px;}
.y1e{bottom:176.894400px;}
.y79{bottom:183.309450px;}
.y47{bottom:184.034250px;}
.y128{bottom:185.053200px;}
.ye5{bottom:186.201300px;}
.yee{bottom:188.540250px;}
.y1d{bottom:191.354250px;}
.y148{bottom:193.753650px;}
.y73{bottom:193.754100px;}
.yad{bottom:193.754400px;}
.y115{bottom:194.674650px;}
.y46{bottom:202.108950px;}
.y127{bottom:203.128050px;}
.y1c{bottom:205.814100px;}
.yed{bottom:206.614950px;}
.y147{bottom:211.828500px;}
.y72{bottom:211.828800px;}
.yac{bottom:211.829250px;}
.y114{bottom:213.728700px;}
.y45{bottom:220.183800px;}
.y1b{bottom:220.273950px;}
.y126{bottom:221.202750px;}
.yec{bottom:224.689800px;}
.y146{bottom:229.903350px;}
.y71{bottom:229.903650px;}
.yab{bottom:229.903950px;}
.y113{bottom:229.928700px;}
.y1a{bottom:234.733800px;}
.y78{bottom:237.533850px;}
.y44{bottom:238.258650px;}
.y125{bottom:239.277600px;}
.ye4{bottom:240.425700px;}
.yeb{bottom:242.764500px;}
.y145{bottom:247.978050px;}
.y70{bottom:247.978500px;}
.yaa{bottom:247.978800px;}
.y112{bottom:248.982750px;}
.y19{bottom:249.193650px;}
.y43{bottom:256.333350px;}
.y124{bottom:257.352450px;}
.y18{bottom:263.653500px;}
.y111{bottom:265.182750px;}
.y144{bottom:266.052900px;}
.y6f{bottom:266.053200px;}
.ya9{bottom:266.053650px;}
.ye3{bottom:266.455950px;}
.y42{bottom:274.408200px;}
.y123{bottom:275.427150px;}
.y143{bottom:284.127750px;}
.y6e{bottom:284.128050px;}
.ya8{bottom:284.128350px;}
.y110{bottom:284.236950px;}
.y41{bottom:292.482900px;}
.y122{bottom:293.502000px;}
.ye2{bottom:295.838850px;}
.yea{bottom:296.988900px;}
.y10f{bottom:300.436950px;}
.y142{bottom:302.202450px;}
.y6d{bottom:302.202900px;}
.ya7{bottom:302.203200px;}
.y40{bottom:310.557750px;}
.y121{bottom:311.576850px;}
.y10e{bottom:319.491000px;}
.y141{bottom:320.277300px;}
.y6c{bottom:320.277600px;}
.ya6{bottom:320.278050px;}
.y17{bottom:323.023350px;}
.ye1{bottom:325.221750px;}
.y3f{bottom:328.632600px;}
.y120{bottom:329.651550px;}
.y140{bottom:338.352150px;}
.y6b{bottom:338.352450px;}
.ya5{bottom:338.352750px;}
.y10d{bottom:338.545200px;}
.y16{bottom:339.290700px;}
.y3e{bottom:346.707300px;}
.y11f{bottom:347.726400px;}
.ye0{bottom:354.604650px;}
.y13f{bottom:356.426850px;}
.y6a{bottom:356.427300px;}
.ya4{bottom:356.427600px;}
.y10c{bottom:357.599400px;}
.y3d{bottom:364.782150px;}
.y11e{bottom:365.801250px;}
.y15{bottom:371.825250px;}
.y10b{bottom:373.799400px;}
.y13e{bottom:374.501700px;}
.y69{bottom:374.502000px;}
.ya3{bottom:374.502450px;}
.y3c{bottom:382.857000px;}
.y11d{bottom:383.875950px;}
.ydf{bottom:383.987400px;}
.y14{bottom:388.092600px;}
.y13d{bottom:392.576550px;}
.y68{bottom:392.576850px;}
.ya2{bottom:392.577150px;}
.y10a{bottom:392.853450px;}
.y3b{bottom:400.931700px;}
.y11c{bottom:401.950800px;}
.y13{bottom:404.359950px;}
.y109{bottom:409.053450px;}
.y13c{bottom:410.651250px;}
.y67{bottom:410.651700px;}
.ya1{bottom:410.652000px;}
.yde{bottom:413.370300px;}
.y3a{bottom:419.006550px;}
.y11b{bottom:420.025650px;}
.y12{bottom:420.627300px;}
.y108{bottom:428.107650px;}
.y13b{bottom:428.726100px;}
.y66{bottom:428.726400px;}
.ya0{bottom:428.726850px;}
.y11{bottom:436.894500px;}
.y39{bottom:437.081400px;}
.y11a{bottom:438.100350px;}
.ydd{bottom:442.753200px;}
.y107{bottom:444.307650px;}
.y13a{bottom:446.800800px;}
.y65{bottom:446.801250px;}
.y9f{bottom:446.801550px;}
.y10{bottom:453.161850px;}
.y38{bottom:455.156100px;}
.y106{bottom:463.361700px;}
.y139{bottom:464.875650px;}
.y64{bottom:464.876100px;}
.y9e{bottom:464.876400px;}
.yf{bottom:469.429200px;}
.y37{bottom:473.230950px;}
.y12c{bottom:482.401500px;}
.y105{bottom:482.415900px;}
.ydc{bottom:482.950500px;}
.y63{bottom:482.950800px;}
.y9d{bottom:482.951250px;}
.y36{bottom:491.305800px;}
.y82{bottom:497.180850px;}
.y14e{bottom:501.025200px;}
.ydb{bottom:501.025350px;}
.y62{bottom:501.025650px;}
.y9c{bottom:501.025950px;}
.y104{bottom:501.470100px;}
.ye{bottom:501.963750px;}
.y12e{bottom:507.900300px;}
.y35{bottom:509.380500px;}
.y81{bottom:515.255700px;}
.y138{bottom:519.100050px;}
.yda{bottom:519.100200px;}
.y61{bottom:519.100500px;}
.y9b{bottom:519.100800px;}
.y103{bottom:520.524150px;}
.y12d{bottom:525.975150px;}
.y34{bottom:527.455350px;}
.y102{bottom:536.724150px;}
.y14d{bottom:537.174900px;}
.y60{bottom:537.175200px;}
.y9a{bottom:537.175650px;}
.y134{bottom:538.315200px;}
.y131{bottom:538.669500px;}
.y33{bottom:545.530200px;}
.yc8{bottom:546.745650px;}
.y80{bottom:551.811000px;}
.y101{bottom:552.924150px;}
.y137{bottom:555.249600px;}
.y5f{bottom:555.250050px;}
.y99{bottom:555.250350px;}
.y133{bottom:556.389900px;}
.y130{bottom:556.744200px;}
.y7e{bottom:563.022300px;}
.y32{bottom:563.604900px;}
.yc7{bottom:564.820500px;}
.y100{bottom:571.978350px;}
.y136{bottom:573.324450px;}
.yd9{bottom:573.324600px;}
.y5e{bottom:573.324900px;}
.y98{bottom:573.325200px;}
.y7d{bottom:581.097000px;}
.yff{bottom:588.178350px;}
.yd8{bottom:591.399300px;}
.y5d{bottom:591.399600px;}
.y97{bottom:591.400050px;}
.y31{bottom:599.754600px;}
.yfe{bottom:604.378350px;}
.yd{bottom:604.990200px;}
.yc6{bottom:609.474000px;}
.yd7{bottom:609.474150px;}
.y5c{bottom:609.474450px;}
.y96{bottom:609.474750px;}
.yc{bottom:623.064900px;}
.yfd{bottom:623.432400px;}
.yc5{bottom:627.548850px;}
.yd6{bottom:627.549000px;}
.y5b{bottom:627.549150px;}
.y95{bottom:627.549600px;}
.yb{bottom:637.524750px;}
.yfc{bottom:642.486600px;}
.yc4{bottom:645.623700px;}
.y5a{bottom:645.624000px;}
.y94{bottom:645.624450px;}
.yfb{bottom:661.540800px;}
.yc3{bottom:663.698400px;}
.yd5{bottom:663.698550px;}
.y59{bottom:663.698850px;}
.y93{bottom:663.699150px;}
.y30{bottom:672.053700px;}
.ya{bottom:677.289300px;}
.yfa{bottom:677.740650px;}
.yc2{bottom:681.773250px;}
.yd4{bottom:681.773400px;}
.y58{bottom:681.773550px;}
.y92{bottom:681.774000px;}
.y2f{bottom:688.321050px;}
.y9{bottom:691.749150px;}
.yf9{bottom:696.794850px;}
.yc1{bottom:699.848100px;}
.y57{bottom:699.848400px;}
.y91{bottom:699.848850px;}
.y8{bottom:706.209000px;}
.yf8{bottom:715.848900px;}
.yc0{bottom:717.922800px;}
.yd3{bottom:717.922950px;}
.y56{bottom:717.923250px;}
.y90{bottom:717.923550px;}
.y2e{bottom:720.855750px;}
.yf7{bottom:734.903100px;}
.ybf{bottom:735.997650px;}
.yd2{bottom:735.997800px;}
.y55{bottom:735.997950px;}
.y8f{bottom:735.998400px;}
.y2d{bottom:737.122950px;}
.y7{bottom:745.973550px;}
.y2c{bottom:753.390300px;}
.yf6{bottom:753.957300px;}
.ybe{bottom:754.072500px;}
.y54{bottom:754.072800px;}
.y8e{bottom:754.073250px;}
.y2b{bottom:769.657650px;}
.y6{bottom:771.278250px;}
.ybd{bottom:772.147200px;}
.yd1{bottom:772.147350px;}
.y53{bottom:772.147650px;}
.y8d{bottom:772.147950px;}
.yf5{bottom:773.011350px;}
.y2a{bottom:785.925000px;}
.ybc{bottom:790.222050px;}
.yd0{bottom:790.222200px;}
.y52{bottom:790.222350px;}
.y8c{bottom:790.222800px;}
.yf4{bottom:792.065400px;}
.y5{bottom:796.583100px;}
.y29{bottom:802.192350px;}
.ybb{bottom:808.296900px;}
.y51{bottom:808.297200px;}
.y8b{bottom:808.297650px;}
.yf3{bottom:814.305000px;}
.y28{bottom:818.459700px;}
.y4{bottom:821.887800px;}
.yf2{bottom:822.405000px;}
.yba{bottom:826.371600px;}
.ycf{bottom:826.371750px;}
.y50{bottom:826.372050px;}
.y8a{bottom:826.372350px;}
.yb9{bottom:844.446450px;}
.yce{bottom:844.446600px;}
.y4f{bottom:844.446750px;}
.y89{bottom:844.447200px;}
.y27{bottom:850.994250px;}
.yb8{bottom:862.521300px;}
.y4e{bottom:862.521600px;}
.y88{bottom:862.521900px;}
.yb7{bottom:880.596000px;}
.ycd{bottom:880.596150px;}
.y4d{bottom:880.596450px;}
.y87{bottom:880.596750px;}
.y26{bottom:883.528950px;}
.yb6{bottom:898.670850px;}
.ycc{bottom:898.671000px;}
.y4c{bottom:898.671150px;}
.y86{bottom:898.671600px;}
.y25{bottom:899.796150px;}
.y3{bottom:920.477100px;}
.yca{bottom:934.935900px;}
.y4b{bottom:934.936200px;}
.yb2{bottom:934.936650px;}
.y2{bottom:934.936950px;}
.yb4{bottom:935.455500px;}
.y23{bottom:935.455950px;}
.y84{bottom:935.456250px;}
.hc{height:41.103516px;}
.h3{height:43.054688px;}
.h2{height:44.671875px;}
.h8{height:48.436523px;}
.h5{height:49.324219px;}
.h7{height:50.255859px;}
.h6{height:53.818359px;}
.h9{height:55.839844px;}
.ha{height:59.200195px;}
.h4{height:78.175781px;}
.hb{height:82.655859px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:89.291400px;}
.x15{left:91.417350px;}
.xf{left:93.543300px;}
.x1f{left:102.018300px;}
.x5{left:110.613600px;}
.x10{left:114.803100px;}
.x16{left:116.398500px;}
.x1d{left:118.830300px;}
.x4{left:120.621450px;}
.xd{left:131.811000px;}
.x14{left:135.021900px;}
.x11{left:136.063050px;}
.x3{left:145.317900px;}
.x6{left:148.233150px;}
.x1b{left:154.792950px;}
.x26{left:179.951550px;}
.x27{left:191.958600px;}
.x1a{left:207.521850px;}
.x18{left:225.347700px;}
.x25{left:240.418500px;}
.x7{left:260.554950px;}
.x20{left:263.593200px;}
.xb{left:267.477900px;}
.xa{left:283.793250px;}
.xe{left:302.568150px;}
.x8{left:304.638000px;}
.xc{left:310.109250px;}
.x1c{left:315.624600px;}
.x9{left:319.602900px;}
.x12{left:329.125050px;}
.x17{left:333.377100px;}
.x19{left:335.222400px;}
.x13{left:338.793300px;}
.x1{left:411.041400px;}
.x21{left:437.923800px;}
.x1e{left:523.874700px;}
.x23{left:546.141750px;}
.x24{left:552.891750px;}
.x22{left:566.391750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.400000pt;}
.v1{vertical-align:20.160533pt;}
.v3{vertical-align:28.800000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.512000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.178667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:180.822933pt;}
.ws5{word-spacing:206.550933pt;}
._e{margin-left:-1920.254400pt;}
._3{margin-left:-9.369067pt;}
._6{margin-left:-7.104000pt;}
._4{margin-left:-5.781333pt;}
._0{margin-left:-4.650667pt;}
._5{margin-left:-3.726400pt;}
._7{margin-left:-2.832000pt;}
._1{margin-left:-1.574933pt;}
._b{width:1.336533pt;}
._a{width:2.256000pt;}
._c{width:3.845333pt;}
._9{width:5.040000pt;}
._8{width:6.192000pt;}
._10{width:7.456000pt;}
._11{width:9.173333pt;}
._16{width:10.613333pt;}
._17{width:12.000000pt;}
._14{width:15.174933pt;}
._15{width:16.611733pt;}
._18{width:21.120000pt;}
._f{width:22.240000pt;}
._12{width:46.037333pt;}
._d{width:47.061333pt;}
._22{width:60.738133pt;}
._1b{width:72.081067pt;}
._25{width:74.994133pt;}
._2c{width:80.329600pt;}
._2d{width:97.224533pt;}
._38{width:102.504533pt;}
._29{width:111.048533pt;}
._35{width:115.848533pt;}
._32{width:126.504533pt;}
._1a{width:128.070933pt;}
._21{width:136.058667pt;}
._3a{width:143.352533pt;}
._26{width:148.344533pt;}
._3b{width:158.902933pt;}
._2b{width:162.120533pt;}
._41{width:167.448533pt;}
._36{width:170.082133pt;}
._2e{width:178.104533pt;}
._28{width:180.309867pt;}
._39{width:182.285333pt;}
._1d{width:184.297600pt;}
._19{width:193.490133pt;}
._2f{width:196.106667pt;}
._3c{width:199.368533pt;}
._37{width:207.432533pt;}
._23{width:208.806933pt;}
._20{width:211.494933pt;}
._1e{width:218.445867pt;}
._40{width:234.018133pt;}
._2a{width:238.756800pt;}
._31{width:242.997867pt;}
._34{width:254.166933pt;}
._3e{width:275.016533pt;}
._3d{width:280.344533pt;}
._24{width:312.312533pt;}
._1c{width:319.896533pt;}
._1f{width:366.587733pt;}
._27{width:377.202133pt;}
._13{width:403.982400pt;}
._33{width:422.514133pt;}
._3f{width:435.858133pt;}
._30{width:470.514133pt;}
._2{width:624.256000pt;}
.fs6{font-size:32.000533pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:44.800533pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:68.030800pt;}
.y1{bottom:68.031067pt;}
.yb3{bottom:68.031467pt;}
.yb5{bottom:68.492667pt;}
.y24{bottom:68.493067pt;}
.y85{bottom:68.493333pt;}
.ye9{bottom:101.246400pt;}
.y119{bottom:102.285467pt;}
.y4a{bottom:105.826667pt;}
.y22{bottom:105.826800pt;}
.y14c{bottom:107.959600pt;}
.y77{bottom:107.959867pt;}
.yb1{bottom:107.960267pt;}
.y83{bottom:109.165333pt;}
.y135{bottom:110.069467pt;}
.yc9{bottom:111.895067pt;}
.y132{bottom:112.658933pt;}
.y7f{bottom:114.204000pt;}
.y7c{bottom:114.742267pt;}
.y12f{bottom:115.303733pt;}
.y12b{bottom:116.292267pt;}
.ye8{bottom:117.312800pt;}
.y49{bottom:118.679867pt;}
.y21{bottom:118.680000pt;}
.yf1{bottom:119.391733pt;}
.y118{bottom:122.233067pt;}
.y14b{bottom:124.026000pt;}
.y76{bottom:124.026400pt;}
.yb0{bottom:124.026667pt;}
.y7b{bottom:130.808800pt;}
.y48{bottom:131.533067pt;}
.y20{bottom:131.533200pt;}
.y12a{bottom:132.358800pt;}
.ye7{bottom:133.379333pt;}
.yf0{bottom:135.458267pt;}
.y117{bottom:139.170000pt;}
.y14a{bottom:140.092533pt;}
.y75{bottom:140.092800pt;}
.yaf{bottom:140.093200pt;}
.y1f{bottom:144.386267pt;}
.y7a{bottom:146.875333pt;}
.y129{bottom:148.425200pt;}
.ye6{bottom:149.445867pt;}
.yef{bottom:151.524800pt;}
.y116{bottom:156.107067pt;}
.y149{bottom:156.159067pt;}
.y74{bottom:156.159333pt;}
.yae{bottom:156.159733pt;}
.y1e{bottom:157.239467pt;}
.y79{bottom:162.941733pt;}
.y47{bottom:163.586000pt;}
.y128{bottom:164.491733pt;}
.ye5{bottom:165.512267pt;}
.yee{bottom:167.591333pt;}
.y1d{bottom:170.092667pt;}
.y148{bottom:172.225467pt;}
.y73{bottom:172.225867pt;}
.yad{bottom:172.226133pt;}
.y115{bottom:173.044133pt;}
.y46{bottom:179.652400pt;}
.y127{bottom:180.558267pt;}
.y1c{bottom:182.945867pt;}
.yed{bottom:183.657733pt;}
.y147{bottom:188.292000pt;}
.y72{bottom:188.292267pt;}
.yac{bottom:188.292667pt;}
.y114{bottom:189.981067pt;}
.y45{bottom:195.718933pt;}
.y1b{bottom:195.799067pt;}
.y126{bottom:196.624667pt;}
.yec{bottom:199.724267pt;}
.y146{bottom:204.358533pt;}
.y71{bottom:204.358800pt;}
.yab{bottom:204.359067pt;}
.y113{bottom:204.381067pt;}
.y1a{bottom:208.652267pt;}
.y78{bottom:211.141200pt;}
.y44{bottom:211.785467pt;}
.y125{bottom:212.691200pt;}
.ye4{bottom:213.711733pt;}
.yeb{bottom:215.790667pt;}
.y145{bottom:220.424933pt;}
.y70{bottom:220.425333pt;}
.yaa{bottom:220.425600pt;}
.y112{bottom:221.318000pt;}
.y19{bottom:221.505467pt;}
.y43{bottom:227.851867pt;}
.y124{bottom:228.757733pt;}
.y18{bottom:234.358667pt;}
.y111{bottom:235.718000pt;}
.y144{bottom:236.491467pt;}
.y6f{bottom:236.491733pt;}
.ya9{bottom:236.492133pt;}
.ye3{bottom:236.849733pt;}
.y42{bottom:243.918400pt;}
.y123{bottom:244.824133pt;}
.y143{bottom:252.558000pt;}
.y6e{bottom:252.558267pt;}
.ya8{bottom:252.558533pt;}
.y110{bottom:252.655067pt;}
.y41{bottom:259.984800pt;}
.y122{bottom:260.890667pt;}
.ye2{bottom:262.967867pt;}
.yea{bottom:263.990133pt;}
.y10f{bottom:267.055067pt;}
.y142{bottom:268.624400pt;}
.y6d{bottom:268.624800pt;}
.ya7{bottom:268.625067pt;}
.y40{bottom:276.051333pt;}
.y121{bottom:276.957200pt;}
.y10e{bottom:283.992000pt;}
.y141{bottom:284.690933pt;}
.y6c{bottom:284.691200pt;}
.ya6{bottom:284.691600pt;}
.y17{bottom:287.131867pt;}
.ye1{bottom:289.086000pt;}
.y3f{bottom:292.117867pt;}
.y120{bottom:293.023600pt;}
.y140{bottom:300.757467pt;}
.y6b{bottom:300.757733pt;}
.ya5{bottom:300.758000pt;}
.y10d{bottom:300.929067pt;}
.y16{bottom:301.591733pt;}
.y3e{bottom:308.184267pt;}
.y11f{bottom:309.090133pt;}
.ye0{bottom:315.204133pt;}
.y13f{bottom:316.823867pt;}
.y6a{bottom:316.824267pt;}
.ya4{bottom:316.824533pt;}
.y10c{bottom:317.866133pt;}
.y3d{bottom:324.250800pt;}
.y11e{bottom:325.156667pt;}
.y15{bottom:330.511333pt;}
.y10b{bottom:332.266133pt;}
.y13e{bottom:332.890400pt;}
.y69{bottom:332.890667pt;}
.ya3{bottom:332.891067pt;}
.y3c{bottom:340.317333pt;}
.y11d{bottom:341.223067pt;}
.ydf{bottom:341.322133pt;}
.y14{bottom:344.971200pt;}
.y13d{bottom:348.956933pt;}
.y68{bottom:348.957200pt;}
.ya2{bottom:348.957467pt;}
.y10a{bottom:349.203067pt;}
.y3b{bottom:356.383733pt;}
.y11c{bottom:357.289600pt;}
.y13{bottom:359.431067pt;}
.y109{bottom:363.603067pt;}
.y13c{bottom:365.023333pt;}
.y67{bottom:365.023733pt;}
.ya1{bottom:365.024000pt;}
.yde{bottom:367.440267pt;}
.y3a{bottom:372.450267pt;}
.y11b{bottom:373.356133pt;}
.y12{bottom:373.890933pt;}
.y108{bottom:380.540133pt;}
.y13b{bottom:381.089867pt;}
.y66{bottom:381.090133pt;}
.ya0{bottom:381.090533pt;}
.y11{bottom:388.350667pt;}
.y39{bottom:388.516800pt;}
.y11a{bottom:389.422533pt;}
.ydd{bottom:393.558400pt;}
.y107{bottom:394.940133pt;}
.y13a{bottom:397.156267pt;}
.y65{bottom:397.156667pt;}
.y9f{bottom:397.156933pt;}
.y10{bottom:402.810533pt;}
.y38{bottom:404.583200pt;}
.y106{bottom:411.877067pt;}
.y139{bottom:413.222800pt;}
.y64{bottom:413.223200pt;}
.y9e{bottom:413.223467pt;}
.yf{bottom:417.270400pt;}
.y37{bottom:420.649733pt;}
.y12c{bottom:428.801333pt;}
.y105{bottom:428.814133pt;}
.ydc{bottom:429.289333pt;}
.y63{bottom:429.289600pt;}
.y9d{bottom:429.290000pt;}
.y36{bottom:436.716267pt;}
.y82{bottom:441.938533pt;}
.y14e{bottom:445.355733pt;}
.ydb{bottom:445.355867pt;}
.y62{bottom:445.356133pt;}
.y9c{bottom:445.356400pt;}
.y104{bottom:445.751200pt;}
.ye{bottom:446.190000pt;}
.y12e{bottom:451.466933pt;}
.y35{bottom:452.782667pt;}
.y81{bottom:458.005067pt;}
.y138{bottom:461.422267pt;}
.yda{bottom:461.422400pt;}
.y61{bottom:461.422667pt;}
.y9b{bottom:461.422933pt;}
.y103{bottom:462.688133pt;}
.y12d{bottom:467.533467pt;}
.y34{bottom:468.849200pt;}
.y102{bottom:477.088133pt;}
.y14d{bottom:477.488800pt;}
.y60{bottom:477.489067pt;}
.y9a{bottom:477.489467pt;}
.y134{bottom:478.502400pt;}
.y131{bottom:478.817333pt;}
.y33{bottom:484.915733pt;}
.yc8{bottom:485.996133pt;}
.y80{bottom:490.498667pt;}
.y101{bottom:491.488133pt;}
.y137{bottom:493.555200pt;}
.y5f{bottom:493.555600pt;}
.y99{bottom:493.555867pt;}
.y133{bottom:494.568800pt;}
.y130{bottom:494.883733pt;}
.y7e{bottom:500.464267pt;}
.y32{bottom:500.982133pt;}
.yc7{bottom:502.062667pt;}
.y100{bottom:508.425200pt;}
.y136{bottom:509.621733pt;}
.yd9{bottom:509.621867pt;}
.y5e{bottom:509.622133pt;}
.y98{bottom:509.622400pt;}
.y7d{bottom:516.530667pt;}
.yff{bottom:522.825200pt;}
.yd8{bottom:525.688267pt;}
.y5d{bottom:525.688533pt;}
.y97{bottom:525.688933pt;}
.y31{bottom:533.115200pt;}
.yfe{bottom:537.225200pt;}
.yd{bottom:537.769067pt;}
.yc6{bottom:541.754667pt;}
.yd7{bottom:541.754800pt;}
.y5c{bottom:541.755067pt;}
.y96{bottom:541.755333pt;}
.yc{bottom:553.835467pt;}
.yfd{bottom:554.162133pt;}
.yc5{bottom:557.821200pt;}
.yd6{bottom:557.821333pt;}
.y5b{bottom:557.821467pt;}
.y95{bottom:557.821867pt;}
.yb{bottom:566.688667pt;}
.yfc{bottom:571.099200pt;}
.yc4{bottom:573.887733pt;}
.y5a{bottom:573.888000pt;}
.y94{bottom:573.888400pt;}
.yfb{bottom:588.036267pt;}
.yc3{bottom:589.954133pt;}
.yd5{bottom:589.954267pt;}
.y59{bottom:589.954533pt;}
.y93{bottom:589.954800pt;}
.y30{bottom:597.381067pt;}
.ya{bottom:602.034933pt;}
.yfa{bottom:602.436133pt;}
.yc2{bottom:606.020667pt;}
.yd4{bottom:606.020800pt;}
.y58{bottom:606.020933pt;}
.y92{bottom:606.021333pt;}
.y2f{bottom:611.840933pt;}
.y9{bottom:614.888133pt;}
.yf9{bottom:619.373200pt;}
.yc1{bottom:622.087200pt;}
.y57{bottom:622.087467pt;}
.y91{bottom:622.087867pt;}
.y8{bottom:627.741333pt;}
.yf8{bottom:636.310133pt;}
.yc0{bottom:638.153600pt;}
.yd3{bottom:638.153733pt;}
.y56{bottom:638.154000pt;}
.y90{bottom:638.154267pt;}
.y2e{bottom:640.760667pt;}
.yf7{bottom:653.247200pt;}
.ybf{bottom:654.220133pt;}
.yd2{bottom:654.220267pt;}
.y55{bottom:654.220400pt;}
.y8f{bottom:654.220800pt;}
.y2d{bottom:655.220400pt;}
.y7{bottom:663.087600pt;}
.y2c{bottom:669.680267pt;}
.yf6{bottom:670.184267pt;}
.ybe{bottom:670.286667pt;}
.y54{bottom:670.286933pt;}
.y8e{bottom:670.287333pt;}
.y2b{bottom:684.140133pt;}
.y6{bottom:685.580667pt;}
.ybd{bottom:686.353067pt;}
.yd1{bottom:686.353200pt;}
.y53{bottom:686.353467pt;}
.y8d{bottom:686.353733pt;}
.yf5{bottom:687.121200pt;}
.y2a{bottom:698.600000pt;}
.ybc{bottom:702.419600pt;}
.yd0{bottom:702.419733pt;}
.y52{bottom:702.419867pt;}
.y8c{bottom:702.420267pt;}
.yf4{bottom:704.058133pt;}
.y5{bottom:708.073867pt;}
.y29{bottom:713.059867pt;}
.ybb{bottom:718.486133pt;}
.y51{bottom:718.486400pt;}
.y8b{bottom:718.486800pt;}
.yf3{bottom:723.826667pt;}
.y28{bottom:727.519733pt;}
.y4{bottom:730.566933pt;}
.yf2{bottom:731.026667pt;}
.yba{bottom:734.552533pt;}
.ycf{bottom:734.552667pt;}
.y50{bottom:734.552933pt;}
.y8a{bottom:734.553200pt;}
.yb9{bottom:750.619067pt;}
.yce{bottom:750.619200pt;}
.y4f{bottom:750.619333pt;}
.y89{bottom:750.619733pt;}
.y27{bottom:756.439333pt;}
.yb8{bottom:766.685600pt;}
.y4e{bottom:766.685867pt;}
.y88{bottom:766.686133pt;}
.yb7{bottom:782.752000pt;}
.ycd{bottom:782.752133pt;}
.y4d{bottom:782.752400pt;}
.y87{bottom:782.752667pt;}
.y26{bottom:785.359067pt;}
.yb6{bottom:798.818533pt;}
.ycc{bottom:798.818667pt;}
.y4c{bottom:798.818800pt;}
.y86{bottom:798.819200pt;}
.y25{bottom:799.818800pt;}
.y3{bottom:818.201867pt;}
.yca{bottom:831.054133pt;}
.y4b{bottom:831.054400pt;}
.yb2{bottom:831.054800pt;}
.y2{bottom:831.055067pt;}
.yb4{bottom:831.516000pt;}
.y23{bottom:831.516400pt;}
.y84{bottom:831.516667pt;}
.hc{height:36.536458pt;}
.h3{height:38.270833pt;}
.h2{height:39.708333pt;}
.h8{height:43.054688pt;}
.h5{height:43.843750pt;}
.h7{height:44.671875pt;}
.h6{height:47.838542pt;}
.h9{height:49.635417pt;}
.ha{height:52.622396pt;}
.h4{height:69.489583pt;}
.hb{height:73.471875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:79.370133pt;}
.x15{left:81.259867pt;}
.xf{left:83.149600pt;}
.x1f{left:90.682933pt;}
.x5{left:98.323200pt;}
.x10{left:102.047200pt;}
.x16{left:103.465333pt;}
.x1d{left:105.626933pt;}
.x4{left:107.219067pt;}
.xd{left:117.165333pt;}
.x14{left:120.019467pt;}
.x11{left:120.944933pt;}
.x3{left:129.171467pt;}
.x6{left:131.762800pt;}
.x1b{left:137.593733pt;}
.x26{left:159.956933pt;}
.x27{left:170.629867pt;}
.x1a{left:184.463867pt;}
.x18{left:200.309067pt;}
.x25{left:213.705333pt;}
.x7{left:231.604400pt;}
.x20{left:234.305067pt;}
.xb{left:237.758133pt;}
.xa{left:252.260667pt;}
.xe{left:268.949467pt;}
.x8{left:270.789333pt;}
.xc{left:275.652667pt;}
.x1c{left:280.555200pt;}
.x9{left:284.091467pt;}
.x12{left:292.555600pt;}
.x17{left:296.335200pt;}
.x19{left:297.975467pt;}
.x13{left:301.149600pt;}
.x1{left:365.370133pt;}
.x21{left:389.265600pt;}
.x1e{left:465.666400pt;}
.x23{left:485.459333pt;}
.x24{left:491.459333pt;}
.x22{left:503.459333pt;}
}

