
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_45db4c6417aa.woff")format("woff");}.ff1{font-family:ff1;line-height:1.070312;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("fonts/font_0001_768484967e01.woff")format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_69726495c640.woff")format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-28.511998px;}
.v3{vertical-align:-23.760001px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.135649px;}
.v1{vertical-align:28.511998px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:16.668929px;}
.ls3{letter-spacing:21.168929px;}
.ls1{letter-spacing:25.668929px;}
.ls2{letter-spacing:34.668929px;}
.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;}
}
.ws2b{word-spacing:-23.351999px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.348000px;}
.ws45{word-spacing:-16.680000px;}
.ws44{word-spacing:-15.012000px;}
.ws0{word-spacing:-12.009600px;}
.ws21{word-spacing:-0.048425px;}
.ws3b{word-spacing:-0.048288px;}
.ws4{word-spacing:-0.048219px;}
.ws3c{word-spacing:-0.048151px;}
.ws4d{word-spacing:-0.047617px;}
.ws41{word-spacing:-0.047479px;}
.wsf{word-spacing:-0.040125px;}
.wsc{word-spacing:-0.040057px;}
.ws31{word-spacing:-0.039988px;}
.ws4c{word-spacing:-0.039201px;}
.ws42{word-spacing:-0.020413px;}
.ws11{word-spacing:0.000000px;}
.ws3e{word-spacing:3.651761px;}
.ws4f{word-spacing:4.451643px;}
.wsd{word-spacing:4.451712px;}
.ws10{word-spacing:4.451780px;}
.ws26{word-spacing:4.451849px;}
.ws3{word-spacing:4.452452px;}
.ws50{word-spacing:4.459034px;}
.ws47{word-spacing:4.459737px;}
.ws1a{word-spacing:4.459806px;}
.ws8{word-spacing:4.459873px;}
.ws9{word-spacing:4.459874px;}
.ws3f{word-spacing:4.459875px;}
.ws22{word-spacing:4.459943px;}
.wsa{word-spacing:4.460796px;}
.ws4a{word-spacing:4.460864px;}
.ws33{word-spacing:4.466890px;}
.ws36{word-spacing:4.479586px;}
.ws2c{word-spacing:8.936549px;}
.ws39{word-spacing:8.936686px;}
.ws38{word-spacing:8.936755px;}
.ws25{word-spacing:8.944849px;}
.ws1c{word-spacing:8.945736px;}
.ws2f{word-spacing:8.951643px;}
.ws49{word-spacing:8.951712px;}
.ws18{word-spacing:8.951781px;}
.ws40{word-spacing:8.951849px;}
.ws46{word-spacing:8.959737px;}
.ws12{word-spacing:8.959806px;}
.ws5{word-spacing:8.959875px;}
.ws30{word-spacing:8.960796px;}
.ws32{word-spacing:8.976109px;}
.ws4e{word-spacing:13.437357px;}
.ws28{word-spacing:13.451781px;}
.ws55{word-spacing:13.459737px;}
.ws2e{word-spacing:13.459806px;}
.ws15{word-spacing:13.459875px;}
.ws20{word-spacing:13.459881px;}
.ws3d{word-spacing:13.459943px;}
.ws43{word-spacing:13.476109px;}
.ws1f{word-spacing:17.928343px;}
.ws2d{word-spacing:17.936686px;}
.ws37{word-spacing:17.937289px;}
.ws1e{word-spacing:17.937357px;}
.ws7{word-spacing:17.951712px;}
.ws27{word-spacing:17.951780px;}
.ws16{word-spacing:17.952452px;}
.ws1b{word-spacing:17.959806px;}
.ws14{word-spacing:17.959874px;}
.ws51{word-spacing:17.959943px;}
.ws34{word-spacing:17.966890px;}
.ws4b{word-spacing:22.451781px;}
.ws6{word-spacing:22.459875px;}
.ws35{word-spacing:22.466890px;}
.ws48{word-spacing:26.951781px;}
.ws17{word-spacing:26.959805px;}
.ws19{word-spacing:26.959875px;}
.ws3a{word-spacing:27.275672px;}
.wse{word-spacing:31.459875px;}
.ws2a{word-spacing:35.945528px;}
.ws54{word-spacing:35.959806px;}
.ws53{word-spacing:35.960795px;}
.ws52{word-spacing:40.451849px;}
.ws13{word-spacing:40.459875px;}
.ws29{word-spacing:44.951780px;}
.ws24{word-spacing:49.436617px;}
.ws23{word-spacing:53.959875px;}
.wsb{word-spacing:58.459875px;}
.ws1d{word-spacing:112.451781px;}
._0{margin-left:-10.627313px;}
._d{margin-left:-7.878297px;}
._14{margin-left:-6.662086px;}
._7{margin-left:-5.500586px;}
._1{margin-left:-3.930469px;}
._4{margin-left:-2.670598px;}
._3{margin-left:-1.222709px;}
._2a{width:2.809198px;}
._2{width:4.074784px;}
._2d{width:5.216667px;}
._21{width:16.413594px;}
._5{width:17.800948px;}
._6{width:18.933587px;}
._1f{width:20.997083px;}
._8{width:22.634965px;}
._1d{width:23.641979px;}
._23{width:25.537724px;}
._f{width:27.117778px;}
._29{width:28.198457px;}
._22{width:29.957269px;}
._9{width:31.792531px;}
._2b{width:32.878879px;}
._28{width:34.588964px;}
._b{width:36.160245px;}
._1e{width:37.443476px;}
._c{width:40.730060px;}
._20{width:42.388889px;}
._11{width:44.370532px;}
._e{width:45.528008px;}
._16{width:49.688170px;}
._25{width:52.099120px;}
._2c{width:53.359651px;}
._13{width:54.497887px;}
._1a{width:58.463071px;}
._1b{width:59.777768px;}
._15{width:63.285780px;}
._1c{width:64.468001px;}
._19{width:66.959603px;}
._27{width:68.135999px;}
._10{width:71.559438px;}
._17{width:76.521156px;}
._24{width:78.753252px;}
._a{width:80.692652px;}
._12{width:90.749579px;}
._18{width:135.251894px;}
._26{width:153.290604px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(56,118,29);}
.fc2{color:rgb(74,134,232);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:39.600000px;}
.fs2{font-size:43.200000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.999999px;}
.fs3{font-size:66.000001px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs4{font-size:119.999997px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:6.164999px;}
.y99{bottom:6.975000px;}
.y92{bottom:7.785000px;}
.y94{bottom:21.914999px;}
.y98{bottom:24.975000px;}
.y9c{bottom:25.785000px;}
.yac{bottom:28.035000px;}
.y97{bottom:43.785000px;}
.y23{bottom:44.171719px;}
.y31{bottom:44.171902px;}
.y60{bottom:64.152246px;}
.yee{bottom:68.257412px;}
.yc6{bottom:70.092246px;}
.yc2{bottom:81.757412px;}
.y5f{bottom:82.152246px;}
.yed{bottom:88.507412px;}
.yc1{bottom:102.007412px;}
.y5e{bottom:106.092246px;}
.yec{bottom:108.757412px;}
.y66{bottom:118.152246px;}
.yc0{bottom:122.257412px;}
.yc5{bottom:126.757412px;}
.yeb{bottom:129.007412px;}
.y65{bottom:136.152246px;}
.y90{bottom:142.092246px;}
.ybf{bottom:142.507412px;}
.yc4{bottom:147.007412px;}
.yea{bottom:149.257412px;}
.y64{bottom:154.152246px;}
.ybe{bottom:162.757412px;}
.yc3{bottom:167.257412px;}
.ye9{bottom:169.507412px;}
.y63{bottom:172.152246px;}
.y8f{bottom:187.507412px;}
.ye8{bottom:189.757412px;}
.y62{bottom:190.152246px;}
.y30{bottom:194.257412px;}
.ybd{bottom:197.632412px;}
.y8e{bottom:207.757412px;}
.ye7{bottom:210.007412px;}
.y61{bottom:214.092246px;}
.y2f{bottom:214.507412px;}
.ybc{bottom:217.882412px;}
.y8d{bottom:228.007412px;}
.y2e{bottom:234.757412px;}
.ybb{bottom:238.132412px;}
.ye6{bottom:244.882412px;}
.y22{bottom:246.007412px;}
.y8c{bottom:248.257412px;}
.y5d{bottom:250.507412px;}
.y2d{bottom:255.007412px;}
.yba{bottom:258.382412px;}
.ye5{bottom:265.132412px;}
.y21{bottom:266.257412px;}
.y8b{bottom:268.507412px;}
.y5c{bottom:270.757412px;}
.y2c{bottom:275.257412px;}
.yb9{bottom:278.632412px;}
.ye4{bottom:285.382412px;}
.y20{bottom:286.507412px;}
.y8a{bottom:288.757412px;}
.y5b{bottom:291.007412px;}
.y2b{bottom:295.507412px;}
.yb8{bottom:298.882412px;}
.ye3{bottom:305.632412px;}
.y1f{bottom:306.757412px;}
.y89{bottom:309.007412px;}
.y5a{bottom:311.257412px;}
.y2a{bottom:315.757412px;}
.yb7{bottom:319.132412px;}
.ye2{bottom:325.507411px;}
.y1e{bottom:327.007412px;}
.y88{bottom:329.257412px;}
.y59{bottom:331.507412px;}
.y29{bottom:335.632411px;}
.yb6{bottom:339.382412px;}
.y1d{bottom:347.257412px;}
.y87{bottom:349.507412px;}
.y58{bottom:351.757412px;}
.yb5{bottom:359.632412px;}
.ye1{bottom:363.547412px;}
.y1c{bottom:367.132411px;}
.y86{bottom:369.757412px;}
.y57{bottom:372.007412px;}
.y28{bottom:373.297411px;}
.yb4{bottom:379.882412px;}
.y85{bottom:390.007412px;}
.y56{bottom:392.257412px;}
.ye0{bottom:399.172411px;}
.y1b{bottom:404.797411px;}
.y84{bottom:410.257412px;}
.y55{bottom:412.507412px;}
.yb3{bottom:414.757412px;}
.y83{bottom:430.507412px;}
.y27{bottom:436.132412px;}
.y54{bottom:448.687412px;}
.yb2{bottom:449.632412px;}
.y82{bottom:450.757412px;}
.y26{bottom:456.382412px;}
.yb1{bottom:469.882412px;}
.y53{bottom:473.812413px;}
.y25{bottom:476.632412px;}
.y81{bottom:485.632412px;}
.yb0{bottom:486.847412px;}
.y24{bottom:496.882412px;}
.y1a{bottom:502.507412px;}
.y7f{bottom:505.882412px;}
.y80{bottom:512.416324px;}
.yaf{bottom:514.972412px;}
.ydf{bottom:517.132412px;}
.y52{bottom:519.382412px;}
.y19{bottom:522.757412px;}
.y7e{bottom:526.132412px;}
.yde{bottom:537.382412px;}
.y51{bottom:539.632412px;}
.y18{bottom:543.007412px;}
.yae{bottom:543.097412px;}
.y7d{bottom:546.007411px;}
.y50{bottom:559.882412px;}
.y17{bottom:563.257412px;}
.yab{bottom:571.222412px;}
.ydd{bottom:572.257412px;}
.y4f{bottom:580.132412px;}
.y7c{bottom:583.672413px;}
.yad{bottom:591.472412px;}
.ydc{bottom:592.507412px;}
.y16{bottom:598.132412px;}
.y4e{bottom:600.382412px;}
.yff{bottom:603.758145px;}
.ydb{bottom:612.757412px;}
.y15{bottom:618.382412px;}
.yaa{bottom:619.597412px;}
.y4d{bottom:620.632412px;}
.yfe{bottom:624.008145px;}
.ya9{bottom:625.222412px;}
.yda{bottom:633.007412px;}
.y7b{bottom:637.507412px;}
.y14{bottom:638.632412px;}
.y4c{bottom:640.882412px;}
.yfd{bottom:644.258145px;}
.yd9{bottom:653.257412px;}
.y7a{bottom:657.757412px;}
.y13{bottom:658.882412px;}
.y4b{bottom:661.132412px;}
.yfc{bottom:664.508145px;}
.yd8{bottom:673.507412px;}
.y79{bottom:678.007412px;}
.y12{bottom:679.132412px;}
.y4a{bottom:681.382412px;}
.yfb{bottom:684.758145px;}
.yd7{bottom:693.757412px;}
.y78{bottom:698.257412px;}
.y11{bottom:699.382412px;}
.y49{bottom:701.632412px;}
.yfa{bottom:705.008145px;}
.yd6{bottom:714.007412px;}
.ya8{bottom:715.222412px;}
.y77{bottom:718.507412px;}
.y10{bottom:719.632412px;}
.y48{bottom:721.882412px;}
.yf9{bottom:725.258145px;}
.yd5{bottom:734.257412px;}
.y76{bottom:738.757412px;}
.yf{bottom:739.882412px;}
.yf8{bottom:745.508145px;}
.yd4{bottom:754.507412px;}
.y47{bottom:756.757412px;}
.y75{bottom:759.007412px;}
.ye{bottom:759.757411px;}
.yf7{bottom:765.758145px;}
.ya6{bottom:769.222412px;}
.yd3{bottom:774.757412px;}
.y46{bottom:777.007412px;}
.y74{bottom:779.257412px;}
.yf6{bottom:786.008145px;}
.yd2{bottom:795.007412px;}
.y45{bottom:797.257412px;}
.yd{bottom:797.422411px;}
.y73{bottom:799.507412px;}
.ya7{bottom:805.222412px;}
.yf5{bottom:806.258145px;}
.yd1{bottom:815.257412px;}
.y44{bottom:817.507412px;}
.y72{bottom:819.757412px;}
.yf4{bottom:826.508145px;}
.ya4{bottom:833.347412px;}
.yd0{bottom:835.507412px;}
.y43{bottom:837.757412px;}
.y71{bottom:840.007412px;}
.yf3{bottom:846.758145px;}
.ycf{bottom:855.757412px;}
.y41{bottom:858.007412px;}
.yc{bottom:863.632412px;}
.y42{bottom:864.541324px;}
.yf2{bottom:867.008145px;}
.ya5{bottom:869.347412px;}
.yce{bottom:876.007412px;}
.y70{bottom:876.187412px;}
.y40{bottom:878.257412px;}
.yf1{bottom:887.258145px;}
.yb{bottom:892.882435px;}
.ycd{bottom:896.257412px;}
.ya2{bottom:897.472412px;}
.y3f{bottom:898.507412px;}
.yf0{bottom:906.758145px;}
.y6f{bottom:915.382412px;}
.ya{bottom:915.382435px;}
.ya3{bottom:915.472412px;}
.ycc{bottom:916.507412px;}
.y3e{bottom:918.757412px;}
.y6e{bottom:935.632412px;}
.ycb{bottom:936.382411px;}
.ya0{bottom:943.597412px;}
.y9{bottom:944.632435px;}
.yef{bottom:951.922412px;}
.y3d{bottom:954.937412px;}
.y6d{bottom:955.882412px;}
.ya1{bottom:961.597412px;}
.y8{bottom:973.882435px;}
.yca{bottom:974.047410px;}
.y6c{bottom:976.132412px;}
.y3c{bottom:980.437411px;}
.y9e{bottom:989.722412px;}
.y6b{bottom:996.382412px;}
.y7{bottom:1013.320435px;}
.y3b{bottom:1025.632412px;}
.y9f{bottom:1025.722411px;}
.y6{bottom:1030.942436px;}
.y6a{bottom:1031.257412px;}
.y39{bottom:1045.882412px;}
.y69{bottom:1051.507412px;}
.y3a{bottom:1052.416325px;}
.y9b{bottom:1053.847411px;}
.y5{bottom:1062.820435px;}
.y38{bottom:1066.132412px;}
.y68{bottom:1071.757412px;}
.y9d{bottom:1071.847411px;}
.y37{bottom:1086.382412px;}
.y4{bottom:1089.442436px;}
.y67{bottom:1092.007412px;}
.y96{bottom:1099.972412px;}
.y36{bottom:1106.632412px;}
.yc9{bottom:1112.257412px;}
.y3{bottom:1114.192447px;}
.y35{bottom:1126.882412px;}
.yc8{bottom:1132.507412px;}
.y9a{bottom:1135.972412px;}
.y2{bottom:1138.942447px;}
.y34{bottom:1147.132412px;}
.yc7{bottom:1152.757412px;}
.y93{bottom:1164.097412px;}
.y33{bottom:1167.382412px;}
.y1{bottom:1168.912441px;}
.y91{bottom:1169.722412px;}
.y32{bottom:1187.632412px;}
.hf{height:27.000000px;}
.hc{height:30.955078px;}
.ha{height:34.050586px;}
.h3{height:37.146094px;}
.h10{height:38.250000px;}
.h11{height:39.313477px;}
.h13{height:45.000000px;}
.h14{height:47.250000px;}
.h8{height:48.049806px;}
.hd{height:51.591796px;}
.h5{height:56.750978px;}
.h7{height:60.011719px;}
.h9{height:60.011902px;}
.he{height:60.186234px;}
.h15{height:60.186236px;}
.h4{height:61.910156px;}
.h12{height:63.000000px;}
.h2{height:65.658091px;}
.hb{height:72.228513px;}
.h6{height:103.183591px;}
.h1{height:123.820313px;}
.h0{height:1263.000000px;}
.w3{width:104.625000px;}
.w2{width:624.375000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:6.750000px;}
.x3{left:85.315304px;}
.x2{left:110.310805px;}
.xc{left:112.039375px;}
.x12{left:117.664375px;}
.x1{left:122.676424px;}
.xd{left:139.039375px;}
.x9{left:141.862747px;}
.x5{left:180.851426px;}
.x11{left:212.228359px;}
.xe{left:215.432625px;}
.x7{left:349.443232px;}
.x6{left:356.267733px;}
.x4{left:404.431984px;}
.xa{left:414.562820px;}
.xb{left:632.484146px;}
.xf{left:711.664398px;}
.x8{left:798.704041px;}
@media print{
.v2{vertical-align:-25.343998pt;}
.v3{vertical-align:-21.120001pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.231688pt;}
.v1{vertical-align:25.343998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:14.816826pt;}
.ls3{letter-spacing:18.816826pt;}
.ls1{letter-spacing:22.816826pt;}
.ls2{letter-spacing:30.816826pt;}
.ws2b{word-spacing:-20.757333pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.309334pt;}
.ws45{word-spacing:-14.826666pt;}
.ws44{word-spacing:-13.344000pt;}
.ws0{word-spacing:-10.675200pt;}
.ws21{word-spacing:-0.043045pt;}
.ws3b{word-spacing:-0.042923pt;}
.ws4{word-spacing:-0.042862pt;}
.ws3c{word-spacing:-0.042801pt;}
.ws4d{word-spacing:-0.042326pt;}
.ws41{word-spacing:-0.042204pt;}
.wsf{word-spacing:-0.035667pt;}
.wsc{word-spacing:-0.035606pt;}
.ws31{word-spacing:-0.035545pt;}
.ws4c{word-spacing:-0.034845pt;}
.ws42{word-spacing:-0.018145pt;}
.ws11{word-spacing:0.000000pt;}
.ws3e{word-spacing:3.246010pt;}
.ws4f{word-spacing:3.957016pt;}
.wsd{word-spacing:3.957077pt;}
.ws10{word-spacing:3.957138pt;}
.ws26{word-spacing:3.957199pt;}
.ws3{word-spacing:3.957735pt;}
.ws50{word-spacing:3.963586pt;}
.ws47{word-spacing:3.964211pt;}
.ws1a{word-spacing:3.964272pt;}
.ws8{word-spacing:3.964331pt;}
.ws9{word-spacing:3.964333pt;}
.ws3f{word-spacing:3.964334pt;}
.ws22{word-spacing:3.964394pt;}
.wsa{word-spacing:3.965152pt;}
.ws4a{word-spacing:3.965213pt;}
.ws33{word-spacing:3.970569pt;}
.ws36{word-spacing:3.981855pt;}
.ws2c{word-spacing:7.943599pt;}
.ws39{word-spacing:7.943721pt;}
.ws38{word-spacing:7.943782pt;}
.ws25{word-spacing:7.950977pt;}
.ws1c{word-spacing:7.951765pt;}
.ws2f{word-spacing:7.957016pt;}
.ws49{word-spacing:7.957077pt;}
.ws18{word-spacing:7.957138pt;}
.ws40{word-spacing:7.957199pt;}
.ws46{word-spacing:7.964211pt;}
.ws12{word-spacing:7.964272pt;}
.ws5{word-spacing:7.964333pt;}
.ws30{word-spacing:7.965152pt;}
.ws32{word-spacing:7.978764pt;}
.ws4e{word-spacing:11.944318pt;}
.ws28{word-spacing:11.957138pt;}
.ws55{word-spacing:11.964211pt;}
.ws2e{word-spacing:11.964272pt;}
.ws15{word-spacing:11.964333pt;}
.ws20{word-spacing:11.964338pt;}
.ws3d{word-spacing:11.964394pt;}
.ws43{word-spacing:11.978764pt;}
.ws1f{word-spacing:15.936305pt;}
.ws2d{word-spacing:15.943721pt;}
.ws37{word-spacing:15.944257pt;}
.ws1e{word-spacing:15.944318pt;}
.ws7{word-spacing:15.957077pt;}
.ws27{word-spacing:15.957138pt;}
.ws16{word-spacing:15.957735pt;}
.ws1b{word-spacing:15.964272pt;}
.ws14{word-spacing:15.964333pt;}
.ws51{word-spacing:15.964394pt;}
.ws34{word-spacing:15.970569pt;}
.ws4b{word-spacing:19.957138pt;}
.ws6{word-spacing:19.964333pt;}
.ws35{word-spacing:19.970569pt;}
.ws48{word-spacing:23.957138pt;}
.ws17{word-spacing:23.964272pt;}
.ws19{word-spacing:23.964333pt;}
.ws3a{word-spacing:24.245041pt;}
.wse{word-spacing:27.964333pt;}
.ws2a{word-spacing:31.951580pt;}
.ws54{word-spacing:31.964272pt;}
.ws53{word-spacing:31.965152pt;}
.ws52{word-spacing:35.957199pt;}
.ws13{word-spacing:35.964333pt;}
.ws29{word-spacing:39.957138pt;}
.ws24{word-spacing:43.943660pt;}
.ws23{word-spacing:47.964333pt;}
.wsb{word-spacing:51.964333pt;}
.ws1d{word-spacing:99.957138pt;}
._0{margin-left:-9.446500pt;}
._d{margin-left:-7.002930pt;}
._14{margin-left:-5.921854pt;}
._7{margin-left:-4.889410pt;}
._1{margin-left:-3.493750pt;}
._4{margin-left:-2.373865pt;}
._3{margin-left:-1.086853pt;}
._2a{width:2.497065pt;}
._2{width:3.622031pt;}
._2d{width:4.637038pt;}
._21{width:14.589861pt;}
._5{width:15.823065pt;}
._6{width:16.829855pt;}
._1f{width:18.664074pt;}
._8{width:20.119968pt;}
._1d{width:21.015093pt;}
._23{width:22.700199pt;}
._f{width:24.104691pt;}
._29{width:25.065295pt;}
._22{width:26.628684pt;}
._9{width:28.260027pt;}
._2b{width:29.225670pt;}
._28{width:30.745745pt;}
._b{width:32.142440pt;}
._1e{width:33.283089pt;}
._c{width:36.204498pt;}
._20{width:37.679013pt;}
._11{width:39.440473pt;}
._e{width:40.469340pt;}
._16{width:44.167262pt;}
._25{width:46.310329pt;}
._2c{width:47.430801pt;}
._13{width:48.442566pt;}
._1a{width:51.967174pt;}
._1b{width:53.135794pt;}
._15{width:56.254026pt;}
._1c{width:57.304890pt;}
._19{width:59.519647pt;}
._27{width:60.565333pt;}
._10{width:63.608389pt;}
._17{width:68.018805pt;}
._24{width:70.002891pt;}
._a{width:71.726802pt;}
._12{width:80.666292pt;}
._18{width:120.223906pt;}
._26{width:136.258314pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:35.200000pt;}
.fs2{font-size:38.400000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.333332pt;}
.fs3{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs4{font-size:106.666664pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:5.479999pt;}
.y99{bottom:6.200000pt;}
.y92{bottom:6.920000pt;}
.y94{bottom:19.479999pt;}
.y98{bottom:22.200000pt;}
.y9c{bottom:22.920000pt;}
.yac{bottom:24.920000pt;}
.y97{bottom:38.920000pt;}
.y23{bottom:39.263750pt;}
.y31{bottom:39.263913pt;}
.y60{bottom:57.024219pt;}
.yee{bottom:60.673255pt;}
.yc6{bottom:62.304219pt;}
.yc2{bottom:72.673255pt;}
.y5f{bottom:73.024219pt;}
.yed{bottom:78.673255pt;}
.yc1{bottom:90.673255pt;}
.y5e{bottom:94.304219pt;}
.yec{bottom:96.673255pt;}
.y66{bottom:105.024219pt;}
.yc0{bottom:108.673255pt;}
.yc5{bottom:112.673255pt;}
.yeb{bottom:114.673255pt;}
.y65{bottom:121.024219pt;}
.y90{bottom:126.304219pt;}
.ybf{bottom:126.673255pt;}
.yc4{bottom:130.673255pt;}
.yea{bottom:132.673255pt;}
.y64{bottom:137.024219pt;}
.ybe{bottom:144.673255pt;}
.yc3{bottom:148.673255pt;}
.ye9{bottom:150.673255pt;}
.y63{bottom:153.024219pt;}
.y8f{bottom:166.673255pt;}
.ye8{bottom:168.673255pt;}
.y62{bottom:169.024219pt;}
.y30{bottom:172.673255pt;}
.ybd{bottom:175.673255pt;}
.y8e{bottom:184.673255pt;}
.ye7{bottom:186.673255pt;}
.y61{bottom:190.304219pt;}
.y2f{bottom:190.673255pt;}
.ybc{bottom:193.673255pt;}
.y8d{bottom:202.673255pt;}
.y2e{bottom:208.673255pt;}
.ybb{bottom:211.673255pt;}
.ye6{bottom:217.673255pt;}
.y22{bottom:218.673255pt;}
.y8c{bottom:220.673255pt;}
.y5d{bottom:222.673255pt;}
.y2d{bottom:226.673255pt;}
.yba{bottom:229.673255pt;}
.ye5{bottom:235.673255pt;}
.y21{bottom:236.673255pt;}
.y8b{bottom:238.673255pt;}
.y5c{bottom:240.673255pt;}
.y2c{bottom:244.673255pt;}
.yb9{bottom:247.673255pt;}
.ye4{bottom:253.673255pt;}
.y20{bottom:254.673255pt;}
.y8a{bottom:256.673255pt;}
.y5b{bottom:258.673255pt;}
.y2b{bottom:262.673255pt;}
.yb8{bottom:265.673255pt;}
.ye3{bottom:271.673255pt;}
.y1f{bottom:272.673255pt;}
.y89{bottom:274.673255pt;}
.y5a{bottom:276.673255pt;}
.y2a{bottom:280.673255pt;}
.yb7{bottom:283.673255pt;}
.ye2{bottom:289.339921pt;}
.y1e{bottom:290.673255pt;}
.y88{bottom:292.673255pt;}
.y59{bottom:294.673255pt;}
.y29{bottom:298.339921pt;}
.yb6{bottom:301.673255pt;}
.y1d{bottom:308.673255pt;}
.y87{bottom:310.673255pt;}
.y58{bottom:312.673255pt;}
.yb5{bottom:319.673255pt;}
.ye1{bottom:323.153255pt;}
.y1c{bottom:326.339921pt;}
.y86{bottom:328.673255pt;}
.y57{bottom:330.673255pt;}
.y28{bottom:331.819921pt;}
.yb4{bottom:337.673255pt;}
.y85{bottom:346.673255pt;}
.y56{bottom:348.673255pt;}
.ye0{bottom:354.819921pt;}
.y1b{bottom:359.819921pt;}
.y84{bottom:364.673255pt;}
.y55{bottom:366.673255pt;}
.yb3{bottom:368.673255pt;}
.y83{bottom:382.673255pt;}
.y27{bottom:387.673255pt;}
.y54{bottom:398.833255pt;}
.yb2{bottom:399.673255pt;}
.y82{bottom:400.673255pt;}
.y26{bottom:405.673255pt;}
.yb1{bottom:417.673255pt;}
.y53{bottom:421.166589pt;}
.y25{bottom:423.673255pt;}
.y81{bottom:431.673255pt;}
.yb0{bottom:432.753255pt;}
.y24{bottom:441.673255pt;}
.y1a{bottom:446.673255pt;}
.y7f{bottom:449.673255pt;}
.y80{bottom:455.481177pt;}
.yaf{bottom:457.753255pt;}
.ydf{bottom:459.673255pt;}
.y52{bottom:461.673255pt;}
.y19{bottom:464.673255pt;}
.y7e{bottom:467.673255pt;}
.yde{bottom:477.673255pt;}
.y51{bottom:479.673255pt;}
.y18{bottom:482.673255pt;}
.yae{bottom:482.753255pt;}
.y7d{bottom:485.339921pt;}
.y50{bottom:497.673255pt;}
.y17{bottom:500.673255pt;}
.yab{bottom:507.753255pt;}
.ydd{bottom:508.673255pt;}
.y4f{bottom:515.673255pt;}
.y7c{bottom:518.819923pt;}
.yad{bottom:525.753255pt;}
.ydc{bottom:526.673255pt;}
.y16{bottom:531.673255pt;}
.y4e{bottom:533.673255pt;}
.yff{bottom:536.673906pt;}
.ydb{bottom:544.673255pt;}
.y15{bottom:549.673255pt;}
.yaa{bottom:550.753255pt;}
.y4d{bottom:551.673255pt;}
.yfe{bottom:554.673906pt;}
.ya9{bottom:555.753255pt;}
.yda{bottom:562.673255pt;}
.y7b{bottom:566.673255pt;}
.y14{bottom:567.673255pt;}
.y4c{bottom:569.673255pt;}
.yfd{bottom:572.673906pt;}
.yd9{bottom:580.673255pt;}
.y7a{bottom:584.673255pt;}
.y13{bottom:585.673255pt;}
.y4b{bottom:587.673255pt;}
.yfc{bottom:590.673906pt;}
.yd8{bottom:598.673255pt;}
.y79{bottom:602.673255pt;}
.y12{bottom:603.673255pt;}
.y4a{bottom:605.673255pt;}
.yfb{bottom:608.673906pt;}
.yd7{bottom:616.673255pt;}
.y78{bottom:620.673255pt;}
.y11{bottom:621.673255pt;}
.y49{bottom:623.673255pt;}
.yfa{bottom:626.673906pt;}
.yd6{bottom:634.673255pt;}
.ya8{bottom:635.753255pt;}
.y77{bottom:638.673255pt;}
.y10{bottom:639.673255pt;}
.y48{bottom:641.673255pt;}
.yf9{bottom:644.673906pt;}
.yd5{bottom:652.673255pt;}
.y76{bottom:656.673255pt;}
.yf{bottom:657.673255pt;}
.yf8{bottom:662.673906pt;}
.yd4{bottom:670.673255pt;}
.y47{bottom:672.673255pt;}
.y75{bottom:674.673255pt;}
.ye{bottom:675.339921pt;}
.yf7{bottom:680.673906pt;}
.ya6{bottom:683.753255pt;}
.yd3{bottom:688.673255pt;}
.y46{bottom:690.673255pt;}
.y74{bottom:692.673255pt;}
.yf6{bottom:698.673906pt;}
.yd2{bottom:706.673255pt;}
.y45{bottom:708.673255pt;}
.yd{bottom:708.819921pt;}
.y73{bottom:710.673255pt;}
.ya7{bottom:715.753255pt;}
.yf5{bottom:716.673906pt;}
.yd1{bottom:724.673255pt;}
.y44{bottom:726.673255pt;}
.y72{bottom:728.673255pt;}
.yf4{bottom:734.673906pt;}
.ya4{bottom:740.753255pt;}
.yd0{bottom:742.673255pt;}
.y43{bottom:744.673255pt;}
.y71{bottom:746.673255pt;}
.yf3{bottom:752.673906pt;}
.ycf{bottom:760.673255pt;}
.y41{bottom:762.673255pt;}
.yc{bottom:767.673255pt;}
.y42{bottom:768.481177pt;}
.yf2{bottom:770.673906pt;}
.ya5{bottom:772.753255pt;}
.yce{bottom:778.673255pt;}
.y70{bottom:778.833255pt;}
.y40{bottom:780.673255pt;}
.yf1{bottom:788.673906pt;}
.yb{bottom:793.673276pt;}
.ycd{bottom:796.673255pt;}
.ya2{bottom:797.753255pt;}
.y3f{bottom:798.673255pt;}
.yf0{bottom:806.007240pt;}
.y6f{bottom:813.673255pt;}
.ya{bottom:813.673276pt;}
.ya3{bottom:813.753255pt;}
.ycc{bottom:814.673255pt;}
.y3e{bottom:816.673255pt;}
.y6e{bottom:831.673255pt;}
.ycb{bottom:832.339921pt;}
.ya0{bottom:838.753255pt;}
.y9{bottom:839.673276pt;}
.yef{bottom:846.153255pt;}
.y3d{bottom:848.833255pt;}
.y6d{bottom:849.673255pt;}
.ya1{bottom:854.753255pt;}
.y8{bottom:865.673276pt;}
.yca{bottom:865.819920pt;}
.y6c{bottom:867.673255pt;}
.y3c{bottom:871.499921pt;}
.y9e{bottom:879.753255pt;}
.y6b{bottom:885.673255pt;}
.y7{bottom:900.729276pt;}
.y3b{bottom:911.673255pt;}
.y9f{bottom:911.753255pt;}
.y6{bottom:916.393276pt;}
.y6a{bottom:916.673255pt;}
.y39{bottom:929.673255pt;}
.y69{bottom:934.673255pt;}
.y3a{bottom:935.481177pt;}
.y9b{bottom:936.753255pt;}
.y5{bottom:944.729276pt;}
.y38{bottom:947.673255pt;}
.y68{bottom:952.673255pt;}
.y9d{bottom:952.753255pt;}
.y37{bottom:965.673255pt;}
.y4{bottom:968.393276pt;}
.y67{bottom:970.673255pt;}
.y96{bottom:977.753255pt;}
.y36{bottom:983.673255pt;}
.yc9{bottom:988.673255pt;}
.y3{bottom:990.393286pt;}
.y35{bottom:1001.673255pt;}
.yc8{bottom:1006.673255pt;}
.y9a{bottom:1009.753255pt;}
.y2{bottom:1012.393286pt;}
.y34{bottom:1019.673255pt;}
.yc7{bottom:1024.673255pt;}
.y93{bottom:1034.753255pt;}
.y33{bottom:1037.673255pt;}
.y1{bottom:1039.033281pt;}
.y91{bottom:1039.753255pt;}
.y32{bottom:1055.673255pt;}
.hf{height:24.000000pt;}
.hc{height:27.515625pt;}
.ha{height:30.267188pt;}
.h3{height:33.018750pt;}
.h10{height:34.000000pt;}
.h11{height:34.945313pt;}
.h13{height:40.000000pt;}
.h14{height:42.000000pt;}
.h8{height:42.710938pt;}
.hd{height:45.859374pt;}
.h5{height:50.445314pt;}
.h7{height:53.343750pt;}
.h9{height:53.343913pt;}
.he{height:53.498875pt;}
.h15{height:53.498876pt;}
.h4{height:55.031250pt;}
.h12{height:56.000000pt;}
.h2{height:58.362748pt;}
.hb{height:64.203123pt;}
.h6{height:91.718748pt;}
.h1{height:110.062500pt;}
.h0{height:1122.666667pt;}
.w3{width:93.000000pt;}
.w2{width:555.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.000000pt;}
.x3{left:75.835826pt;}
.x2{left:98.054049pt;}
.xc{left:99.590556pt;}
.x12{left:104.590556pt;}
.x1{left:109.045710pt;}
.xd{left:123.590556pt;}
.x9{left:126.100220pt;}
.x5{left:160.756823pt;}
.x11{left:188.647430pt;}
.xe{left:191.495667pt;}
.x7{left:310.616206pt;}
.x6{left:316.682429pt;}
.x4{left:359.495097pt;}
.xa{left:368.500285pt;}
.xb{left:562.208130pt;}
.xf{left:632.590576pt;}
.x8{left:709.959147pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
