
    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_67a76b62117ada82e40b89fb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064000;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_03c0bde93996c4833c5a9215.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064000;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_3fdd815f3674b19922b09f54.woff')format("woff");}.ff3{font-family:ff3;line-height:1.204000;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_2d5d544dbf7d16db93c9afe0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.204000;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_4c3014519c25d5db2317e489.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946187;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_e11b616886a0f072a73e9261.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946187;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_36829d3a7c1c13a0cd512973.woff')format("woff");}.ff7{font-family:ff7;line-height:0.711914;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_f8b08e98a1970481ae6664ad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065000;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_62bca7a12fc72be7ee7a24ad.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065000;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_8e76c1d8dfcc27f7e045432c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.711914;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_54098a9ec7e8e5b0de43d355.woff')format("woff");}.ffb{font-family:ffb;line-height:0.928223;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_f8ae7900a4e474897ce06cf2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.928223;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls1b{letter-spacing:-2.580000px;}
.ls14{letter-spacing:-1.452000px;}
.ls22{letter-spacing:-0.750000px;}
.ls26{letter-spacing:-0.690000px;}
.ls20{letter-spacing:-0.589200px;}
.ls6{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.450600px;}
.ls24{letter-spacing:-0.367200px;}
.ls25{letter-spacing:-0.328200px;}
.ls1c{letter-spacing:-0.280800px;}
.lsc{letter-spacing:-0.177000px;}
.ls23{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.138000px;}
.ls21{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.092400px;}
.ls16{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.184200px;}
.ls1f{letter-spacing:0.223200px;}
.ls7{letter-spacing:0.381600px;}
.ls3{letter-spacing:0.388800px;}
.ls1a{letter-spacing:0.438000px;}
.ls4{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.630000px;}
.ls5{letter-spacing:0.652320px;}
.ls9{letter-spacing:0.679680px;}
.ls15{letter-spacing:0.711360px;}
.lsb{letter-spacing:0.799680px;}
.lsf{letter-spacing:1.260000px;}
.ls28{letter-spacing:1.530720px;}
.lsa{letter-spacing:1.533600px;}
.ls17{letter-spacing:1.914000px;}
.ls12{letter-spacing:3.024000px;}
.ls18{letter-spacing:5.256000px;}
.ls10{letter-spacing:11.664000px;}
.ls13{letter-spacing:27.504000px;}
.ls0{letter-spacing:847.140000px;}
.ls27{letter-spacing:849.312000px;}
.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;}
}
.wse{word-spacing:-60.480000px;}
.ws5{word-spacing:-28.687896px;}
.wsf{word-spacing:-27.654000px;}
.ws6{word-spacing:-27.216000px;}
.ws12{word-spacing:-27.109200px;}
.ws10{word-spacing:-24.636000px;}
.ws0{word-spacing:-20.088000px;}
.wsd{word-spacing:-20.052000px;}
.ws8{word-spacing:-19.808309px;}
.ws11{word-spacing:-19.015200px;}
.wsb{word-spacing:-18.976200px;}
.wsc{word-spacing:-18.884400px;}
.ws7{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.615000px;}
.ws13{word-spacing:-18.424800px;}
.ws9{word-spacing:-18.341400px;}
.ws4{word-spacing:-14.904000px;}
.ws1{word-spacing:-12.234240px;}
.ws2{word-spacing:-12.096240px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-57.285792px;}
._b{margin-left:-47.784960px;}
._10{margin-left:-38.286240px;}
._12{margin-left:-34.350240px;}
._a{margin-left:-32.150880px;}
._13{margin-left:-29.043360px;}
._2{margin-left:-27.593280px;}
._11{margin-left:-24.143040px;}
._c{margin-left:-20.478240px;}
._14{margin-left:-18.613440px;}
._7{margin-left:-13.410720px;}
._6{margin-left:-12.349440px;}
._16{margin-left:-11.334432px;}
._8{margin-left:-9.912480px;}
._1{margin-left:-8.007840px;}
._5{margin-left:-6.174720px;}
._0{margin-left:-4.341600px;}
._3{margin-left:-3.183840px;}
._4{margin-left:-2.122560px;}
._e{margin-left:-1.013760px;}
._d{width:1.094880px;}
._f{width:2.424480px;}
._9{width:3.525120px;}
._17{width:4.525920px;}
._18{width:6.636672px;}
._1d{width:8.370720px;}
._1b{width:9.494880px;}
._1c{width:10.574400px;}
._22{width:12.477600px;}
._1a{width:13.836960px;}
._19{width:15.791040px;}
._29{width:17.181600px;}
._2a{width:18.256320px;}
._35{width:19.295520px;}
._2d{width:20.547360px;}
._34{width:22.267680px;}
._21{width:23.549760px;}
._3a{width:24.881760px;}
._28{width:26.165280px;}
._1e{width:28.249440px;}
._25{width:29.464320px;}
._24{width:31.307520px;}
._44{width:32.498400px;}
._23{width:34.787520px;}
._3b{width:37.437120px;}
._3e{width:39.532320px;}
._2c{width:41.041440px;}
._2b{width:42.099840px;}
._3c{width:44.680800px;}
._27{width:46.480320px;}
._26{width:47.834400px;}
._41{width:48.869280px;}
._38{width:49.901760px;}
._39{width:51.165600px;}
._3f{width:52.170240px;}
._3d{width:55.658880px;}
._2e{width:57.712320px;}
._36{width:59.090400px;}
._2f{width:60.925419px;}
._37{width:62.251783px;}
._45{width:66.312000px;}
._40{width:67.677120px;}
._33{width:73.059840px;}
._30{width:74.209440px;}
._31{width:75.442080px;}
._32{width:77.508436px;}
._1f{width:79.916640px;}
._20{width:81.224640px;}
._43{width:150.076320px;}
._42{width:158.740258px;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(59,56,56);}
.fc5{color:rgb(88,0,88);}
.fc3{color:transparent;}
.fc2{color:rgb(54,0,54);}
.fc6{color:rgb(0,125,188);}
.fc4{color:rgb(34,42,53);}
.fc1{color:rgb(139,125,122);}
.fc0{color:rgb(68,60,59);}
.fsb{font-size:24.480000px;}
.fs10{font-size:27.360000px;}
.fs8{font-size:33.120000px;}
.fse{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fsd{font-size:44.018465px;}
.fs1{font-size:44.640000px;}
.fs7{font-size:54.720000px;}
.fs9{font-size:57.679368px;}
.fs0{font-size:60.480000px;}
.fsa{font-size:63.750880px;}
.fs4{font-size:69.120000px;}
.fs11{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:119.520000px;}
.fs5{font-size:180.144000px;}
.y0{bottom:0.000000px;}
.y3{bottom:32.400000px;}
.y2{bottom:52.200000px;}
.y41{bottom:75.996000px;}
.y8a{bottom:89.676000px;}
.y40{bottom:90.396000px;}
.y3f{bottom:93.996000px;}
.y69{bottom:104.796000px;}
.y3e{bottom:108.036000px;}
.y89{bottom:112.356000px;}
.y68{bottom:119.196000px;}
.y70{bottom:122.796000px;}
.y3d{bottom:127.836000px;}
.y67{bottom:133.596000px;}
.y88{bottom:134.676000px;}
.y9a{bottom:136.836000px;}
.y98{bottom:137.196000px;}
.y21{bottom:137.556000px;}
.y66{bottom:148.032000px;}
.y65{bottom:151.635000px;}
.y20{bottom:155.235000px;}
.y99{bottom:156.675000px;}
.y87{bottom:157.395000px;}
.y64{bottom:162.435000px;}
.y6f{bottom:165.675000px;}
.y3c{bottom:166.395000px;}
.y1f{bottom:172.515000px;}
.y63{bottom:176.835000px;}
.y86{bottom:180.075000px;}
.y6e{bottom:185.475000px;}
.y3b{bottom:189.075000px;}
.y1e{bottom:189.795000px;}
.y62{bottom:191.235000px;}
.y61{bottom:194.835000px;}
.y85{bottom:202.755000px;}
.y60{bottom:205.635000px;}
.y1d{bottom:207.435000px;}
.y92{bottom:208.515000px;}
.y97{bottom:208.875000px;}
.y5f{bottom:209.235000px;}
.y3a{bottom:211.395000px;}
.y91{bottom:220.035000px;}
.y5e{bottom:222.915000px;}
.y1c{bottom:224.715000px;}
.y84{bottom:225.075000px;}
.y6d{bottom:225.435000px;}
.y96{bottom:228.675000px;}
.y39{bottom:234.105000px;}
.y90{bottom:234.465000px;}
.y1b{bottom:242.025000px;}
.y5d{bottom:242.745000px;}
.y83{bottom:247.785000px;}
.y6c{bottom:248.145000px;}
.y8f{bottom:251.745000px;}
.y38{bottom:256.785000px;}
.y1a{bottom:259.665000px;}
.y82{bottom:270.465000px;}
.y6b{bottom:270.825000px;}
.y8e{bottom:271.545000px;}
.y95{bottom:276.225000px;}
.y37{bottom:279.465000px;}
.y5b{bottom:293.145000px;}
.y19{bottom:294.585000px;}
.y5c{bottom:298.545000px;}
.y36{bottom:301.785000px;}
.y81{bottom:315.465000px;}
.y59{bottom:315.825000px;}
.y5a{bottom:321.270000px;}
.y35{bottom:324.510000px;}
.y80{bottom:338.190000px;}
.y58{bottom:338.550000px;}
.y18{bottom:341.070000px;}
.y34{bottom:347.190000px;}
.y17{bottom:358.350000px;}
.y7f{bottom:360.870000px;}
.y57{bottom:361.230000px;}
.y33{bottom:369.870000px;}
.y16{bottom:375.990000px;}
.y56{bottom:383.550000px;}
.y8d{bottom:388.950000px;}
.y32{bottom:392.190000px;}
.y15{bottom:393.270000px;}
.y7e{bottom:405.870000px;}
.y55{bottom:406.230000px;}
.y14{bottom:410.580000px;}
.y31{bottom:414.900000px;}
.y13{bottom:428.220000px;}
.y7d{bottom:428.580000px;}
.y54{bottom:428.940000px;}
.y30{bottom:437.580000px;}
.y12{bottom:445.500000px;}
.y7c{bottom:451.260000px;}
.y53{bottom:451.620000px;}
.y2f{bottom:460.260000px;}
.y11{bottom:462.780000px;}
.y51{bottom:473.940000px;}
.y52{bottom:479.340000px;}
.y2e{bottom:482.580000px;}
.y7b{bottom:496.260000px;}
.y50{bottom:496.620000px;}
.y10{bottom:497.730000px;}
.y2d{bottom:505.290000px;}
.y7a{bottom:518.970000px;}
.y4f{bottom:519.330000px;}
.y94{bottom:524.730000px;}
.y2c{bottom:527.970000px;}
.y79{bottom:541.650000px;}
.y4e{bottom:542.010000px;}
.yf{bottom:544.530000px;}
.y2b{bottom:550.650000px;}
.ye{bottom:561.810000px;}
.y78{bottom:563.970000px;}
.y4d{bottom:564.330000px;}
.y2a{bottom:572.970000px;}
.yd{bottom:579.090000px;}
.y77{bottom:586.695000px;}
.y4b{bottom:587.055000px;}
.y4c{bottom:592.455000px;}
.yc{bottom:596.775000px;}
.y28{bottom:602.535000px;}
.y29{bottom:607.215000px;}
.y76{bottom:609.375000px;}
.y4a{bottom:609.735000px;}
.yb{bottom:614.055000px;}
.y6a{bottom:615.135000px;}
.y27{bottom:620.895000px;}
.ya{bottom:631.335000px;}
.y75{bottom:632.055000px;}
.y49{bottom:632.415000px;}
.y8c{bottom:637.815000px;}
.y26{bottom:639.255000px;}
.y9{bottom:648.975000px;}
.y74{bottom:654.375000px;}
.y48{bottom:654.735000px;}
.y25{bottom:657.975000px;}
.y8{bottom:666.255000px;}
.y24{bottom:676.365000px;}
.y73{bottom:677.085000px;}
.y47{bottom:677.445000px;}
.y7{bottom:683.565000px;}
.y72{bottom:699.765000px;}
.y46{bottom:700.125000px;}
.y6{bottom:701.205000px;}
.y71{bottom:722.445000px;}
.y45{bottom:722.805000px;}
.y23{bottom:730.725000px;}
.y5{bottom:735.765000px;}
.y44{bottom:745.125000px;}
.y8b{bottom:750.525000px;}
.y43{bottom:767.850000px;}
.y22{bottom:771.810000px;}
.y93{bottom:773.250000px;}
.y4{bottom:788.370000px;}
.y42{bottom:790.530000px;}
.y1{bottom:822.210000px;}
.h12{height:19.918828px;}
.hd{height:20.832480px;}
.ha{height:28.218240px;}
.h11{height:28.305703px;}
.h10{height:30.636000px;}
.he{height:35.537760px;}
.hf{height:37.459714px;}
.h3{height:37.988640px;}
.h9{height:46.621440px;}
.h6{height:48.769097px;}
.hb{height:49.142821px;}
.h2{height:51.468480px;}
.h13{height:52.417969px;}
.hc{height:54.251999px;}
.h4{height:74.193120px;}
.h8{height:83.052000px;}
.h5{height:91.910880px;}
.h7{height:138.530736px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x30{left:63.755991px;}
.x34{left:68.435991px;}
.x31{left:69.875991px;}
.x3{left:84.995991px;}
.x9{left:86.075991px;}
.x8{left:88.595991px;}
.x6{left:90.755991px;}
.xd{left:92.555991px;}
.x53{left:94.391991px;}
.xe{left:97.991991px;}
.xa{left:99.791991px;}
.xf{left:100.871991px;}
.x7{left:102.311991px;}
.x10{left:105.191991px;}
.x1{left:106.271991px;}
.x13{left:110.231991px;}
.x59{left:118.871991px;}
.x36{left:126.071991px;}
.x22{left:127.511991px;}
.x17{left:128.951991px;}
.x25{left:132.911991px;}
.x6d{left:139.391991px;}
.x1b{left:141.911991px;}
.x4{left:143.711991px;}
.x18{left:153.074991px;}
.x19{left:157.424991px;}
.x46{left:160.304991px;}
.x1a{left:162.104991px;}
.x20{left:163.184991px;}
.x63{left:165.704991px;}
.x29{left:166.784981px;}
.x14{left:170.024991px;}
.x3e{left:173.984991px;}
.x2a{left:175.424991px;}
.x32{left:178.664991px;}
.x54{left:183.704991px;}
.x58{left:187.304991px;}
.x5a{left:192.344991px;}
.x41{left:197.744991px;}
.x24{left:204.944991px;}
.x4e{left:207.464981px;}
.x5f{left:208.544991px;}
.x26{left:210.704991px;}
.x67{left:212.144991px;}
.x4f{left:215.384991px;}
.x49{left:217.904991px;}
.x56{left:222.989991px;}
.x23{left:225.869991px;}
.x1f{left:230.189991px;}
.xb{left:239.549991px;}
.x16{left:241.349991px;}
.x21{left:249.989991px;}
.x3f{left:252.149991px;}
.x6e{left:256.109991px;}
.x27{left:257.189991px;}
.x4c{left:264.749991px;}
.x1c{left:268.349991px;}
.x11{left:278.429991px;}
.x68{left:285.659991px;}
.x60{left:292.859981px;}
.x50{left:295.739981px;}
.x2{left:297.179991px;}
.x61{left:300.059991px;}
.x4d{left:303.659991px;}
.x51{left:306.539991px;}
.x66{left:312.659991px;}
.x69{left:314.459991px;}
.x15{left:318.779991px;}
.x5e{left:323.099981px;}
.x42{left:331.379991px;}
.x2b{left:335.699981px;}
.x12{left:342.179991px;}
.x5{left:347.219991px;}
.x37{left:354.809991px;}
.x6a{left:366.329991px;}
.x1d{left:369.569981px;}
.xc{left:370.649991px;}
.x5b{left:373.889991px;}
.x1e{left:377.849991px;}
.x62{left:379.649991px;}
.x43{left:381.809991px;}
.x28{left:382.889991px;}
.x70{left:385.769991px;}
.x6b{left:390.449981px;}
.x6c{left:398.369991px;}
.x55{left:400.169991px;}
.x33{left:404.849991px;}
.x35{left:410.249991px;}
.x4a{left:413.534991px;}
.x3a{left:416.054991px;}
.x52{left:418.574991px;}
.x47{left:431.894991px;}
.x3b{left:434.414981px;}
.x44{left:436.214991px;}
.x39{left:438.734991px;}
.x3c{left:443.054991px;}
.x38{left:446.654991px;}
.x4b{left:447.734991px;}
.x64{left:453.854991px;}
.x57{left:459.614991px;}
.x40{left:467.174991px;}
.x65{left:469.334991px;}
.x2c{left:474.734981px;}
.x2d{left:482.684991px;}
.x71{left:484.844991px;}
.x48{left:493.124991px;}
.x5c{left:496.004981px;}
.x45{left:501.764991px;}
.x5d{left:504.284991px;}
.x6f{left:506.804991px;}
.x2e{left:511.844981px;}
.x3d{left:518.324991px;}
.x2f{left:519.404991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls1b{letter-spacing:-2.293333pt;}
.ls14{letter-spacing:-1.290667pt;}
.ls22{letter-spacing:-0.666667pt;}
.ls26{letter-spacing:-0.613333pt;}
.ls20{letter-spacing:-0.523733pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.400533pt;}
.ls24{letter-spacing:-0.326400pt;}
.ls25{letter-spacing:-0.291733pt;}
.ls1c{letter-spacing:-0.249600pt;}
.lsc{letter-spacing:-0.157333pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.122667pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.082133pt;}
.ls16{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.163733pt;}
.ls1f{letter-spacing:0.198400pt;}
.ls7{letter-spacing:0.339200pt;}
.ls3{letter-spacing:0.345600pt;}
.ls1a{letter-spacing:0.389333pt;}
.ls4{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.560000pt;}
.ls5{letter-spacing:0.579840pt;}
.ls9{letter-spacing:0.604160pt;}
.ls15{letter-spacing:0.632320pt;}
.lsb{letter-spacing:0.710827pt;}
.lsf{letter-spacing:1.120000pt;}
.ls28{letter-spacing:1.360640pt;}
.lsa{letter-spacing:1.363200pt;}
.ls17{letter-spacing:1.701333pt;}
.ls12{letter-spacing:2.688000pt;}
.ls18{letter-spacing:4.672000pt;}
.ls10{letter-spacing:10.368000pt;}
.ls13{letter-spacing:24.448000pt;}
.ls0{letter-spacing:753.013333pt;}
.ls27{letter-spacing:754.944000pt;}
.wse{word-spacing:-53.760000pt;}
.ws5{word-spacing:-25.500352pt;}
.wsf{word-spacing:-24.581333pt;}
.ws6{word-spacing:-24.192000pt;}
.ws12{word-spacing:-24.097067pt;}
.ws10{word-spacing:-21.898667pt;}
.ws0{word-spacing:-17.856000pt;}
.wsd{word-spacing:-17.824000pt;}
.ws8{word-spacing:-17.607386pt;}
.ws11{word-spacing:-16.902400pt;}
.wsb{word-spacing:-16.867733pt;}
.wsc{word-spacing:-16.786133pt;}
.ws7{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.546667pt;}
.ws13{word-spacing:-16.377600pt;}
.ws9{word-spacing:-16.303467pt;}
.ws4{word-spacing:-13.248000pt;}
.ws1{word-spacing:-10.874880pt;}
.ws2{word-spacing:-10.752213pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-50.920704pt;}
._b{margin-left:-42.475520pt;}
._10{margin-left:-34.032213pt;}
._12{margin-left:-30.533547pt;}
._a{margin-left:-28.578560pt;}
._13{margin-left:-25.816320pt;}
._2{margin-left:-24.527360pt;}
._11{margin-left:-21.460480pt;}
._c{margin-left:-18.202880pt;}
._14{margin-left:-16.545280pt;}
._7{margin-left:-11.920640pt;}
._6{margin-left:-10.977280pt;}
._16{margin-left:-10.075051pt;}
._8{margin-left:-8.811093pt;}
._1{margin-left:-7.118080pt;}
._5{margin-left:-5.488640pt;}
._0{margin-left:-3.859200pt;}
._3{margin-left:-2.830080pt;}
._4{margin-left:-1.886720pt;}
._e{margin-left:-0.901120pt;}
._d{width:0.973227pt;}
._f{width:2.155093pt;}
._9{width:3.133440pt;}
._17{width:4.023040pt;}
._18{width:5.899264pt;}
._1d{width:7.440640pt;}
._1b{width:8.439893pt;}
._1c{width:9.399467pt;}
._22{width:11.091200pt;}
._1a{width:12.299520pt;}
._19{width:14.036480pt;}
._29{width:15.272533pt;}
._2a{width:16.227840pt;}
._35{width:17.151573pt;}
._2d{width:18.264320pt;}
._34{width:19.793493pt;}
._21{width:20.933120pt;}
._3a{width:22.117120pt;}
._28{width:23.258027pt;}
._1e{width:25.110613pt;}
._25{width:26.190507pt;}
._24{width:27.828907pt;}
._44{width:28.887467pt;}
._23{width:30.922240pt;}
._3b{width:33.277440pt;}
._3e{width:35.139840pt;}
._2c{width:36.481280pt;}
._2b{width:37.422080pt;}
._3c{width:39.716267pt;}
._27{width:41.315840pt;}
._26{width:42.519467pt;}
._41{width:43.439360pt;}
._38{width:44.357120pt;}
._39{width:45.480533pt;}
._3f{width:46.373547pt;}
._3d{width:49.474560pt;}
._2e{width:51.299840pt;}
._36{width:52.524800pt;}
._2f{width:54.155928pt;}
._37{width:55.334918pt;}
._45{width:58.944000pt;}
._40{width:60.157440pt;}
._33{width:64.942080pt;}
._30{width:65.963947pt;}
._31{width:67.059627pt;}
._32{width:68.896388pt;}
._1f{width:71.037013pt;}
._20{width:72.199680pt;}
._43{width:133.401173pt;}
._42{width:141.102452pt;}
.fsb{font-size:21.760000pt;}
.fs10{font-size:24.320000pt;}
.fs8{font-size:29.440000pt;}
.fse{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fsd{font-size:39.127524pt;}
.fs1{font-size:39.680000pt;}
.fs7{font-size:48.640000pt;}
.fs9{font-size:51.270549pt;}
.fs0{font-size:53.760000pt;}
.fsa{font-size:56.667449pt;}
.fs4{font-size:61.440000pt;}
.fs11{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:106.240000pt;}
.fs5{font-size:160.128000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:28.800000pt;}
.y2{bottom:46.400000pt;}
.y41{bottom:67.552000pt;}
.y8a{bottom:79.712000pt;}
.y40{bottom:80.352000pt;}
.y3f{bottom:83.552000pt;}
.y69{bottom:93.152000pt;}
.y3e{bottom:96.032000pt;}
.y89{bottom:99.872000pt;}
.y68{bottom:105.952000pt;}
.y70{bottom:109.152000pt;}
.y3d{bottom:113.632000pt;}
.y67{bottom:118.752000pt;}
.y88{bottom:119.712000pt;}
.y9a{bottom:121.632000pt;}
.y98{bottom:121.952000pt;}
.y21{bottom:122.272000pt;}
.y66{bottom:131.584000pt;}
.y65{bottom:134.786667pt;}
.y20{bottom:137.986667pt;}
.y99{bottom:139.266667pt;}
.y87{bottom:139.906667pt;}
.y64{bottom:144.386667pt;}
.y6f{bottom:147.266667pt;}
.y3c{bottom:147.906667pt;}
.y1f{bottom:153.346667pt;}
.y63{bottom:157.186667pt;}
.y86{bottom:160.066667pt;}
.y6e{bottom:164.866667pt;}
.y3b{bottom:168.066667pt;}
.y1e{bottom:168.706667pt;}
.y62{bottom:169.986667pt;}
.y61{bottom:173.186667pt;}
.y85{bottom:180.226667pt;}
.y60{bottom:182.786667pt;}
.y1d{bottom:184.386667pt;}
.y92{bottom:185.346667pt;}
.y97{bottom:185.666667pt;}
.y5f{bottom:185.986667pt;}
.y3a{bottom:187.906667pt;}
.y91{bottom:195.586667pt;}
.y5e{bottom:198.146667pt;}
.y1c{bottom:199.746667pt;}
.y84{bottom:200.066667pt;}
.y6d{bottom:200.386667pt;}
.y96{bottom:203.266667pt;}
.y39{bottom:208.093333pt;}
.y90{bottom:208.413333pt;}
.y1b{bottom:215.133333pt;}
.y5d{bottom:215.773333pt;}
.y83{bottom:220.253333pt;}
.y6c{bottom:220.573333pt;}
.y8f{bottom:223.773333pt;}
.y38{bottom:228.253333pt;}
.y1a{bottom:230.813333pt;}
.y82{bottom:240.413333pt;}
.y6b{bottom:240.733333pt;}
.y8e{bottom:241.373333pt;}
.y95{bottom:245.533333pt;}
.y37{bottom:248.413333pt;}
.y5b{bottom:260.573333pt;}
.y19{bottom:261.853333pt;}
.y5c{bottom:265.373333pt;}
.y36{bottom:268.253333pt;}
.y81{bottom:280.413333pt;}
.y59{bottom:280.733333pt;}
.y5a{bottom:285.573333pt;}
.y35{bottom:288.453333pt;}
.y80{bottom:300.613333pt;}
.y58{bottom:300.933333pt;}
.y18{bottom:303.173333pt;}
.y34{bottom:308.613333pt;}
.y17{bottom:318.533333pt;}
.y7f{bottom:320.773333pt;}
.y57{bottom:321.093333pt;}
.y33{bottom:328.773333pt;}
.y16{bottom:334.213333pt;}
.y56{bottom:340.933333pt;}
.y8d{bottom:345.733333pt;}
.y32{bottom:348.613333pt;}
.y15{bottom:349.573333pt;}
.y7e{bottom:360.773333pt;}
.y55{bottom:361.093333pt;}
.y14{bottom:364.960000pt;}
.y31{bottom:368.800000pt;}
.y13{bottom:380.640000pt;}
.y7d{bottom:380.960000pt;}
.y54{bottom:381.280000pt;}
.y30{bottom:388.960000pt;}
.y12{bottom:396.000000pt;}
.y7c{bottom:401.120000pt;}
.y53{bottom:401.440000pt;}
.y2f{bottom:409.120000pt;}
.y11{bottom:411.360000pt;}
.y51{bottom:421.280000pt;}
.y52{bottom:426.080000pt;}
.y2e{bottom:428.960000pt;}
.y7b{bottom:441.120000pt;}
.y50{bottom:441.440000pt;}
.y10{bottom:442.426667pt;}
.y2d{bottom:449.146667pt;}
.y7a{bottom:461.306667pt;}
.y4f{bottom:461.626667pt;}
.y94{bottom:466.426667pt;}
.y2c{bottom:469.306667pt;}
.y79{bottom:481.466667pt;}
.y4e{bottom:481.786667pt;}
.yf{bottom:484.026667pt;}
.y2b{bottom:489.466667pt;}
.ye{bottom:499.386667pt;}
.y78{bottom:501.306667pt;}
.y4d{bottom:501.626667pt;}
.y2a{bottom:509.306667pt;}
.yd{bottom:514.746667pt;}
.y77{bottom:521.506667pt;}
.y4b{bottom:521.826667pt;}
.y4c{bottom:526.626667pt;}
.yc{bottom:530.466667pt;}
.y28{bottom:535.586667pt;}
.y29{bottom:539.746667pt;}
.y76{bottom:541.666667pt;}
.y4a{bottom:541.986667pt;}
.yb{bottom:545.826667pt;}
.y6a{bottom:546.786667pt;}
.y27{bottom:551.906667pt;}
.ya{bottom:561.186667pt;}
.y75{bottom:561.826667pt;}
.y49{bottom:562.146667pt;}
.y8c{bottom:566.946667pt;}
.y26{bottom:568.226667pt;}
.y9{bottom:576.866667pt;}
.y74{bottom:581.666667pt;}
.y48{bottom:581.986667pt;}
.y25{bottom:584.866667pt;}
.y8{bottom:592.226667pt;}
.y24{bottom:601.213333pt;}
.y73{bottom:601.853333pt;}
.y47{bottom:602.173333pt;}
.y7{bottom:607.613333pt;}
.y72{bottom:622.013333pt;}
.y46{bottom:622.333333pt;}
.y6{bottom:623.293333pt;}
.y71{bottom:642.173333pt;}
.y45{bottom:642.493333pt;}
.y23{bottom:649.533333pt;}
.y5{bottom:654.013333pt;}
.y44{bottom:662.333333pt;}
.y8b{bottom:667.133333pt;}
.y43{bottom:682.533333pt;}
.y22{bottom:686.053333pt;}
.y93{bottom:687.333333pt;}
.y4{bottom:700.773333pt;}
.y42{bottom:702.693333pt;}
.y1{bottom:730.853333pt;}
.h12{height:17.705625pt;}
.hd{height:18.517760pt;}
.ha{height:25.082880pt;}
.h11{height:25.160625pt;}
.h10{height:27.232000pt;}
.he{height:31.589120pt;}
.hf{height:33.297523pt;}
.h3{height:33.767680pt;}
.h9{height:41.441280pt;}
.h6{height:43.350309pt;}
.hb{height:43.682508pt;}
.h2{height:45.749760pt;}
.h13{height:46.593750pt;}
.hc{height:48.223999pt;}
.h4{height:65.949440pt;}
.h8{height:73.824000pt;}
.h5{height:81.698560pt;}
.h7{height:123.138432pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x30{left:56.671992pt;}
.x34{left:60.831992pt;}
.x31{left:62.111992pt;}
.x3{left:75.551992pt;}
.x9{left:76.511992pt;}
.x8{left:78.751992pt;}
.x6{left:80.671992pt;}
.xd{left:82.271992pt;}
.x53{left:83.903992pt;}
.xe{left:87.103992pt;}
.xa{left:88.703992pt;}
.xf{left:89.663992pt;}
.x7{left:90.943992pt;}
.x10{left:93.503992pt;}
.x1{left:94.463992pt;}
.x13{left:97.983992pt;}
.x59{left:105.663992pt;}
.x36{left:112.063992pt;}
.x22{left:113.343992pt;}
.x17{left:114.623992pt;}
.x25{left:118.143992pt;}
.x6d{left:123.903992pt;}
.x1b{left:126.143992pt;}
.x4{left:127.743992pt;}
.x18{left:136.066658pt;}
.x19{left:139.933325pt;}
.x46{left:142.493325pt;}
.x1a{left:144.093325pt;}
.x20{left:145.053325pt;}
.x63{left:147.293325pt;}
.x29{left:148.253317pt;}
.x14{left:151.133325pt;}
.x3e{left:154.653325pt;}
.x2a{left:155.933325pt;}
.x32{left:158.813325pt;}
.x54{left:163.293325pt;}
.x58{left:166.493325pt;}
.x5a{left:170.973325pt;}
.x41{left:175.773325pt;}
.x24{left:182.173325pt;}
.x4e{left:184.413317pt;}
.x5f{left:185.373325pt;}
.x26{left:187.293325pt;}
.x67{left:188.573325pt;}
.x4f{left:191.453325pt;}
.x49{left:193.693325pt;}
.x56{left:198.213325pt;}
.x23{left:200.773325pt;}
.x1f{left:204.613325pt;}
.xb{left:212.933325pt;}
.x16{left:214.533325pt;}
.x21{left:222.213325pt;}
.x3f{left:224.133325pt;}
.x6e{left:227.653325pt;}
.x27{left:228.613325pt;}
.x4c{left:235.333325pt;}
.x1c{left:238.533325pt;}
.x11{left:247.493325pt;}
.x68{left:253.919992pt;}
.x60{left:260.319983pt;}
.x50{left:262.879983pt;}
.x2{left:264.159992pt;}
.x61{left:266.719992pt;}
.x4d{left:269.919992pt;}
.x51{left:272.479992pt;}
.x66{left:277.919992pt;}
.x69{left:279.519992pt;}
.x15{left:283.359992pt;}
.x5e{left:287.199983pt;}
.x42{left:294.559992pt;}
.x2b{left:298.399983pt;}
.x12{left:304.159992pt;}
.x5{left:308.639992pt;}
.x37{left:315.386658pt;}
.x6a{left:325.626658pt;}
.x1d{left:328.506650pt;}
.xc{left:329.466658pt;}
.x5b{left:332.346658pt;}
.x1e{left:335.866658pt;}
.x62{left:337.466658pt;}
.x43{left:339.386658pt;}
.x28{left:340.346658pt;}
.x70{left:342.906658pt;}
.x6b{left:347.066650pt;}
.x6c{left:354.106658pt;}
.x55{left:355.706658pt;}
.x33{left:359.866658pt;}
.x35{left:364.666658pt;}
.x4a{left:367.586658pt;}
.x3a{left:369.826658pt;}
.x52{left:372.066658pt;}
.x47{left:383.906658pt;}
.x3b{left:386.146650pt;}
.x44{left:387.746658pt;}
.x39{left:389.986658pt;}
.x3c{left:393.826658pt;}
.x38{left:397.026658pt;}
.x4b{left:397.986658pt;}
.x64{left:403.426658pt;}
.x57{left:408.546658pt;}
.x40{left:415.266658pt;}
.x65{left:417.186658pt;}
.x2c{left:421.986650pt;}
.x2d{left:429.053325pt;}
.x71{left:430.973325pt;}
.x48{left:438.333325pt;}
.x5c{left:440.893317pt;}
.x45{left:446.013325pt;}
.x5d{left:448.253325pt;}
.x6f{left:450.493325pt;}
.x2e{left:454.973317pt;}
.x3d{left:460.733325pt;}
.x2f{left:461.693325pt;}
}

